:root{
    /* colors */
    --white: #ffffff;
    --gray: #f6f6f2;
    --dark-gray: #bdc0b9;
    --orange: #ef9034;
    --dark-orange: #d67d21;
    --blue: #004b51;
    --dark-blue: #013445;
    --blue-lettering: #0c2630;
    --serif:'Cormorant Garamond', Georgia, serif;
    --sans:'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body{
    width: 100%;
    background-color: var(--white);
    margin: 0px !important;
}

h1{
    font-size: 45px;
    color: var(--blue-lettering);
    font-family:sans-serif;
    font-style: italic;
}

a{
    text-decoration: none;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.toast{
    z-index: 999999999999;
}

.w-100{
    width: 100%;
}

.w-90{
    width: 90%;
}

.w-80{
    width: 80%;
}

.w-75{
    width: 75%;
}

.w-70{
    width: 70%;
}

.w-60{
    width: 60%;
}

.w-50{
    width: 50%;
}

.w-40{
    width: 40%;
}

.w-30{
    width: 30%;
}

.w-25{
    width: 25%;
}

.w-20{
    width: 20%;
}

.d-flex{
    display: flex;
}

.f-column{
    flex-direction: column;
}

.f-row{
    flex-direction: row;
}

.center{
    justify-content: center;
    align-items: center;
}

.s-between{
    justify-content: space-between;
}

.container{
    width: 74%;
}

.btn{
    padding: 20px 40px;
    border: 1px solid var(--gray);
    border-radius: 40px;
    font-size: 21px;
    font-weight: 400;
    font-family: var(--sans);
    color: var(--gray);
}

.btn-primary{
    background-color: var(--orange);
    box-shadow: 0px 5px 20px #ef923485;
    border-color: var(--orange);
    transition: .3s all ease-in-out;
}

.btn-primary:hover{
    background-color: var(--dark-orange);
    box-shadow: unset;
    border-color: var(--dark-orange);
}

.btn-secondary{
    background-color: transparent;
}

.btn-secondary:hover{
    background-color: #e1e1e134;
}

/* Estado inicial (oculto y abajo) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Estado final cuando el JS le clava la clase 'in' */
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* nav */
nav{
    position: fixed;
    inset: 0 0 auto 0;
    padding: 10px 28px;
    z-index: 9999;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.nav-logo span{
    color: var(--white);
    font-size: 28px;
    font-weight: 300;
    margin-left: 15px;
}

.nav-img{
    width: 70px;
}

.nav-links a{
    color: var(--white);
    opacity: .9;
    font-size: 21px;
    font-family: var(--sans);
    margin: 0px 15px;
    font-weight: 600;
}

.nav-links a:hover{
    color: var(--white);
}

.nav-links .btn{
    padding: 10px 20px;
}

.fixed_nav{
    background-color: var(--gray);
    opacity: .98;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.473);
}

.fixed_nav span,
.fixed_nav a{
    color: var(--dark-blue);
}

.fixed_nav .btn{
    border-color: var(--dark-blue);
}

.fixed_nav .nav__burger span{
    background: var(--dark-blue);
}

.fixed_nav a:hover{
    color: var(--orange);
    text-shadow: 0px 0px 18px var(--orange);
}

.nav__burger{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:6px}
.nav__burger span{width:24px;height:2px;background:#fff;transition:.3s}
.nav.scrolled .nav__burger span{background:var(--teal-900)}
/* 
.nav__burger{
    display: none;
} */

/* inicio */
.inicio{
    background: #022e3d;
    background: linear-gradient(90deg,rgba(2, 46, 61, 1) 0%, rgba(16, 85, 110, 1) 92%);
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inicio-data{
    margin-top: 60px;
}

.inicio-data div a{
    margin-right: 40px;
}

.hero{
    font-size: 18px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 0px;
    margin-bottom: 22px;
    font-family: var(--sans);
}

.hero-title{
    font-size: 120px;
    color: var(--gray);
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.01em;
    margin-top: 0px;
    margin-bottom: 10px;
    font-style: normal;
}

.hero-title em{
    font-style: italic;
    color: var(--dark-gray);
}

.hero-text{
    color: var(--gray);
    font-size: 24px;
    font-weight: 200;
    font-family: var(--sans);
    max-width: 35%;
    line-height: 1.6;
    margin-bottom: 70px;
}

/* nosotros */
.nosotros{
    min-height: 100vh;
    background-color: var(--gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content .data-title{
    justify-content: end;
    align-items: start;
}

.content .data-title span{
    color: var(--blue);
    font-size: 18px;
    font-family: var(--sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .26em;
    
}

.content .data-title h2{
    color: var(--blue-lettering);
    font-family: var(--serif);
    font-size: 70px;
    font-weight: 600;
    margin: 0px 0px;
    margin-top: 40px;
}

.content .data-text {
    justify-content: end;
    align-items: start;
}

.content .data-text p{
    color: var(--blue);
    font-weight: 400;
    font-size: 21px;
    font-family: var(--sans);
    line-height: 1.6;
    margin: 0px;
    padding-top: 30px;
}

.content div{
    width: 45%;
}

.nosotros-data .line{
    height: 1px;
    width: 100%;
    background-color: #004c51b2;
    margin:60px 0px;
}

.numbers .stat{
    color: var(--dark-blue);
    font-size: 110px;
    font-family: var(--serif);
}

.numbers .stat-ico{
    color: var(--orange);
    font-size: 35px;
    margin-top: -10px;
}

.numbers div p{
    font-size: 22px;
    font-family: var(--sans);
    color: #004b51;
}

/* servicios */
.servicios{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--dark-blue);
}

.servicios-data .content{
    margin-top: 100px;
}

.servicios-data .content span{
    color: var(--orange);
    text-transform: uppercase;
    font-size: 22px;
    font-family: var(--sans);
    letter-spacing: .26em;
    font-weight: 400;
}

.servicios-data .content h2{
    font-family: var(--serif);
    font-size: 70px;
    color: var(--gray);
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px;
    margin-top: 25px;
}

.servicios-data .content p{
    font-size: 22px;
    color: var(--dark-gray);
    font-family: var(--sans);
    font-weight: 300;
    text-align: center;
}

.cards{
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0px;
}

.card{
    padding: 40px 35px;
    width: 26%;
    border: 1px solid var(--blue);
    border-radius: 30px;
    margin-bottom: 50px;
    background-color: #004c513d;
}

.card .card-number{
    color: var(--orange);
    font-family: var(--serif);
    font-size: 30px;
    margin-bottom: 40px;
}

.card .card-title{
    color: var(--gray);
    font-size: 30px;
}

.card .card-text{
    color: var(--dark-gray);
    font-size: 22px;
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
}

/* mision */

.mision{
    min-height: 100vh;
    background-color: var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mision-title span{
    font-family: var(--sans);
    font-size: 22px;
    color: var(--dark-blue);
    text-align: start;
    font-weight: 400;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.mision-title h2{
    font-family: var(--serif);
    font-size: 70px;
    color: var(--dark-blue);
    text-align: start;
    margin-top: 30px;
    font-family: var(--serif);
    font-weight: 600;
}

.points{
    flex-wrap: wrap;
    justify-content: space-between;
}

.point{
    width: 46%;
    border-top: 1px solid rgba(139, 139, 139, 0.579);
    padding: 40px 0px;
}

.point-title{
    font-size: 32px;
    color: var(--dark-blue);
}

.point-text{
    font-family: var(--sans);
    color: #46606a;
    font-size: 22px;
}

/* contacto */

.contacto{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0C2630;
    background: linear-gradient(1deg,rgba(12, 38, 48, 1) 0%, rgba(1, 52, 69, 1) 92%)
}

.contacto-data{
    margin-top: 30px;
}

.contacto-data .content{
    width: 55%;
}

.contacto-data .formulario{
    width: 45%;
}

.contacto-data .content span{
    letter-spacing: .26em;
    font-size: 22px;
    color: var(--orange);
    font-family: var(--sans);
    font-weight: 400;
    text-transform: uppercase;
}

.contacto-data .content h2{
    font-family: var(--serif);
    font-size: 70px;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: -5px;
    margin-top: 10px;
}

.contacto-data .content p{
    font-size: 20px;
    color: var(--dark-gray);
    font-family: var(--sans);
    width: 70%;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 40px;
}

.contacto-data .content div{
    padding: 0px 0px;
    padding-left: 20px;
    border-left: 4px solid var(--orange);
    margin-bottom: 30px ;
}

.contacto-data .content div span{
    letter-spacing: .2em;
    font-size: 19px;
    color: rgba(255, 255, 255, 0.494);
    font-family: var(--sans);
    font-weight: 400;
    margin-bottom: 10px;
}

.contacto-data .content div a{
    font-size: 24px;
    color: var(--white);
    font-family: var(--sans);
    font-weight: 500;
    transition: .2s all ease-in-out;
}

.contacto-data .content div a:hover{
    font-size: 24px;
    color: var(--orange);
    font-family: var(--sans);
    font-weight: 500;
}

.formulario form{
    background-color: var(--gray);
    padding: 60px 50px;
    border-radius: 30px;
}

.formulario form .input{
    margin-bottom:10px;
}

.formulario form .input label{
    color: var(--dark-blue);
    font-size: 18px;
    font-family: var(--sans);
    margin-bottom: 10px;
    font-weight: 600;
}


.formulario form .input label span{
    color: var(--dark-gray);
    font-size: 18px;
    font-family: var(--sans);
    margin-bottom: 10px;
    font-weight: 600;
}

.formulario form .input input{
    color: var(--blue-lettering);
    font-size: 18px;
    padding: 6px 20px;
    font-family: var(--sans);
    height: 50px;
    border-radius: 10px;
    border: 1.5px solid #dfe2dc;
    transition: .3s all ease-in-out;
}

.formulario form .input input:focus,
.formulario form .input textarea:focus{
    outline: none; 
    border-color: var(--orange) !important;
    box-shadow: 0 0 8px var(--dark-orange);
}

.formulario form .input textarea{
    color: var(--blue-lettering);
    font-size: 18px;
    padding: 6px 20px;
    font-family: var(--sans);
    min-height: 90px;
    border-radius: 10px;
    border: 1.5px solid #dfe2dc;
    transition: .3s all ease-in-out;
    max-height: 400px;
}

.formulario form button{
    margin-top: 10px;
    background-color: var(--orange);
    font-size: 22px;
    padding: 15px 20px;
    font-family: var(--sans);
    border-radius: 50px;
    border: 1.5px solid #dfe2dc;
    color: var(--gray);
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.formulario form button:hover{
    background-color: var(--dark-orange);
    box-shadow: 0px 0px 10px var(--orange);
    border-color: var(--orange);
}

/* footer */

footer{
    background-color: #011d27;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer img{
    height: 150px;
    width: auto;
    filter:  brightness(0) invert(1);
    opacity: .92;
    margin-bottom: 20px;
}

.footer div{
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
}

.footer div a{
    color: var(--white);
    font-family: var(--sans);
    font-size: 20px;
    padding: 0px 10px;
    transition: .3s all ease-in-out;
}

.footer div a:hover{
    color: var(--orange);
}

.footer span{
    font-family: var(--sans);
    opacity: .90;
    font-size: 18px;
    color: var(--dark-gray);
    text-align: center;
}

@media (max-width: 2100px){
    .hero-title{
        font-size: 100px;
    }
    .hero-text{
        margin-bottom: 40px;
    }
}

@media (max-width: 2000px){
    .hero-title{
        font-size: 90px;
    }
}

@media (max-width: 1900px){
    .hero-text{
        font-size: 22px;
    }

    h2{
        font-size: 60px !important;
    }
}

@media (max-width: 1750px){
    .hero-title{
        font-size: 80px;
    }
    .hero-text{
        font-size: 20px;
    }

    .content .data-text p{
        font-size: 19px;
    }

    .span-title{
        font-size: 16px !important;
    }

    h2{
        font-size: 50px !important;
    }

    .stat{
        font-size: 95px !important;
    }

    .numbers div p{
        font-size: 20px;
    }

    .card-title{
        font-size: 26px !important;
    }

    .card-text{
        font-size: 18px !important;
    }

    label{
        font-size: 15px !important;
    }

    input{
        padding: 0px 20px;
        font-size: 16px;
        height: 35px !important;
    }

    .contacto-data .content div a{
        font-size: 20px;
    }

    .contacto-data .content div span{
        font-size: 14px;
    }

    .contacto{
        padding: 70px 0;
    }

    .point{
        padding: 30px 0px;
    }

    .point-title{
        font-size: 28px;
    }

    .point-text{
        font-size: 18px;
    }

    .contacto-data .content p{
        font-size: 18px;
    }

    .footer img{
        height: 130px;
    }

    .footer div a{
        font-size: 16px;
    }

    .footer span{
        font-size: 12px;
    }
}

@media (max-width: 1600px){
    .hero{
        font-size: 17px;
    }

    .hero-text{
        font-size: 18px;
    }

    .btn{
        font-size: 15px;
    }

    .hero-title{
        font-size: 65px;
    }

    .line{
        margin: 30px 0px;
    }

    .stat{
        font-size: 60px !important;
    }

    .stat-ico{
        font-size: 30px;
    }

    .numbers div p{
        font-size: 15px;
    }

    .nosotros{
        padding: 30px 0px;
    }

    .nav-links a{
        font-size: 19px;
    }
}

@media (max-width: 1400px) {
    .content .data-text p{
        font-size: 17px;
    }

    h2{
        font-size: 40px !important;
    }

    .contacto-data .content div a{
        font-size: 18px;
    }
}

@media (max-width: 1200px){
    .hero-text{
        margin-bottom: 20px;
        max-width: 60%;
    }

    .nav-links a{
        font-size: 16px;
    }

    .nav-logo span{
        font-size: 25px;
    }

    .nav-img{
        width: 60px;
    }

    .card{
        width: 36%;
    }

    .servicios-data .content p{
        font-size: 18px;
    }

    .hero{
        font-size: 15px;
    }
}

@media (max-width: 1000px){
    .content .data-text p{
        font-size: 16px;
        line-height: 1.4;
    }

    .stat-ico{
        font-size: 24px !important;
    }
}

@media (max-width: 931px){
    .container{
        width: 85%;
    }

    .nav-links a{
        font-size: 14px !important;
    }

    .nosotros-data .content{
        flex-direction: column !important;
    }

    .nosotros-data .content div{
        width: 100%;
    }

    .data-title h2{
        margin-top: 10px !important;
    }

    .card{
        width: 100%;
    }

    .card-number{
        margin-bottom: 20px !important;
    }

    .point-title{
        font-size: 26px;
    }

    .point-text{
        font-size: 16px;
    }

    .formulario form{
        padding: 40px 25px;
    }

    .nav-links{
        display: flex;
        position:fixed;
        inset:0 0 0 auto;
        width:min(80vw,280px);
        flex-direction:column;
        justify-content:center;
        gap:28px;
        /* padding:40px; */
        transform:translateX(100%);
        transition:transform .45s var(--ease);
        box-shadow:-20px 0 60px rgba(0,0,0,.4);
    }
    .nav-links.open{transform:none}
    .nav-links a{
        color:#fff !important;
        font-size:1.1rem;
        text-align: center !important;
    }
    .nav-links{
        background-color: var(--dark-blue) !important;
    }
    .fixed_nav .btn{
        border-color: var(--white);
    }
    .nav__burger{display:flex;z-index:60}
    .nav__burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);background:#fff}
    .nav__burger.open span:nth-child(2){opacity:0}
    .nav__burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);background:#fff}
}

@media (max-width: 850px){
    .contacto-data{
        flex-direction: column !important;
    }

    .formulario{
        width: 100% !important;
        margin-top: 40px;
    }

    .contacto-data .content{
        width: 100%;
    }

    .card{
        padding: 20px 30px;
        margin-bottom: 30px;
    }

    .point{
        width: 100%;
    }

    .mision{
        padding: 80px 0px;
    }

    .card-title{
        font-size: 22px !important;
    }

    .card-text{
        font-size: 16px !important;
    }

    .formulario form button{
        font-size: 18px !important;
    }

}

@media (max-width: 800px){
    .hero-text{
        font-size: 17px;
    }
}

@media (max-width: 700px){
    .numbers{
        flex-direction: column !important;
    }

    .nosotros{
        padding: 90px 0px;
    }
}

@media (max-width: 530px){
    .inicio-data div{
        flex-direction: column !important;
    }

    .hero-title{
        font-size: 50px;
    }
    
    .inicio-data div a{
        text-align: center;
        margin-bottom: 30px;
    }

    .inicio{
        padding: 40px 0px;
    }

    .hero-text{
        max-width: 80% !important;
    }

    
    .inicio-data div a {
        margin-right: 0px;
    }

    .content div{
        width: 100%;
    }

}

@media (max-width: 450px){
    .hero{
        font-size: 14px !important;
    }

    .hero-title{
        font-size: 45px !important;
    }

    h2{
        font-size: 32px !important;
    }
    
    .span-title{
        font-size: 14px !important;
    }

    .contacto-data .content p{
        font-size: 17px ;
        width: 100%;
    }

    .contacto-data .content div a{
        font-size: 17px !important;
    }

    .contacto-data .content div span{
        font-size: 12px !important;
    }

    .footer div{
        flex-direction: column !important;
    }

    .footer div a{
        text-align: center;
        margin-bottom: 10px;
    }

    .nav-logo span{
       font-size: 22px !important;
    }

    nav{
        padding: 10px 12px;
    }
}

@media (max-width: 340px){
    .contacto-data .content div a{
        font-size: 15px !important;
    }

    .contacto-data .content div{
        padding-left: 12px !important;
    }

    .container{
        width: 90% !important;
    }

    .hero-text{
        width: 100% !important;
    }

    input{
        height: 25px !important;
        font-size: 15px !important;
    }

    textarea{
        font-size: 15px !important;
    }

    .nav-logo span{
       font-size: 20px !important;
    }

    .nav-logo span{
        margin-left: 8px !important;
    }
}