/*====================================
RESET
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Poppins",sans-serif;
    font-weight:500;
    background:#192335;
    color:white;
    overflow-x:hidden;
    line-height:1.8;
}

h1,h2,h3{
    font-weight:600;
}


/*====================================
HEADER
====================================*/

.header{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:rgba(24,35,133,.92);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.15);
}


.logo{
    display:flex;
    align-items:center;
    gap:15px;
}


.logo img{
    width:65px;
    height:65px;
    border-radius:50%;
    border:2px solid white;
    transition:.3s;
}


.logo img:hover{
    transform:scale(1.08) rotate(5deg);
}


.logo-texto h1{
    font-size:28px;
}


.logo-texto span{
    font-size:14px;
    color:#dbeafe;
}


.menu{
    display:flex;
    gap:15px;
}


.menu a{
    color:white;
    text-decoration:none;
    padding:10px 18px;
    border-radius:12px;
    transition:.3s;
    font-size:16px;
}


.menu a:hover,
.menu .activo{
    background:#3b82f6;
    transform:translateY(-3px);
}


/*====================================
ESTRELLAS
====================================*/

.estrellas{
    position:fixed;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:-1;
}


.estrella{
    position:absolute;
    background:white;
    border-radius:50%;
    box-shadow:0 0 10px white;
    animation:caer linear infinite;
}


@keyframes caer{

    0%{
        transform:translateY(-120px);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    90%{
        opacity:1;
    }

    100%{
        transform:translateY(100vh);
        opacity:0;
    }
}


/*====================================
HERO
====================================*/

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    padding:80px 10%;
}


.hero-texto{
    max-width:600px;
}


.hero-texto h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
}


.hero-texto p{
    font-size:19px;
    color:#e5e7eb;
    text-align:justify;
}


.hero-imagen img{
    width:400px;
    border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.4);
}


/*====================================
BOTONES
====================================*/

.hero-botones{
    margin-top:35px;
    display:flex;
    gap:20px;
}


.btn{
    padding:13px 25px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    transition:.3s;
}


.btn-principal{
    background:#3b82f6;
}


.btn-secundario{
    border:2px solid #3b82f6;
}


.btn:hover{
    transform:translateY(-5px);
}


/*====================================
CONTENIDO
====================================*/

.contenido{
    padding:80px 10%;
    background:rgba(13,29,49,.8);
}


.fila{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
}


.texto{
    flex:1;
}


.texto h2{
    font-size:35px;
    margin-bottom:20px;
}


.texto p{
    font-size:18px;
    color:#f1f5f9;
    text-align:justify;
}


.imagen img{
    width:380px;
    border-radius:20px;
}


/*====================================
CARDS
====================================*/

.cards{
    padding:80px 10%;
    display:flex;
    justify-content:center;
    gap:30px;
}


.card{
    background:#0d1d31;
    width:320px;
    padding:35px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    transition:.3s;
}


.card:hover{
    transform:translateY(-10px);
}


.card i{
    font-size:40px;
    color:#3b82f6;
    margin-bottom:20px;
}


.card h3{
    font-size:25px;
    margin-bottom:15px;
}


.card p{
    color:#ddd;
}


/*====================================
BENEFICIOS
====================================*/

.beneficios{
    padding:80px 10%;
    background:#0d1d31;
}


.titulo{
    text-align:center;
    font-size:40px;
    margin-bottom:40px;
}


.lista-beneficios{
    max-width:900px;
    margin:auto;
}


.beneficio{
    display:flex;
    align-items:center;
    gap:20px;
    padding:20px;
    margin-bottom:15px;
    background:#192335;
    border-radius:15px;
}


.beneficio i{
    color:#3b82f6;
    font-size:25px;
}


.beneficio p{
    font-size:18px;
}


/*====================================
CONCLUSION
====================================*/

.conclusion{
    text-align:center;
    padding:90px 15%;
}


.conclusion h2{
    font-size:38px;
    margin-bottom:20px;
}


.conclusion p{
    font-size:19px;
    color:#e5e7eb;
}


/*====================================
FOOTER
====================================*/

.footer{
    background:#030912;
    padding:60px 0;
}


.contenedor{
    width:90%;
    max-width:1200px;
    margin:auto;
}


.footer-row{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}


.footer-links{
    width:250px;
}


.footer-links h4{
    margin-bottom:20px;
    border-bottom:2px solid #00c3ff;
    padding-bottom:10px;
}


.footer-links ul{
    list-style:none;
}


.footer-links li{
    margin-bottom:10px;
}


.footer-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}


.footer-links a:hover{
    color:#66d1ff;
    padding-left:5px;
}


.social-link{
    display:flex;
    gap:12px;
}


.social-link a{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0d1d31;
    border-radius:50%;
    color:white;
    transition:.3s;
}


.social-link a:hover{
    background:#3b82f6;
}


.footer-copy{
    text-align:center;
    margin-top:40px;
    color:#aaa;
}


/*====================================
RESPONSIVE
====================================*/

@media(max-width:900px){

    .header{
        flex-direction:column;
        gap:20px;
    }


    .menu{
        flex-wrap:wrap;
        justify-content:center;
    }


    .hero,
    .fila{
        flex-direction:column;
        text-align:center;
    }


    .hero-texto h1{
        font-size:35px;
    }


    .hero-imagen img,
    .imagen img{
        width:90%;
    }


    .cards{
        flex-direction:column;
        align-items:center;
    }


    .card{
        width:90%;
    }

}