@font-face {
  font-family: 'Gotham-Medium';
  src: url('/assets/Gotham-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Book';
  src: url('/assets/Gotham-Book.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Black';
  src: url('/assets/Gotham-Black.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}



:root{
  --nav-h: 72px;
  --brand: #18c7c3;
  --text: #5E6A73;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --Darks-100: #C6D0D2;
  --Darks-300: #5C6C70;
  --Darks-400: #2E3638;
  --navy: #112556;
  --black: #000000;
  --secondary: #0BB4C0;
  --terciary: #027B8D;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.teaser-container{
  width: 100%;;
  min-height: 100svh;  
  height: 100dvh;       
  display: flex;
  flex-direction: column;
  align-items: center;  
  justify-content: center;
  background: url('/assets/desk-background-teaser') center center no-repeat;
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
  
  h1 {
    font-family: 'Gotham-Black';
    color: #0BB4C0;
    font-size: 56px;
    margin-bottom: 24px;
    
    }
    h2 {
        font-size: 32px;
        font-family: 'Gotham-Medium';
    }
    .teaser-top {
        position: absolute;
        top: 80px;                 /* separada un poco del borde superior */
        left: 50%;
        transform: translateX(-50%); /* centrada horizontalmente */
        width: 260px;              /* ajusta según el diseño */
        height: auto;
}
    @media (max-width: 768px) {
        background: url("/assets/mobile-background-teaser") center center no-repeat;
        background-size: cover;
        h1 {
        font-size: 40px;    
        }
        h2 {
            font-size: 24px;
        }
    }
}



@supports not (height: 100dvh) {
  .teaser-container { height: 100vh; }
}

.teaser-container > * { margin-top: 0; margin-bottom: 0; }

main {
    margin-top: var(--header-height);
}

.card {
    background: transparent!important;
}

.anchor{
    display: block;
    position: relative;
    top: calc(var(--header-height)*-1);
    visibility: hidden;
}

.footer-a:hover {
    color: #045D1B;
}

.burger-menu-absolute {
    top: 17px;
    right: 20px;
}

.rights-reserved::after {
    content: '®';
    font-size: 60%;
    position: relative;
    top: -0.75em;
    left: -0.1em;
}

.dropdown-item-text {
    font-size:14pt;
    color: #FFFFFF;
}
.dropdown-item {
    font-size:14pt;
}
.dropdown-item:hover {
    color: #FFFFFF
}


.btn-404 {
    font-size: 16px;
    width: fit-content;
    white-space: nowrap;
    max-width: 200px;
    font-weight: bolder;
    text-align: center;
    text-decoration: none;
    background-size: cover;
    border-radius: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-top: 3rem;
    border: 2px solid #0BB4C0;;
}

.btn-404:hover {
    background-color: rgba(255,255,255,0.4)!important;
}


a {
    background-color: transparent;
    color: white;
    font-family: 'Gotham-medium';
    margin-top: 10rem;
    padding: 5px 14px;
}