*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    list-style:none;
}
body{
    font-family:"Poppins",sans-serif;
    background:#192335;
    color:white;
    overflow-x:hidden;
}
h1,h2,h3,h4{
    font-weight:600;
}
header{
    position:sticky;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 50px;
    background:rgba(24,35,133,.85);
    backdrop-filter:blur(15px);
    border-bottom:1px solid rgba(255,255,255,.15);
    z-index:1000;
}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
}
.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
    border:2px solid white;
    transition:.4s;
}
.logo img:hover{
    transform:rotate(10deg) scale(1.1);
}
.logo h1{
    font-size:24px;
    color:white;
}
.logo span{
    color:#b6d8ff;
    font-size:13px;
}
nav{
    display:flex;
    gap:15px;
}
nav a{
    display:flex;
    align-items:center;
    gap:8px;
    color:white;
    text-decoration:none;
    padding:12px 18px;
    border-radius:10px;
    transition:.3s;
}
nav a:hover{
    background:#3b82f6;
    transform:translateY(-3px);
}
nav i{
    font-size:16px;
}
nav a:hover{
    background:#3b82f6;
    color:white;
    transform:translateY(-3px);
}
.titulo{
    color:white;
    font-size:42px;
    text-align:center;
    margin:40px 0;
}
.cabeza{
    padding:70px 20px 40px;
    text-align:center;
}
.titulo{
    font-size:48px;
    color:white;
    margin:0;
    font-weight:700;
    text-shadow:0 5px 20px rgba(0,0,0,.4);
}
.separacion{
    height:40px;
}
.contenido{
    width:100%;
    font-size:16px;
    color:white;
    padding:60px 0;
    background-color:rgba(13,29,49,.9);
}
.fila{
    display:flex;
    align-items:center;
    gap:50px;
    max-width:1100px;
    padding:0 20px;
    margin:auto;
}
.parrafo,
.parrafo1{
    width:100%;
    color:white;
    font-size:20px;
    text-align:justify;
    line-height:1.8;
    padding:25px;
}
.imagen1{
    width:30%;
    text-align:center;
}
.imagen1 img{
    width:250px;
    max-width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.5);
}
.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:40px;
}
.card{
    width:320px;
    padding:30px;
    text-align:center;
    background:#0d1d31;
    color:white;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}
.card:hover{
    transform:translateY(-10px);
}
.card i{
    font-size:45px;
    color:#00c3ff;
    margin-bottom:20px;
}
.card h3{
    margin-bottom:15px;
}
.funciona{
    padding:50px 20px;
}
.pasos{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}
.paso{
    background:#0d1d31;
    color:white;
    width:250px;
    padding:30px;
    text-align:center;
    border-radius:20px;
}
.numero{
    width:45px;
    height:45px;
    background:#182389;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:22px;
}


.paso i{
    font-size:40px;
    color:#00c3ff;
    margin:20px;
}


.menu a:hover,
.menu .activo{

    background:#3b82f6;
    transform:translateY(-3px);

}


.estadisticas{
    padding:50px 20px;
}


.contenedor-estadisticas{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}


.estadistica{
    background:#0d1d31;
    width:250px;
    color:white;
    padding:30px;
    text-align:center;
    border-radius:20px;
}


.estadistica i{
    color:#00c3ff;
    font-size:40px;
}


.estadistica h3{
    font-size:35px;
    margin:15px;
}


/* BENEFICIOS */


.beneficios{
    padding:50px;
}


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


.beneficio{
    display:flex;
    gap:20px;
    align-items:center;
    background:#0d1d31;
    color:white;
    padding:25px;
    margin:20px;
    border-radius:15px;
}


.beneficio i{
    color:#00c3ff;
    font-size:35px;
}


/* CONCLUSION */


.conclusion{
    color:white;
    text-align:center;
    padding:60px 20px;
    max-width:1000px;
    margin:auto;
}


.conclusion p{
    font-size:20px;
    line-height:1.8;
}


/* FOOTER */
.footer{
    background:#030912;
    padding:70px 0 30px;
    margin-top:80px;
}

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

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

.footer-links{
    flex:1;
    min-width:220px;
}

.footer-links h4{
    color:white;
    font-size:22px;
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:3px solid #3b82f6;
    display:inline-block;
}

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

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

.footer-links ul li a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#4da6ff;
    padding-left:8px;
}

.social-link{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-link a{
    width:45px;
    height:45px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#1b2b47;

    color:white;

    font-size:18px;

    transition:.3s;
}

.social-link a:hover{
    background:#3b82f6;
    transform:translateY(-5px);
}

.footer-copy{
    text-align:center;
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#bfc9d8;
    font-size:15px;
}
/* ESTRELLAS */
.estrellas{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    pointer-events:none;
    z-index:-1;
}
.estrella{
    position:absolute;
    background:white;
    border-radius:50%;
    box-shadow:0 0 10px white;
    opacity:.9;
    animation:caer linear infinite;
}
@keyframes caer{
    0%{
        transform:translateY(-120px);
        opacity:0;
    }
    
    10%{
        opacity:1;
    }
    90%{
        opacity:1;
    }
    100%{
        transform:translateY(calc(100vh + 200px));
        opacity:0;
    }
}



@media(max-width:800px){

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


    nav a{
        margin:10px;
    }


    .fila{
        flex-direction:column;
    }


    .imagen1{
        width:100%;
    }


    .titulo{
        font-size:32px;
    }


    .beneficio{
        flex-direction:column;
        text-align:center;
    }

}
/* HERO */

.hero{
    max-width:1200px;
    margin:0 auto;
    padding:90px 30px 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;

    min-height:85vh;
}

.hero-texto{
    flex:1;
}

.hero-texto h1{
    font-size:58px;
    color:white;
    margin-bottom:20px;
}

.hero-texto p{
    font-size:21px;
    color:#d9d9d9;
    line-height:1.8;
    margin-bottom:35px;
}

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

.hero-imagen{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-imagen img{
    width:420px;
    max-width:100%;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.45);
}
