/* ================================= */
/* CONFIGURACION GENERAL */
/* ================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#071029;
    color:#ffffff;
    overflow-x:hidden;
}

/* VARIABLES */

:root{

    --azul:#071029;

    --rosado:#ff4fa3;

    --dorado:#f7c948;

    --blanco:#ffffff;

    --gris:#b8c0d4;

}

/* ================================= */
/* HERO */
/* ================================= */

.hero{
    min-height:100vh;
    padding:80px 8% 60px;
    background:#071029;
    overflow:hidden;
}

.hero-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* ================================= */
/* TEXTO */
/* ================================= */

.hero-content{
    max-width:600px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,79,163,.15);
    border:1px solid rgba(255,79,163,.4);
    color:var(--rosado);
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 0 25px rgba(255,79,163,.25);

    animation:aparecerArriba .8s ease;
}

.hero h1{
    font-size:3.6rem;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
    color:var(--blanco);

    text-shadow:
    0 0 20px rgba(255,79,163,.15);

    animation:aparecerIzquierda 1s ease;
}

.hero p{
    color:var(--gris);
    font-size:1.15rem;
    line-height:1.9;
    margin-bottom:40px;

    animation:aparecerIzquierda 1.2s ease;
}

.hero-btn{
    display:inline-block;
    background:linear-gradient(
        135deg,
        var(--rosado),
        var(--dorado)
    );

    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;

    animation:aparecerIzquierda 1.4s ease;
}

.hero-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,79,163,.35);
}

/* ================================= */
/* IMAGEN */
/* ================================= */

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;

    animation:flotar 5s ease-in-out infinite;
}

.hero-pc{
    display:block;
    width:100%;
    max-width:800px;
    position:relative;
    z-index:2;
}

.hero-mobile{
    display:none;
}

/* ================================= */
/* GLOW */
/* ================================= */

.hero-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#ff4fa3;
    border-radius:50%;
    filter:blur(140px);
    opacity:.20;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:1;
}

/* ================================= */
/* STATS */
/* ================================= */

.hero-stats{
    width:100%;
    max-width:1200px;
    margin:70px auto 0;
}

.stat-item{
    transition:.3s ease;
}

.stat-item:hover{
    transform:translateY(-8px);
}

/* ================================= */
/* ANIMACIONES */
/* ================================= */

@keyframes aparecerIzquierda{
    from{
        opacity:0;
        transform:translateX(-40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes aparecerArriba{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes flotar{
    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ================================= */
/* TABLET */
/* ================================= */

@media(max-width:992px){

    .hero-grid{
        gap:40px;
    }

    .hero h1{
        font-size:3rem;
    }

    .hero-pc{
        max-width:550px;
    }

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:768px){

    .hero{
        padding:40px 5%;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
        margin:auto;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-pc{
        display:none;
    }

    .hero-mobile{
        display:block;
        width:100%;
        max-width:280px;
        margin:auto;
        position:relative;
        z-index:2;
    }

    .hero-image{
        margin-top:10px;
    }

    .hero-glow{
        width:220px;
        height:220px;
        filter:blur(70px);
    }

}

/* ================================= */
/* CELULARES PEQUEÑOS */
/* ================================= */

@media(max-width:480px){

    .hero h1{
        font-size:2rem;
    }

    .hero-badge{
        font-size:.85rem;
        padding:10px 18px;
    }

    .hero-btn{
        width:100%;
        max-width:280px;
    }

    .hero-mobile{
        max-width:240px;
    }

}

/* ================================= */
/* DIAGNOSTICO */
/* ================================= */

.diagnostico{

    padding:80px 8%;

    background:#08142d;

}

.section-title{

    text-align:center;

    max-width:800px;

    margin:auto;

    margin-bottom:60px;

}

.section-title span{

    color:var(--rosado);

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    font-size:3rem;

    margin:20px 0;

}

.section-title p{

    color:var(--gris);

}

.diagnostico-box{

    max-width:900px;

    margin:auto;

    background:#0d1733;

    padding:50px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.diagnostico-box label{

    background:#132042;

    padding:18px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.diagnostico-box label:hover{

    border:1px solid var(--rosado);

}

.diagnostico-box input{

    margin-right:10px;

}

.analizar-btn{

    grid-column:1/-1;

    margin-top:20px;

    background:linear-gradient(
    135deg,
    var(--rosado),
    var(--dorado)
    );

    border:none;

    color:white;

    padding:18px;

    border-radius:12px;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

}

/* ================================= */
/* CHECK CARDS */
/* ================================= */

.check-card{

    display:flex;

    align-items:center;

    gap:12px;

    background:#132042;

    padding:20px;

    border-radius:15px;

    cursor:pointer;

    transition:.3s;

    border:1px solid transparent;

}

.check-card:hover{

    border-color:var(--rosado);

    transform:translateY(-3px);

}

.check-card input{

    width:20px;

    height:20px;

    accent-color:var(--rosado);

}

.check-card span{

    font-size:1rem;

    font-weight:500;

}

/* ================================= */
/* RESULTADO */
/* ================================= */

.resultado{

    display:none;

    grid-column:1/-1;

    margin-top:30px;

    background:#132042;

    border-radius:20px;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);

}

.resultado h3{

    text-align:center;

    margin-bottom:25px;

    color:var(--dorado);

}

/* ================================= */
/* BARRA */
/* ================================= */

.barra{

    width:100%;

    height:18px;

    background:#071029;

    border-radius:50px;

    overflow:hidden;

    margin-bottom:15px;

}

.progreso{

    width:0%;

    height:100%;

    background:linear-gradient(
        90deg,
        var(--rosado),
        var(--dorado)
    );

    border-radius:50px;

    transition:1s;

}

#porcentaje{

    text-align:center;

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:25px;

    color:var(--blanco);

}

/* ================================= */
/* LISTAS */
/* ================================= */

#tienes,
#faltan,
#recomendacion{

    margin-top:25px;

}

#tienes h4{

    color:#4ade80;

    margin-bottom:10px;

}

#faltan h4{

    color:#ff6b6b;

    margin-bottom:10px;

}

#recomendacion h4{

    color:var(--dorado);

    margin-bottom:10px;

}

#tienes ul,
#faltan ul{

    list-style:none;

    padding-left:0;

}

#tienes li,
#faltan li{

    margin:8px 0;

    color:var(--gris);

}

/* ================================= */
/* BOTON SOLUCION */
/* ================================= */

.solucion-btn{

    display:inline-block;

    margin-top:30px;

    background:linear-gradient(
        135deg,
        var(--rosado),
        var(--dorado)
    );

    color:white;

    text-decoration:none;

    padding:15px 30px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;

}

.solucion-btn:hover{

    transform:translateY(-3px);

}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:768px){

    .hero h1{

        font-size:2.5rem;

    }

    .section-title h2{

        font-size:2rem;

    }

    .diagnostico-box{

        grid-template-columns:1fr;

        padding:30px;

    }

}

/* ================================= */
/* BENEFICIOS */
/* ================================= */

.beneficios{

    padding:80px 8%;

    background:#071029;

}

.beneficios-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.beneficio-card{

    background:#0d1733;

    padding:35px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.beneficio-card:hover{

    transform:translateY(-8px);

    border-color:var(--rosado);

}

.icono{

    font-size:3rem;

    margin-bottom:20px;

}

.beneficio-card h3{

    margin-bottom:15px;

}

.beneficio-card p{

    color:var(--gris);

    line-height:1.7;

}

@media(max-width:768px){

    .beneficios{

        padding:60px 5%;

    }

    .beneficios-grid{

        grid-template-columns:repeat(2,1fr);

        gap:15px;

    }

    .beneficio-card{

        padding:25px 15px;

    }

    .icono{

        font-size:2.2rem;

        margin-bottom:12px;

    }

    .beneficio-card h3{

        font-size:1rem;

        margin-bottom:10px;

    }

    .beneficio-card p{

        font-size:.85rem;

        line-height:1.5;

    }

}

@media(max-width:380px){

    .beneficios-grid{

        grid-template-columns:1fr;

    }

}

/* ================================= */
/* HERO STATS */
/* ================================= */

.hero-stats{

    width:100%;

    max-width:1200px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:rgba(13,23,51,.65);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    overflow:hidden;

}

.stat-item{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    padding:35px 25px;

    border-right:1px solid rgba(255,255,255,.08);

}

.stat-item:last-child{

    border-right:none;

}

.stat-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    background:rgba(255,79,163,.12);

    border:1px solid rgba(255,79,163,.25);

}

.stat-info h3{

    font-size:2.3rem;

    font-weight:800;

    color:var(--dorado);

    line-height:1;

    margin-bottom:8px;

}

.stat-info p{

    color:var(--blanco);

    font-size:.95rem;

    margin:0;

}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:900px){

    .hero-stats{

        grid-template-columns:repeat(2,1fr);

    }

    .stat-item{

        padding:25px 15px;

    }

    .stat-item:nth-child(2){

        border-right:none;

    }

}

@media(max-width:600px){

    .hero-stats{

        grid-template-columns:repeat(2,1fr);

        margin-top:40px;

        border-radius:18px;

    }

    .stat-item{

        flex-direction:column;

        text-align:center;

        gap:10px;

        padding:20px 10px;

        border-right:1px solid rgba(255,255,255,.08);

        border-bottom:1px solid rgba(255,255,255,.08);

    }

    .stat-item:nth-child(2),
    .stat-item:nth-child(4){

        border-right:none;

    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4){

        border-bottom:none;

    }

    .stat-icon{

        width:50px;

        height:50px;

        font-size:1.3rem;

    }

    .stat-info h3{

        font-size:1.4rem;

        margin-bottom:4px;

    }

    .stat-info p{

        font-size:.75rem;

        line-height:1.4;

    }

}

/* ================================= */
/* PROCESO */
/* ================================= */

.proceso{

    padding:80px 8%;

    background:#08142d;

}

.proceso-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.proceso-card{

    background:#0d1733;

    padding:40px 30px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.proceso-card:hover{

    transform:translateY(-8px);

    border-color:var(--rosado);

}

.numero{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--rosado),
        var(--dorado)
    );

    color:white;

    font-size:1.4rem;

    font-weight:800;

    margin-bottom:25px;

}

.proceso-card h3{

    margin-bottom:15px;

    font-size:1.4rem;

}

.proceso-card p{

    color:var(--gris);

    line-height:1.8;

}

@media(max-width:768px){

    .proceso-grid{

        grid-template-columns:1fr;

    }

}

/* ================================= */
/* PORTAFOLIO */
/* ================================= */

.portafolio{
    padding:80px 8%;
    background:#071029;
}

.portafolio .section-title{
    margin-bottom:60px;
}

.portafolio-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* ================================= */
/* CARD PROYECTO */
/* ================================= */

.proyecto{
    display:block;
    text-decoration:none;
    color:inherit;

    background:#0d1733;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

    position:relative;
}

.proyecto:hover{

    transform:translateY(-10px);

    border-color:var(--rosado);

    box-shadow:
    0 20px 40px rgba(0,0,0,.35),
    0 0 25px rgba(255,79,163,.15);
}

/* ================================= */
/* IMAGEN */
/* ================================= */

.proyecto img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;

    transition:.5s;
}

.proyecto:hover img{

    transform:scale(1.05);
}

/* ================================= */
/* INFO */
/* ================================= */

.proyecto-info{

    padding:22px;
}

.categoria{

    display:inline-block;

    padding:6px 12px;

    border-radius:30px;

    background:rgba(255,79,163,.12);

    border:1px solid rgba(255,79,163,.25);

    color:var(--rosado);

    font-size:.72rem;

    font-weight:600;

    margin-bottom:12px;
}

.proyecto-info h3{

    font-size:1.15rem;

    color:white;

    margin-bottom:10px;
}

.proyecto-info p{

    color:var(--gris);

    font-size:.9rem;

    line-height:1.6;

    margin-bottom:15px;
}

/* ================================= */
/* TAGS */
/* ================================= */

.proyecto-tags{

    display:flex;

    flex-wrap:wrap;

    gap:8px;
}

.proyecto-tags span{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:var(--gris);

    padding:6px 10px;

    border-radius:20px;

    font-size:.72rem;
}

/* ================================= */
/* EFECTO PREMIUM */
/* ================================= */

.proyecto::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.05),
        transparent
    );

    transition:.8s;
}

.proyecto:hover::after{

    left:100%;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media(max-width:900px){

    .portafolio-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:768px){

    .portafolio{

        padding:70px 6%;
    }

    .portafolio-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .proyecto img{

        height:220px;
    }

    .proyecto-info{

        padding:18px;
    }

    .proyecto-info h3{

        font-size:1.05rem;
    }

}

/* ================================= */
/* PLANES */
/* ================================= */

.planes{
    padding:90px 8%;
    background:#08142d;
}

.planes .section-title small{
    display:block;
    margin-top:10px;
    color:var(--gris);
    font-size:.9rem;
}

.planes-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}

/* ================================= */
/* CARD GENERAL */
/* ================================= */

.plan-card{
    background:#0d1733;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:35px 28px;
    display:flex;
    flex-direction:column;
    position:relative;
    overflow:hidden;
    transition:.35s ease;
}

.plan-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,255,255,.15);
    box-shadow:0 25px 50px rgba(0,0,0,.35);
}

/* ================================= */
/* LANDING */
/* ================================= */

.oferta-especial{
    border:2px solid var(--dorado);
    box-shadow:0 0 40px rgba(247,201,72,.12);
}

.badge-oferta{
    background:linear-gradient(
        135deg,
        #ff4fa3,
        #f7c948
    );
    color:#fff;
    text-align:center;
    padding:10px;
    border-radius:30px;
    font-size:.8rem;
    font-weight:700;
    margin-bottom:20px;
    animation:parpadeo 2s infinite;
}

.ahorro{
    text-align:center;
    color:#58ff9d;
    font-weight:700;
    margin-bottom:20px;
    font-size:.95rem;
}

/* ================================= */
/* PROFESIONAL */
/* ================================= */

.destacado{
    transform:scale(1.04);
    border:2px solid var(--rosado);
    background:linear-gradient(
        180deg,
        #132550,
        #0d1733
    );
    box-shadow:0 0 40px rgba(255,79,163,.18);
}

.destacado:hover{
    transform:scale(1.04) translateY(-10px);
}

.badge-plan{
    background:var(--rosado);
    color:white;
    text-align:center;
    padding:10px;
    border-radius:30px;
    font-size:.8rem;
    font-weight:700;
    margin-bottom:20px;
}

/* ================================= */
/* PREMIUM */
/* ================================= */

.premium{
    border:2px solid #9c7bff;
    box-shadow:0 0 40px rgba(156,123,255,.12);
}

.badge-premium{
    background:linear-gradient(
        135deg,
        #6c5ce7,
        #9c7bff
    );

    color:white;
    text-align:center;
    padding:10px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:.8rem;
    font-weight:700;
}

/* ================================= */
/* TITULOS */
/* ================================= */

.plan-card h3{
    text-align:center;
    font-size:2rem;
    margin-bottom:10px;
    color:#fff;
}

.plan-desc{
    text-align:center;
    color:var(--gris);
    line-height:1.6;
    margin-bottom:20px;
    font-size:.95rem;
}

/* ================================= */
/* PRECIOS */
/* ================================= */

.precio-anterior{
    text-align:center;
    color:rgba(255,255,255,.35);
    text-decoration:line-through;
    font-size:1.1rem;
}

.precio{
    text-align:center;
    font-size:3.3rem;
    font-weight:800;
    color:white;
    margin:10px 0;
}

.precio span{
    font-size:.9rem;
    color:var(--gris);
    font-weight:500;
}

/* ================================= */
/* LISTA */
/* ================================= */

.plan-card ul{
    list-style:none;
    flex:1;
    margin:25px 0;
}

.plan-card ul li{
    padding:12px 0;
    color:var(--gris);
    border-bottom:1px solid rgba(255,255,255,.05);
    font-size:.95rem;
}

.no-incluye{
    opacity:.45;
    text-decoration:line-through;
}

/* ================================= */
/* BOTONES */
/* ================================= */

.plan-btn{
    display:block;
    text-align:center;
    text-decoration:none;
    background:linear-gradient(
        135deg,
        var(--rosado),
        var(--dorado)
    );
    color:white;
    padding:15px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.plan-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(255,79,163,.25);
}

.btn-oferta{
    animation:pulsoOferta 2s infinite;
}

/* ================================= */
/* NOTA */
/* ================================= */

.planes-nota{
    max-width:900px;
    margin:50px auto 0;
    text-align:center;
    color:rgba(255,255,255,.60);
    font-size:.85rem;
    line-height:1.7;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* ================================= */
/* ANIMACIONES */
/* ================================= */

@keyframes pulsoOferta{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.04);
    }

    100%{
        transform:scale(1);
    }

}

@keyframes parpadeo{

    0%{
        opacity:1;
    }

    50%{
        opacity:.7;
    }

    100%{
        opacity:1;
    }

}

/* ================================= */
/* TABLET */
/* ================================= */

@media(max-width:992px){

    .planes-grid{
        grid-template-columns:1fr;
    }

    .destacado{
        transform:none;
    }

    .destacado:hover{
        transform:translateY(-10px);
    }

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:768px){

    .planes{
        padding:70px 6%;
    }

    .plan-card{
        padding:30px 22px;
    }

    .precio{
        font-size:2.8rem;
    }

}

/* MODAL PAGOS */

.modal-pagos{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    z-index:9999;
    padding:20px;
    overflow:auto;
}

.modal-contenido{
    max-width:800px;
    margin:40px auto;
    background:#0d1733;
    border-radius:20px;
    padding:35px;
    border:1px solid rgba(255,255,255,.1);
    position:relative;
}

.cerrar-modal{
    position:absolute;
    top:15px;
    right:20px;
    cursor:pointer;
    font-size:1.5rem;
}

.modal-contenido h2{
    text-align:center;
    color:#f7c948;
}

.subtitulo-pagos{
    text-align:center;
    margin-bottom:25px;
    color:#b8c0d4;
}

.acordeon-item{
    margin-bottom:15px;
}

.acordeon-btn{
    width:100%;
    border:none;
    background:#132042;
    color:white;
    padding:18px;
    border-radius:12px;
    cursor:pointer;
    text-align:left;
    font-weight:600;
}

.acordeon-contenido{
    display:none;
    background:#08142d;
    padding:20px;
    border-radius:12px;
    margin-top:8px;
}

.acordeon-contenido.activo{
    display:block;
}

.qr-pago{
    width:220px;
    display:block;
    margin:20px auto;
}

.logos-tarjetas,
.logos-bancos{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
    margin:20px 0;
}

.logos-tarjetas img,
.logos-bancos img{
    height:40px;
}

.btn-pagar,
.btn-whatsapp{
    display:block;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:10px;
    margin-top:15px;
    font-weight:700;
}

.btn-pagar{
    background:linear-gradient(
        135deg,
        #ff4fa3,
        #f7c948
    );
    color:white;
}

.btn-whatsapp{
    background:#25d366;
    color:white;
}

/* =============================== */
/* CUENTAS BANCARIAS */
/* =============================== */

.cuenta-banco{

    background:#132042;

    border:1px solid rgba(255,255,255,.08);

    border-radius:15px;

    padding:20px;

    margin-bottom:20px;

    text-align:center;

}

.cuenta-banco img{

    max-width:120px;

    margin-bottom:15px;

}

.cuenta-banco h4{

    color:#f7c948;

    margin-bottom:15px;

}

.cuenta-banco p{

    color:#b8c0d4;

    margin:6px 0;

}
 /* ========================== */
/* PLAN SELECCIONADO */
/* ========================== */

.plan-seleccionado{

    text-align:center;

    margin:25px 0;

    padding:20px;

    background:#132042;

    border-radius:15px;

    border:1px solid rgba(255,255,255,.08);

}

.plan-seleccionado span{

    color:#ff4fa3;

    font-size:.8rem;

    letter-spacing:2px;

}

.plan-seleccionado h3{

    margin-top:10px;

    font-size:1.8rem;

    color:white;

}

.plan-seleccionado p{

    font-size:1.3rem;

    color:#f7c948;

    font-weight:700;

}

.copiar-btn{

    background:#f7c948;

    color:#0d1733;

    border:none;

    padding:12px 18px;

    border-radius:10px;

    cursor:pointer;

    font-weight:700;

    margin-top:12px;

    transition:.3s;

}

.copiar-btn:hover{

    transform:translateY(-2px);

}

/* ================================= */
/* FAQ + CTA FINAL */
/* ================================= */

.faq-cta{
    padding:80px 8%;
    background:#071029;
}

.faq-cta-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

/* ================================= */
/* FAQ */
/* ================================= */

.faq-columna{
    background:#0d1733;
    padding:40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.08);
}

.faq-columna h2{
    margin-bottom:30px;
    font-size:2.5rem;
    font-weight:800;
    color:#fff;
}

/* FAQ ITEM */

.faq-item{
    background:#101d42;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:rgba(255,79,163,.4);
    transform:translateY(-3px);
}

.faq-btn{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    font-size:1rem;
    font-weight:600;
    text-align:left;
    padding:22px 25px;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-icon{
    width:40px;
    height:40px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        #ff4fa3,
        #ffb347
    );

    color:#fff;
    font-size:1.4rem;
    font-weight:700;

    transition:.3s;
    flex-shrink:0;
}

/* CONTENIDO */

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-content p{
    padding:0 25px 25px;
    color:#bfc7d9;
    line-height:1.8;
}

/* FAQ ABIERTO */

.faq-item.activo{
    border-color:#ff4fa3;
}

.faq-item.activo .faq-content{
    max-height:500px;
}

.faq-item.activo .faq-icon{
    transform:rotate(45deg);
}

/* ================================= */
/* CTA FINAL */
/* ================================= */

.cta-final{
    background:#0d1733;
    padding:40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.08);

    display:flex;
    flex-direction:column;
    justify-content:center;

    height:100%;
}

.cta-final span{
    color:#ff4fa3;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.cta-final h2{
    font-size:2.4rem;
    line-height:1.3;
    margin-bottom:20px;
    color:#fff;
}

.cta-final p{
    color:#b8c0d4;
    line-height:1.8;
    margin-bottom:25px;
}

.cta-final ul{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.cta-final ul li{
    margin-bottom:12px;
    color:#fff;
    font-size:17px;
}

.cta-final .solucion-btn{
    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:18px 25px;

    border-radius:14px;

    text-decoration:none;

    background:linear-gradient(
        90deg,
        #ff4fa1,
        #ff8a7a,
        #f5c84c
    );

    color:#fff;
    font-size:18px;
    font-weight:700;

    transition:.3s ease;

    box-shadow:0 10px 30px rgba(255,120,80,.25);
}

.cta-final .solucion-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,120,80,.4);
}

/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media(max-width:900px){

    .faq-cta-grid{
        grid-template-columns:1fr;
    }

    .faq-columna,
    .cta-final{
        padding:30px;
    }

    .faq-columna h2,
    .cta-final h2{
        font-size:2rem;
    }

}

/* ================================= */
/* FOOTER */
/* ================================= */

.footer{

    background:#050c1f;

    padding:80px 8% 30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-brand h3{

    font-size:2rem;

    color:var(--blanco);

    margin-bottom:15px;

}

.footer-brand p{

    color:var(--gris);

    line-height:1.8;

}

.footer-links,
.footer-contact{

    display:flex;

    flex-direction:column;

}

.footer-links h4,
.footer-contact h4{

    margin-bottom:18px;

    color:var(--dorado);

}

.footer-links a,
.footer-contact a{

    color:var(--gris);

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer-links a:hover,
.footer-contact a:hover{

    color:var(--rosado);

}

.footer-contact p{

    color:var(--gris);

    margin-bottom:15px;

}

.footer-copy{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:15px;

}

.footer-copy p{

    color:rgba(255,255,255,.55);

    font-size:.9rem;

}

/* RESPONSIVE */

@media(max-width:900px){

    .footer-container{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .footer{

        padding:50px 6% 25px;

    }

    .footer-container{

        grid-template-columns:1fr 1fr;

        gap:25px;

    }

    .footer-brand{

        grid-column:1 / -1;

        text-align:center;

        margin-bottom:10px;

    }

    .footer-brand h3{

        font-size:1.7rem;

    }

    .footer-brand p{

        max-width:350px;

        margin:auto;

        font-size:.95rem;

        line-height:1.6;

    }

    .footer-links,
    .footer-contact{

        text-align:left;

    }

    .footer-links h4,
    .footer-contact h4{

        margin-bottom:10px;

        font-size:1rem;

    }

    .footer-links a,
    .footer-contact a,
    .footer-contact p{

        font-size:.9rem;

        margin-bottom:8px;

    }

    .footer-copy{

        margin-top:30px;

        padding-top:20px;

        flex-direction:column;

        text-align:center;

        gap:8px;

    }

}

/* ================================= */
/* PAGINAS LEGALES */
/* ================================= */

.legal-page{

    background:#071029;

    min-height:100vh;

    padding:80px 5%;

}

.legal-container{

    max-width:900px;

    margin:auto;

    background:#0d1733;

    padding:50px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

}

.legal-container h1{

    font-size:2.8rem;

    margin-bottom:15px;

    color:#fff;

}

.legal-date{

    color:#f7c948;

    margin-bottom:40px;

}

.legal-container h2{

    margin-top:35px;

    margin-bottom:15px;

    color:#ff4fa3;

    font-size:1.4rem;

}

.legal-container p{

    color:#b8c0d4;

    line-height:1.9;

    margin-bottom:15px;

}

.legal-container ul{

    margin-left:25px;

    color:#b8c0d4;

    line-height:1.9;

}

.volver-btn{

    display:inline-block;

    margin-top:40px;

    padding:15px 30px;

    border-radius:12px;

    text-decoration:none;

    color:white;

    font-weight:700;

    background:linear-gradient(
        135deg,
        #ff4fa3,
        #f7c948
    );

}

@media(max-width:768px){

    .legal-page{

        padding:40px 4%;

    }

    .legal-container{

        padding:30px 20px;

    }

    .legal-container h1{

        font-size:2rem;

    }

}

.cookie-banner{
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #111827;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    z-index: 99999;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.cookie-banner p{
    margin: 0;
    font-size: 14px;
}

.cookie-banner button{
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-banner button:hover{
    opacity: .9;
}

.cookie-banner a{
    color: #60a5fa;
    text-decoration: underline;
}

@media (max-width:768px){
    .cookie-banner{
        flex-direction: column;
        text-align: center;
    }
}