/* =========================
   RESET
========================= */

*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}



/* =========================
   ROOT VARIABLES
========================= */

:root{
    --header-shrink: 0.9;

    --site-max-width:1300px;

    --bg-color:#ffffff;
    --bg-gradient:linear-gradient(135deg,#100794,#0e001b);

    --color-text:#444444;
    --color-muted:#6e6e6e;

    --color-primary:#170da0;
    --color-secondary:#2a0061;

    --color-highlight:#18ddd3;

    --color-border:#acacac;

    --font-main: "Nunito Sans", sans-serif;

    --block-space:100px;
}

/* =========================
   BASE
========================= */

body{
    font-family: var(--font-main);
    background: #000;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before{
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -1;

    background:
        radial-gradient(
            1200px 800px at 10% 10%,
            #01423a 0%,
            #000000 70%
        );

    animation: bgMove 12s ease-in-out infinite alternate;
}

@keyframes bgMove{
    0%{
        transform: scale(1) translate(0,0);
        filter: brightness(1);
    }

    50%{
        transform: scale(1.15) translate(5%, -3%);
        filter: brightness(1.15);
    }

    100%{
        transform: scale(1.05) translate(-5%, 5%);
        filter: brightness(0.95);
    }
}

body::after{
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -1;

    background:
        radial-gradient(
            700px 700px at 80% 70%,
            rgba(0,255,180,.08),
            transparent 70%
        );

    animation: glowMove 18s ease-in-out infinite alternate;
}

@keyframes glowMove{
    0%{
        transform: translate(0,0);
    }

    100%{
        transform: translate(-10%, -8%);
    }
}


/* Width container (no vertical spacing here) */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0;
  max-height: 100%;
  z-index: 1;
}

.hero {
  position: relative;
  margin-top: -125px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 25px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.minhero { 
      position: relative;
  margin-top: -125px;
  background-image: url('../../assets/images/daa.jpeg');
    height: 12vh;
      display: flex;
      width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.casaverde {
    width: 100%;
    max-width: 400px;
    z-index: 5;
    padding: 20px;
    border-radius: 30px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #61636256;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.frozen {
    background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 25%,
    rgba(0, 0, 0, 0) 40%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;

  transform: scale(1);
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* how much it zooms */
  }
}

.block{
    margin-bottom:var(--block-space);
}

.row{
  display:flex;
  flex-direction:row;
  max-height: 100%;
}

@media screen and (min-width: 599px) {
  .row {
    width: 100%;
  }

}



/* Mobile: < 600px */


.col{
  width: 100%;
  max-height: 100%;
  display:flex;
  flex-direction:column;
}

#consentY {
  max-width: 50px;
  background-color: transparent;
}

#profilingNewsletter {
   max-width: 50px;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap!important;
}

.left{ 
  justify-content:flex-start;
}
.center{ justify-content:center; }
.right{ justify-content:flex-end; }
.between{ justify-content:space-between; }
.around{ justify-content:space-around; }

/* cross axis */

.top{ align-items:flex-start; }
.middle{ align-items:center; }
.bottom{ align-items:flex-end; }

.stickdown{ margin-top: 100%;}

.short {
  max-width: 200px!important;
}

.martop {
  margin-top: 20px!important;
}

.marbot {
  margin-bottom: 20px!important;
}

.section {
  margin-bottom: 100px;
}

.width {
  width:100%;
}

.padding { 
  padding: 20px;
}

.title{
  padding-top: 20px;
  padding-bottom: 20px;
}

.gap {
  gap:20px!important;
}

.sgap { 
  gap: 10px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1{
    font-size:2.5rem;
    margin: 0;
}

h2{
    font-size:2rem;
        margin: 0;
}

h3{
    font-size:1.5rem;
        margin: 0;
}

h4{
      font-size:1.1rem;
        margin: 0;
}

p{
        margin: 0;
}

a{
    text-decoration:none;
    margin: 0;
    color:inherit;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

a:hover{
    opacity: 0.80;
    transform: scale(0.97);
}

a.active {
  font-weight: 800;
}

/* =========================
   ICONS EMBLEM LOGO
========================= */

.minicons {
    height: 20px;
    margin-left: 15px;
    margin-bottom: -5px;
    transition: opacity .2s ease, transform .15s ease;
    cursor: pointer;
}

.icons {
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
    transition: opacity .2s ease, transform .15s ease;
        cursor: pointer;
}

.bigicons {
    height: 30px;
    margin-right: 10px;
    transition: opacity .2s ease, transform .15s ease;
        cursor: pointer;
}

#logo { 
    height: 35px;

}

.navlink { 
    margin-right: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

/* =========================
   FORMS
========================= */

input,
select,
textarea{
    font-family:inherit;
    font-size:14px;
    padding:10px;
    border: none;
    color: #fff;
    border-bottom: 1px solid var(--color-border);
    border-radius: 5px;
    height: 40px;
    width:100%;
    outline: none;
    background-color: transparent;
}

input::placeholder {
  color: #b1b1b1;
}

input[type=checkbox] {
   height: 15px;
   background: transparent;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#cccccc; /* neutral, not opinionated */
}

.search {
  color: #fff;
    padding-right: 15px;
    padding-left: 40px;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background-color: transparent;
    max-width: 300px;
}

.divider {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}


    /* BUTTON 7 */
.button7 {
  all: unset;
  width: 180px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button7::after,
.button7::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button7::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #014937;
  border-radius: 10px;
}

.button7::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button7:hover::before {
  transform: translate(5%, 20%);
  width: 100%;
  height: 110%;
}

.button7:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button7:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.gdpr-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.gdpr-modal.active{
    display: flex;
}

.gdpr-box{
    width: 100%;
    max-width: 420px;
    background: rgba(1, 66, 58, .96);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    padding: 28px 24px;
    color: #fff;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}

.gdpr-box h2{
    font-size: 22px;
    margin-bottom: 18px;
}

.gdpr-box p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: rgba(255,255,255,.88);
}

.gdpr-close{
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.gdpr-box .button7{
    width: 100%;
    margin-top: 18px;
}

.header { 
    padding: 10px;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
        border: 1px solid #61636256;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.mobile-menu{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all .35s ease;
}

.mobile-menu.active{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-content{
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #fff;
}

.menu-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #61636256;
}

.menu-top p{
    font-size: 18px;
    margin: 0;
}

#closeMenu{
    background: transparent;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.menu-item{
    padding: 20px 0;
    border-bottom: 1px solid #61636256;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.contact-dropdown{
    display: none;
    padding: 18px 0;
    border-bottom: 1px solid #61636256;
}

.contact-dropdown.active{
    display: block;
}

.contact-dropdown input{
    width: 100%;
    margin-bottom: 14px;
}

.contact-dropdown .button7{
    width: 100%;
}

.logout-link{
    color: #ff7b7b;
}

.menu-message{
    font-size: 13px;
    color: #8fffc1;
    margin-top: 10px;
}

.main { 
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 30px;
}

.badge-green {
    color: #32d74b;
}

.badge-green::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #32d74b;;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px #32d74b;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 20px;
}

.menu-icon-wrap{
    position: relative;
}

.badge-count{
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff2d2d;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}