/* =====================================
   RESET
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

/* =====================================
   VARIABLES
===================================== */

:root{
    --negro:#000000;
    --negro-card:#0f0f0f;
    --gris:#bdbdbd;
    --dorado:#f5c518;
    --blanco:#ffffff;
}

/* =====================================
   HEADER
===================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:28px 8%;

    z-index:1000;

    background:rgba(0,0,0,.55);
    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,.05);
}

/* Menu */

.menu ul{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:60px;
    list-style:none;
}

.menu a{
    text-decoration:none;
    color:#fff;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:var(--dorado);
}

/* Menu mobile */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#fff;
}

/* =====================================
   RESPONSIVE HEADER
===================================== */

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .menu{
        display:none;

        position:absolute;
        top:90px;
        left:0;

        width:100%;

        background:#111;

        padding:25px 0;
    }

    .menu.active{
        display:block;
    }

    .menu ul{
        flex-direction:column;
        gap:25px;
    }

}

/* =====================================
   HERO
===================================== */

.hero{
    position:relative;
    width:100%;
    padding-top:90px;
}

.hero-slider{
    position:relative;
}

.hero-slide{
    display:none;
    position:relative;
    min-height:85vh;
    overflow:hidden;
    align-items:center;
}

.hero-slide.active{
    display:flex;
}

/* Fondo */

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}

/* Overlay */

.hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.95) 0%,
        rgba(0,0,0,.75) 35%,
        rgba(0,0,0,.35) 65%,
        rgba(0,0,0,.05) 100%
    );
}

/* Luz Dorada */

.hero-slide::before{
    content:"";

    position:absolute;

    width:700px;
    height:700px;

    left:-250px;
    top:50%;

    transform:translateY(-50%);

    background:rgba(245,197,24,.12);

    border-radius:50%;

    filter:blur(180px);

    z-index:2;
}

/* Contenido */

.hero-content{
    position:relative;
    z-index:5;

    max-width:650px;

    margin-left:8%;
}

/* Tag */

.hero-tag{
    display:inline-block;

    padding:12px 22px;

    background:rgba(245,197,24,.10);

    border:1px solid rgba(245,197,24,.25);

    border-radius:50px;

    color:var(--dorado);

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

/* Titulo */

.hero h1{
    font-size:56px;
    line-height:1.05;
    font-weight:800;

    margin-bottom:25px;
}

/* Texto */

.hero p{
    font-size:18px;
    line-height:1.8;

    color:#d0d0d0;

    margin-bottom:35px;
}

/* Botones */

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 38px;

    background:var(--dorado);

    color:#000;

    text-decoration:none;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:10px;

    padding:18px 38px;

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.05);

    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.10);
}

/* Features */

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.hero-features span{
    padding:10px 16px;

    border-radius:40px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    font-size:14px;
}

/* =====================================
   RESPONSIVE HERO
===================================== */

@media(max-width:992px){

    .hero h1{
        font-size:54px;
    }

    .hero-content{
        max-width:580px;
    }

}

@media(max-width:768px){

    .hero-slide{
        min-height:auto;
        padding:120px 0 80px;
    }

    .hero-slide::after{
        background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.65) 40%,
            rgba(0,0,0,.95) 100%
        );
    }

    .hero-content{
        margin-top:70px;
        padding:0 25px;
        text-align:center;
        max-width:100%;
    }

    .hero h1{
        font-size:36px;
        line-height:1.1;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
    }

    .hero-features{
        justify-content:center;
    }

}

/* =====================================
   BENEFICIOS
===================================== */

.beneficios{
    padding:80px 8%;
    background:#000;
}

/* Titulo */

.beneficios h2{
    text-align:center;

    font-size:42px;
    font-weight:800;

    color:#fff;

    margin-bottom:70px;
}

.beneficios h2::after{
    content:"";

    display:block;

    width:80px;
    height:4px;

    margin:18px auto 0;

    background:var(--dorado);

    border-radius:20px;
}

/* =====================================
   CARDS PRINCIPALES
===================================== */

.info-top{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-bottom:35px;
}

.info-box{
    background:#0c0c0c;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:35px;

    transition:.35s;
}

.info-box:hover{
    transform:translateY(-8px);

    border-color:rgba(245,197,24,.35);

    box-shadow:0 15px 40px rgba(245,197,24,.08);
}

.info-box i{
    font-size:34px;

    color:var(--dorado);

    margin-bottom:22px;
}

.info-box h3{
    font-size:24px;

    line-height:1.3;

    margin-bottom:16px;

    color:#fff;
}

.info-box p{
    color:#bdbdbd;

    line-height:1.9;

    font-size:15px;
}

/* =====================================
   BENEFICIOS INFERIORES
===================================== */

.beneficios-barra{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

.beneficio-box{
    background:#0c0c0c;

    border:1px solid rgba(255,255,255,.06);

    border-radius:18px;

    padding:24px;

    transition:.3s;
}

.beneficio-box:hover{
    transform:translateY(-5px);

    border-color:rgba(245,197,24,.25);
}

.beneficio-header{
    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:12px;
}

.beneficio-header i{
    color:var(--dorado);

    font-size:18px;
}

.beneficio-header span{
    font-size:18px;

    font-weight:600;
}

.beneficio-content{
    color:#bdbdbd;

    line-height:1.8;

    font-size:15px;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .info-top{
        grid-template-columns:1fr;
    }

    .beneficios-barra{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .beneficios{
        padding:90px 25px;
    }

    .beneficios h2{
        font-size:40px;
        margin-bottom:50px;
    }

    .beneficios-barra{
        grid-template-columns:1fr;
    }

    .info-box{
        padding:28px;
    }

    .info-box h3{
        font-size:22px;
    }

}

/* =====================================
   PLATAFORMAS
===================================== */

.plataformas{
    padding:80px 8%;
    background:#050505;
}

/* Título */

.plataformas h2{
    text-align:center;

    font-size:42px;
    font-weight:800;

    color:#fff;

    margin-bottom:50px;
}

.plataformas h2::after{
    content:"";

    display:block;

    width:80px;
    height:4px;

    margin:18px auto 0;

    background:var(--dorado);

    border-radius:20px;
}

/* =====================================
   TABS
===================================== */

.tabs{
    display:flex;
    justify-content:center;
    gap:15px;

    margin-bottom:50px;
}

.tab-btn{
    border:none;

    padding:14px 30px;

    border-radius:50px;

    cursor:pointer;

    background:#111;

    color:#fff;

    font-size:16px;
    font-weight:600;

    transition:.3s;
}

.tab-btn:hover{
    transform:translateY(-2px);
}

.tab-btn.active{
    background:var(--dorado);
    color:#000;
}

/* =====================================
   CONTENIDO TABS
===================================== */

.tab-content{
    display:none;
}

.tab-content.active{
    display:grid;
}

/* =====================================
   GRID
===================================== */

.plataformas-grid{
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* =====================================
   CARD
===================================== */

.plataforma-card{
    background:#0c0c0c;

    border:1px solid rgba(255,255,255,.05);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;
}

.plataforma-card:hover{
    transform:translateY(-8px);

    border-color:rgba(245,197,24,.35);

    box-shadow:0 15px 40px rgba(245,197,24,.08);
}

/* Imagen */

.plataforma-card img{
    width:100%;
    height:240px;

    object-fit:cover;

    display:block;

    transition:.4s;
}

.plataforma-card:hover img{
    transform:scale(1.05);
}

/* Botón */

.plataforma-card a{
    display:block;

    text-align:center;

    padding:18px;

    text-decoration:none;

    color:var(--dorado);

    font-weight:700;

    border-top:1px solid rgba(255,255,255,.05);

    transition:.3s;
}

.plataforma-card a:hover{
    background:rgba(245,197,24,.08);
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:768px){

    .plataformas{
        padding:90px 25px;
    }

    .plataformas h2{
        font-size:40px;
    }

    .tabs{
        flex-wrap:wrap;
    }

    .plataformas-grid{
        grid-template-columns:1fr;
    }

}

/* =====================================
   COMO FUNCIONA
===================================== */

.funciona{
    padding:80px 8%;
    background:#000;
}

/* Título */

.funciona h2{
    text-align:center;

    font-size:42px;
    font-weight:800;

    color:#fff;

    margin-bottom:70px;
}

.funciona h2::after{
    content:"";

    display:block;

    width:80px;
    height:4px;

    margin:18px auto 0;

    background:var(--dorado);

    border-radius:20px;
}

/* =====================================
   PASOS
===================================== */

.steps{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* Card */

.step{
    position:relative;

    width:320px;

    padding:40px 30px;

    text-align:center;

    background:#0c0c0c;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    transition:.35s;
}

.step:hover{
    transform:translateY(-8px);

    border-color:rgba(245,197,24,.35);

    box-shadow:0 15px 40px rgba(245,197,24,.08);
}

/* Número */

.step span{
    display:flex;

    align-items:center;
    justify-content:center;

    width:90px;
    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(245,197,24,.12);

    border:2px solid rgba(245,197,24,.25);

    color:var(--dorado);

    font-size:34px;
    font-weight:800;
}

/* Texto */

.step p{
    font-size:20px;
    font-weight:600;

    color:#fff;

    line-height:1.6;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:768px){

    .funciona{
        padding:90px 25px;
    }

    .funciona h2{
        font-size:40px;
        margin-bottom:50px;
    }

    .step{
        width:100%;
    }

}

/* =====================================
   ESTADISTICAS
===================================== */

.estadisticas{

    padding:80px 8%;

    background:#050505;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.estadistica-box{

    background:#0c0c0c;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;
}

.estadistica-box:hover{

    transform:translateY(-8px);

    border-color:rgba(245,197,24,.35);

    box-shadow:0 15px 40px rgba(245,197,24,.08);
}

.estadistica-box span{

    display:block;

    font-size:58px;

    font-weight:800;

    color:#f5c518;

    margin-bottom:12px;
}

.estadistica-box h3{

    font-size:22px;

    margin-bottom:10px;

    color:#fff;
}

.estadistica-box p{

    color:#bdbdbd;

    line-height:1.7;

    font-size:15px;
}

/* MOBILE */

@media(max-width:992px){

    .estadisticas{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .estadisticas{

        grid-template-columns:1fr;

        padding:90px 25px;
    }

    .estadistica-box span{
        font-size:48px;
    }

}

/* =====================================
   CTA + FORMULARIO
===================================== */

.cta{
    padding:80px 8%;
    background:#050505;
}

.cta-content{

    display:grid;
    grid-template-columns:1fr 500px;

    gap:60px;

    align-items:center;
}

.cta-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(245,197,24,.10);

    border:1px solid rgba(245,197,24,.25);

    color:var(--dorado);

    margin-bottom:20px;
}

.cta-info h2{

    font-size:42px;

    line-height:1.1;

    margin-bottom:20px;
}

.cta-info p{

    color:#bdbdbd;

    line-height:1.9;

    margin-bottom:35px;

    max-width:600px;
}

/* Botón WhatsApp */

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:18px 35px;

    border-radius:12px;

    background:var(--dorado);

    color:#000;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
}

/* Formulario */

.cta-form{

    background:#0c0c0c;

    border:1px solid rgba(255,255,255,.06);

    border-radius:24px;

    padding:35px;

    display:flex;

    flex-direction:column;

    gap:18px;
}

.cta-form input,
.cta-form select{

    width:100%;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#141414;

    color:#fff;

    font-family:'Poppins',sans-serif;
}

.cta-form button{

    border:none;

    padding:18px;

    border-radius:12px;

    background:var(--dorado);

    color:#000;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

.cta-form button:hover{
    transform:translateY(-3px);
}

/* =====================================
   FOOTER
===================================== */

footer{

    background:#000;

    padding:35px 20px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.05);
}

footer p{
    color:#888;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .cta-content{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .cta{

        padding:90px 25px;
    }

    .cta-info h2{

        font-size:40px;
    }

}

.phone-header{
    position:absolute;
    right:8%;

    display:flex;
    align-items:center;
    gap:8px;

    text-decoration:none;

    color:var(--dorado);

    font-size:15px;
    font-weight:700;

    transition:.3s;
}

.phone-header:hover{
    transform:translateY(-2px);
    color:#fff;
}

.phone-header i{
    font-size:18px;
}