html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Arial',sans-serif;
}

body{
    overflow-x:hidden;
    background:#0F172A;
}

/* BARRA SUPERIOR */

.top-bar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:35px;

    background:#2563EB;

    color:white;

    display:flex;

    align-items:center;

    overflow:hidden;

    font-size:14px;

    font-weight:600;

    z-index:9999;
}

.marquee span{
    display:inline-block;
    white-space:nowrap;
    animation:scroll 20s linear infinite;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* HERO */

.hero{
    position:relative;
    height:100vh;

    background:url("img/fondo2.jpeg");
    background-size:cover;

    /* Mueve la foto ligeramente a la derecha */
    background-position:65% center;

    background-repeat:no-repeat;
}

/* CAPA AZUL */

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(15,23,42,.95) 0%,
        rgba(15,23,42,.80) 30%,
        rgba(37,99,235,.35) 65%,
        rgba(0,0,0,.25) 100%
    );
}

/* OSCURECER PARTE INFERIOR */

.hero::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:180px;

    background:linear-gradient(
        to top,
        rgba(15,23,42,1),
        transparent
    );
}

/* NAVBAR */

.navbar{

    position:fixed;

    top:45px;

    left:50%;

    transform:translateX(-50%);

    width:80%;

    max-width:1100px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    border-radius:50px;

    padding:15px 25px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:9998;

    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.logo span{
    font-size:30px;
    font-weight:900;
    color:#D4A017;
    letter-spacing:1px;
}

.navbar ul{
    list-style:none;
    display:flex;
    gap:30px;
}

.navbar ul li a{
    text-decoration:none;
    color:#0F172A;
    font-weight:700;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#2563EB;
}

.nav-btn{
    background:#0F172A;
    color:white !important;

    text-decoration:none;

    padding:12px 25px;

    border-radius:30px;

    font-weight:700;
}

/* CONTENIDO */

.hero-content{
    position:relative;
    z-index:3;

    max-width:750px;

    padding-top:180px;
    padding-left:10%;
}

.hero-content h1{
    color:white;
    font-size:95px;
    font-weight:900;
    line-height:.9;
    text-transform:uppercase;
}

.hero-content h2{
    color:#FFD700;
    font-size:75px;
    font-weight:900;
    line-height:.9;
}

/* TEXTO */

.hero-content p{
    margin-top:25px;

    color:white;

    font-size:24px;

    max-width:600px;

    line-height:1.4;
}

/* BOTON */

.cta-btn{

    margin-top:35px;
    display:inline-block;
    background:#D4A017;
    color:#0F172A;

    padding:25px 45px;

    border-radius:15px;

    font-size:28px;
    font-weight:900;

    text-decoration:none;

    box-shadow:
    0 15px 35px rgba(212,160,23,.35);
    transition:.3s;
}

.cta-btn:hover{
    background:#1D4ED8;
    transform:translateY(-5px);
}

/* INDICADOR */

.status{
    margin-top:25px;

    color:white;

    display:flex;
    align-items:center;
    gap:10px;

    font-weight:700;
}

.dot{
    width:12px;
    height:12px;

    background:#22C55E;

    border-radius:50%;

    box-shadow:0 0 15px #22C55E;
}

/* RESPONSIVE */

@media(max-width:900px){

    .navbar{
        width:95%;
    }

    .navbar ul{
        display:none;
    }

    .hero-content{
        padding-left:30px;
        padding-right:30px;
    }

    .hero-content h1{
        font-size:55px;
    }

    .hero-content h2{
        font-size:50px;
    }

    .hero-content p{
        font-size:18px;
    }

    .cta-btn{
        font-size:22px;
        padding:20px 30px;
    }
}
/* ========================= */
/* SEGUNDA SECCION */
/* ========================= */

.community{
    background:#020617;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:120px 30px;

    position:relative;
}

/* brillo azul */

.community::before{
    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:radial-gradient(
        circle,
        rgba(37,99,235,.18),
        transparent 70%
    );

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}

.community-badge{
    position:relative;

    color:#d1d5db;

    font-size:13px;
    font-weight:700;

    padding:10px 20px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    margin-bottom:35px;

    background:rgba(255,255,255,.04);

    z-index:2;
}

.community-badge::before{
    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:#22c55e;

    display:inline-block;

    margin-right:8px;
}

.community h2{
    position:relative;

    font-size:clamp(40px, 8vw, 95px);

    line-height:.95;
    font-weight:900;

    text-transform:uppercase;

    color:white;

    z-index:2;
}

.community h2 span{
    color:#D4A017;
}

.community h2 strong{
    color:#60A5FA;
    font-weight:900;
}

.community p{
    position:relative;

    max-width:750px;

    color:#cbd5e1;

    font-size:24px;

    line-height:1.6;

    margin-top:35px;

    z-index:2;
}

.community-btn{
    position:relative;

    margin-top:45px;

    background:white;

    color:#0F172A;

    text-decoration:none;

    padding:20px 40px;

    border-radius:50px;

    font-weight:800;

    font-size:18px;

    transition:.3s;

    z-index:2;
}

.community-btn:hover{
    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(255,255,255,.15);
}

/* ========================= */
/* METODOLOGÍA */
/* ========================= */

.method{

      background:
    radial-gradient(
        circle at center,
        rgba(212,160,23,.20) 0%,
        rgba(212,160,23,.05) 25%,
        transparent 50%
    ),
    linear-gradient(
        135deg,
        #1E3A8A,
        #2563EB,
        #1E40AF
    );

    padding:120px 20px;
}

.method::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    background:radial-gradient(
        circle,
        rgba(37,99,235,.25),
        transparent 70%
    );

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);
}

.method-header{

    text-align:center;

    margin-bottom:70px;

    position:relative;

    z-index:2;
}

.method-header h2{

    color:white;

    font-size:clamp(40px,6vw,90px);

    line-height:.95;

    font-weight:900;
}

.method-header span{

    color:#D4A017;
}

.method-header p{

    color:#CBD5E1;

    font-size:22px;

    max-width:700px;

    margin:25px auto 0;
}

.method-content{

    display:grid;

    grid-template-columns:1fr auto 1fr;

    gap:50px;

    align-items:center;

    position:relative;

    z-index:2;
}

.method-column{

    display:flex;

    flex-direction:column;

    gap:30px;
}

.card{

    background:white;

    border-radius:25px;

    padding:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.icon{

    font-size:35px;

    margin-bottom:15px;
}

.card h3{

    color:#0F172A;

    margin-bottom:15px;

    font-size:24px;
}

.card p{

    color:#475569;

    line-height:1.6;
}

.person img{

    width:350px;

    display:block;
}

/* RESPONSIVE */

@media(max-width:991px){

    .method-content{

        grid-template-columns:1fr;
    }

    .person{

        order:-1;

        text-align:center;
    }

    .person img{

        width:250px;
        margin:auto;
    }

    .method-header p{

        font-size:18px;
    }
}

.section-divider{
    height:2px;
    width:100%;

    background:linear-gradient(
        90deg,
        transparent,
        #D4A017,
        transparent
    );
}

.section-break{
    height:120px;

    background:
    radial-gradient(
        circle at center,
        rgba(212,160,23,.12),
        transparent 70%
    ),
    #020617;
}

.diagonal-divider{
    height:120px;

    background:#020617;

    clip-path:polygon(
        0 0,
        100% 50px,
        100% 100%,
        0 100%
    );
}

.section-divider{
    height:3px;

    background:linear-gradient(
        90deg,
        transparent,
        #D4A017,
        transparent
    );

    box-shadow:
    0 0 15px rgba(212,160,23,.35);
}

.card h3{
    color:#0F172A;
    margin-bottom:15px;
    font-size:22px;
    line-height:1.2;
    font-weight:800;
}

.card p{
    color:#475569;
    line-height:1.7;
    font-size:16px;
}

@media(max-width:768px){

    .card{
        padding:25px;
    }

    .card h3{
        font-size:20px;
    }

    .card p{
        font-size:15px;
    }

}

/* ========================= */
/* FAQ */
/* ========================= */

.faq{

    background:linear-gradient(
        180deg,
        #0F172A 0%,
        #111827 100%
    );

    padding:120px 20px;
}

.faq h2{

    text-align:center;

    color:white;

    font-size:clamp(40px,5vw,70px);

    margin-bottom:70px;

    font-weight:900;
}

.faq-item{

    max-width:900px;

    margin:0 auto 20px;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.15);
}

.faq-question{

    width:100%;

    background:white;

    border:none;

    padding:25px 30px;

    color:#0F172A;

    font-size:20px;

    font-weight:800;

    text-align:left;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    transition:.3s;
}

.faq-question:hover{

    background:#F8FAFC;
}

.faq-question span{

    color:#D4A017;

    font-size:28px;

    font-weight:900;
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    color:#475569;

    font-size:17px;

    line-height:1.8;

    transition:.4s ease;

    padding:0 30px;
}

.faq-item.active .faq-answer{

    max-height:250px;

    padding:0 30px 25px;
}

.faq-item.active .faq-question{

    border-bottom:1px solid #E2E8F0;
}
.final-cta{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:140px 20px;

    background:
    linear-gradient(
        135deg,
        #2563EB,
        #1E3A8A,
        #020617
    );
}

.cta-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
        circle,
        rgba(212,160,23,.25),
        transparent 70%
    );

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

.final-cta h2{

    position:relative;

    color:white;

    font-size:clamp(40px,6vw,90px);

    line-height:.95;

    font-weight:900;

    z-index:2;
}

.final-cta p{

    position:relative;

    color:#E2E8F0;

    max-width:700px;

    margin:30px auto;

    font-size:22px;

    z-index:2;
}

.final-btn{

    position:relative;

    display:inline-block;

    background:#D4A017;

    color:#020617;

    padding:22px 50px;

    border-radius:50px;

    font-weight:900;

    text-decoration:none;

    font-size:22px;

    z-index:2;

    transition:.3s;
}

.final-btn:hover{

    transform:translateY(-5px);
}

.free-label{

    display:block;

    margin-top:25px;

    color:white;

    font-weight:700;

    letter-spacing:2px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

    background:#010B1F;

    border-top:1px solid rgba(212,160,23,.25);

    padding-top:80px;
}

.footer-container{

    max-width:1400px;

    margin:auto;

    padding:0 40px 60px;

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr
    auto;

    gap:50px;
}

.footer-logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
}

.footer-logo img{

    width:50px;
    height:50px;

    object-fit:contain;
}

.footer-logo span{

    color:#D4A017;

    font-size:32px;

    font-weight:900;
}

.footer-brand p{

    color:#94A3B8;

    line-height:1.8;

    max-width:320px;
}

.footer-links h3{

    color:white;

    margin-bottom:20px;

    font-size:18px;
}

.footer-links{

    display:flex;

    flex-direction:column;
}

.footer-links a{

    color:#94A3B8;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-links a:hover{

    color:#D4A017;

    transform:translateX(5px);
}

.footer-btn{

    display:inline-block;

    background:transparent;

    border:2px solid #D4A017;

    color:#D4A017;

    padding:18px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:800;

    transition:.3s;
}

.footer-btn:hover{

    background:#D4A017;

    color:#020617;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px;

    color:#64748B;

    font-size:14px;
}

@media(max-width:900px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .footer-logo{

        justify-content:center;
    }

    .footer-brand p{

        margin:auto;
    }

    .footer-btn{

        width:100%;
        max-width:350px;
    }

}

/* ========================= */
/* RESULTADOS */
/* ========================= */

.results-section{

    padding:120px 0;

    background:
    linear-gradient(
        135deg,
        #0B1220,
        #101C3A
    );

    overflow:hidden;
}

.results-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 70px;

    padding:0 20px;
}

.results-header h2{

    color:white;

    font-size:clamp(40px,6vw,80px);

    line-height:1;

    font-weight:900;

    margin-bottom:25px;
}

.results-header h2 span{

    color:#D4A017;
}

.results-header p{

    color:#CBD5E1;

    font-size:20px;

    line-height:1.8;
}

/* Slider */

.slider{

    width:100%;

    overflow:hidden;

    position:relative;
}

.slide-track{

    display:flex;

    width:calc(350px * 10);

    animation:scroll 30s linear infinite;

    gap:25px;
}

.slide-track img{

    width:350px;

    height:700px;

    object-fit:cover;

    border-radius:25px;

    border:3px solid rgba(212,160,23,.3);

    box-shadow:
    0 15px 35px rgba(0,0,0,.35);
}

.slide-track:hover{

    animation-play-state:paused;
}

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-350px * 5));
    }
}

@media(max-width:768px){

    .slide-track{

        width:calc(220px * 10);
    }

    .slide-track img{

        width:220px;

        height:440px;
    }

    @keyframes scroll{

        100%{
            transform:translateX(calc(-220px * 5));
        }

    }

}

.method{

    position: relative;

    padding: 120px 20px;

    background:
        linear-gradient(
            rgba(2, 6, 23, 0.75),
            rgba(2, 6, 23, 0.75)
        ),
        url('img/fondo.jpeg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fa-telegram{
    color:#229ED9;
}

.fa-instagram{
    color:#E4405F;
}

.fa-tiktok{
    color:#FFFFFF;
}

.fa-whatsapp{
    color:#25D366;
}

.footer-links a{

    display:flex;
    align-items:center;
    gap:12px;

    color:#94A3B8;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;
}

.footer-links a:hover{

    color:#D4A017;

    transform:translateX(5px);
}

.footer-links i{

    font-size:20px;

    width:24px;

    text-align:center;
}

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

    color:#0F172A;

    font-weight:bold;
}

@media(max-width:900px){

    .navbar{

        width:calc(100% - 20px);

        left:10px;

        transform:none;

        padding:12px 15px;

        border-radius:20px;
    }



    .menu-toggle{

        display:block;
    }

    .nav-btn{

        display:none;
    }

    .nav-links{

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:white;

        border-radius:25px;

        flex-direction:column;

        padding:25px;

        gap:20px;

        display:none;

        box-shadow:
        0 15px 30px rgba(0,0,0,.15);
    }

    .nav-links.active{

        display:flex;
    }

    .nav-links li{

        text-align:center;
    }
}

html,
body{

    width:100%;
    overflow-x:hidden;
}

@media(max-width:900px){

    .logo img{

        width:40px;
        height:40px;
    }

    .logo span{

        font-size:18px;
    }

}

@media(max-width:900px){

    .logo img{

        width:40px;
        height:40px;
    }

    .logo span{

        font-size:18px;
    }

}

.hero-content{
    padding-top:260px;
}