@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* =========================
   RESET Y BASE
========================= */

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Inter', sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* =========================
   FONDO Y EFECTOS GLOBALES
========================= */

body::before{
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('./assets/fondo2gif.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .10;
    mix-blend-mode: screen;
    z-index: -4;
}

body::after{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 70% 35%, rgba(230,31,132,.08), transparent 30%),
        radial-gradient(circle at 80% 60%, rgba(195,209,4,.06), transparent 35%);
    z-index: -1;
}

#bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient{
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(230,31,132,.12), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(195,209,4,.10), transparent 45%),
        radial-gradient(circle at center, rgba(184,177,216,.08), transparent 60%);
    z-index: -2;
}

/* =========================
   HEADER Y NAVEGACION
========================= */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(0,0,0,.15);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.logo{
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: #C3D104;
    text-decoration: none;
    display: inline-block;
    transition: letter-spacing .35s ease, color .35s ease, transform .35s ease;
}

.logo:hover{
    letter-spacing: 6px;
    color: #E61F84;
    transform: translateY(-1px);
}

nav{
    display: flex;
    gap: 40px;
}

nav a{
    position: relative;
    color: #B8B1D8;
    text-decoration: none;
    transition: color .3s;
    padding-bottom: 4px;
}

nav a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #C3D104;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

nav a:hover{
    color: #C3D104;
}

nav a:hover::after{
    transform: scaleX(1);
}

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

.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 8vw 220px;
}

.hero-content{
    max-width: 650px;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tag{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(195,209,4,.3);
    background: rgba(195,209,4,.08);
    color: #C3D104;
    margin-bottom: 10px;
    font-size: .75rem;
    letter-spacing: 2px;
    line-height: 1;
    width: fit-content;
}

.hero h1{
    font-size: clamp(3rem,7vw,6rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -4px;
    margin: 0;
}

.hero p{
    margin: 0;
    max-width: 520px;
    line-height: 1.8;
    color: #B8B1D8;
}

.buttons{
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.primary,
.secondary{
    position: relative;
    overflow: hidden;
    padding: 18px 34px;
    border-radius: 999px;
    text-decoration: none;
    transition: .3s;
    font-weight: 700;
}

.primary{
    background: #E61F84;
    color: white;
    box-shadow: 0 0 30px rgba(230,31,132,.5);
}

.primary:hover{
    transform: translateY(-4px);
    box-shadow: 0 6px 40px rgba(230,31,132,.65);
}

.secondary{
    border: 1px solid rgba(184,177,216,.2);
    color: #B8B1D8;
    background: rgba(184,177,216,.08);
}


/* =========================
   CATAPULTAZO
========================= */

.catapultazo{
    position: relative;
    padding: 60px 4vw;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden; /* 🔥 CLAVE: evita que se monte sobre otras secciones */
    isolation: isolate; /* 🔥 evita mezcla de z-index entre secciones */
}

/* BLOQUE CASI PEGADO (tipo marco fino) */
.catapultazo-bg{
    position: absolute;
    inset: 0;

    margin: 0;              /* ❌ quitamos el “marco interno” */
    border-radius: 0;    

    background: rgba(184, 177, 216, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 0;
}

/* CONTENIDO MÁS AJUSTADO */
.catapultazo-editorial{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px; /* más compacto aún */
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px; /* menos separación interna */
    align-items: center;
}

.catapultazo-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.catapultazo-texto{
    max-width: 700px;
    margin-top: 0;
}

.catapultazo-texto p{
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: none;
    line-height: 1.05;
}

.catapultazo-titulo{
    margin-bottom: 24px;
}

.catapultazo-titulo h2{
    background: none;
    padding: 0;
    border-radius: 0;
    color: #C3D104;
}

.catapultazo-imagen{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.catapultazo-vector{
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

.catapultazo h2,
.catapultazo h3{
    color: #C3D104;
}

/* =========================
   IMPACTO
========================= */

/* =========================
   IMPACTO (REFORMADO)
========================= */

.impacto{
    padding: 140px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* BLOQUE PRINCIPAL */
.impacto-layout{
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #C3D104;
    border-radius: 24px;
    overflow: hidden;
    align-items: stretch;
}

/* IZQUIERDA */
.impacto-izquierda{
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    color: #E61F84;
}

.impacto-izquierda h2{
    margin: 0;
    color: #E61F84;
    line-height: 1.05;
}

/* TEXTO */

.impacto-texto{

    font-size: 1.1rem;
    color: #B8B1D8;

}

.impacto-texto-izquierda p{
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E61F84;
}

/* DERECHA (IMAGEN) */
.impacto-derecha{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
}

.impacto-cuadro{
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impacto-caja{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   COMPONENTES (ABAJO)
========================= */

.impacto-componentes{
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impacto-card{
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: .3s ease;
}

.impacto-card:hover{
    transform: translateY(-6px);
    border-color: #C3D104;
}

.impacto-card h3{
    color: #E61F84;
    margin-bottom: 10px;
}

.impacto-card p{
    color: #B8B1D8;
    font-size: 1rem;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px){
    .impacto-layout{
        grid-template-columns: 1fr;
    }

    .impacto-izquierda{
        padding: 50px 30px;
    }

    .impacto-componentes{
        grid-template-columns: 1fr;
    }
}

/* =========================
   COMO ES / CONCEPTOS CLAVE
========================= */

.como-es-content{
    position: relative;
    z-index: 10;
    text-align: center;
    color: #C3D104;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
}

.titulo-seccion{
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bajada-seccion{
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 50px;
}

.conceptos-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    perspective: 1000px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.concepto-card{
    min-height: 220px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    width: 320px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.concepto-img{
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E61F84, #C3D104);
    margin-bottom: 15px;
    transform: translateZ(20px);
}

.concepto-card h3{
    margin: 10px 0;
    letter-spacing: 1px;
    color: #C3D104;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.concepto-card p{
    font-size: 0.95rem;
    opacity: 0.8;
}

.concepto-card:hover{
    transform: rotateX(8deg) rotateY(-8deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: #E61F84;
}

.concepto-resumen{
    color: white;
    text-align: center;
    opacity: .8;
    line-height: 1.5;
}

.concepto-detalle{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .5s ease,
        opacity .3s ease;
}

.concepto-card.activa .concepto-detalle{
    max-height: 300px;
    opacity: 1;
    margin-top: 15px;
}

.concepto-detalle p{
    color: #B8B1D8;
    line-height: 1.6;
    text-align: left;
}

.concepto-card.activa{
    border-color: #E61F84;
    box-shadow: 0 0 30px rgba(230,31,132,.2);
    transform: translateY(-5px);
}

.concepto-card.visible{
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.concepto-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(
        600px circle at var(--x, 50%) var(--y, 50%),
        rgba(230, 31, 132, 0.25),
        transparent 40%
    );
    opacity: var(--glow-opacity, 0);
    transition: opacity 0.2s ease;
    pointer-events: none;
}

section{
    position: relative;
    z-index: 1;
}

#catapultazo{
    margin-bottom: 80px;
}

#como-es{
    margin-top: 80px;
}

.como-es{
    position: relative;
    min-height: 100vh;
    padding: 180px 8vw;
    overflow: hidden;
}

.parallax-layer{
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fondo{
    background: radial-gradient(
            circle at center,
            rgba(230,31,132,.12),
            transparent 60%
        );
}

.medio{
    backdrop-filter: blur(20px);
}

.frente{
    z-index: 2;
}


/* =========================
   EXPERIMENTAL
========================= */

.experimental{
    background: radial-gradient(
        circle at center,
        rgba(230,31,132,0.12),
        rgba(0,0,0,1) 70%
    );
    min-height: 100vh;
    padding: 140px 8vw;
    display: flex;
    align-items: center;
}

.titulo-experimental{
    color: #E61F84;
    margin-bottom: 20px;
    text-align: left;
    max-width: 300px;
}

.texto-experimental{
    max-width: 600px;
    font-size: 1.1rem;
    color: #B8B1D8;
    line-height: 1.8;
}

.experimental-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    align-items: center;
}

.experimental-left{
    display: flex;
    justify-content: flex-start;
}

.experimental-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.btn-experimental{
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    background: rgba(230, 31, 132, 0.15);
    border: 1px solid rgba(230, 31, 132, 0.4);
    color: #E61F84;
    transition: 0.3s;
    width: fit-content;
}

.btn-experimental:hover{
    transform: translateY(-3px);
    background: rgba(230, 31, 132, 0.25);
}

.experimental h2,
.experimental h3{
    color: #E61F84;
}

p,
.hero p,
.pix-texto,
.impacto-texto,
.impacto-texto-izquierda p,
.concepto-resumen,
.concepto-detalle p,
.texto-experimental,
.catapultazo-texto p{
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.75;
    margin: 0;
}

/* =========================
   COMO FUNCIONA
========================= */

.como-funciona{
    position: relative;
    min-height: 100vh;
    padding: 100px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(230,31,131,.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.como-funciona-content{
    position: relative;
    z-index: 10;
    text-align: center;
    color: #B8B1D8;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   STEPPER — CÓMO FUNCIONA
========================= */

.stepper{
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px;
    margin-top: 60px;
    text-align: left;
    width: 92vw;
    max-width: 1500px;
    margin-left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.stepper-nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.stepper-btn{
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 22px;
    border-radius: 12px;
    transition: background .25s, transform .2s;
    width: 100%;
    text-align: left;
}

.stepper-btn:hover{
    background: rgba(255,255,255,.05);
    transform: translateX(4px);
}

.stepper-btn.active{
    background: rgba(230,31,132,.12);
    border: 1px solid rgba(230,31,132,.35);
}

.stepper-num{
    font-size: 1.6rem;
    font-weight: 900;
    color: rgba(184,177,216,.4);
    line-height: 1;
    transition: color .25s;
}

.stepper-btn.active .stepper-num,
.stepper-btn.done .stepper-num{
    color: #C3D104;
}

.stepper-label{
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(184,177,216,.5);
    transition: color .25s;
}

.stepper-btn.active .stepper-label{
    color: #E61F84;
}

.stepper-btn.done .stepper-label{
    color: #B8B1D8;
}

.stepper-line{
    width: 2px;
    height: 28px;
    margin-left: 34px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
}

.stepper-content{
    position: relative;
}

.stepper-panel{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-sizing: border-box;
    overflow-y: auto;
}

.stepper-panel.active{
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.stepper-panel-num{
    font-size: 4rem;
    font-weight: 900;
    color: rgba(195,209,4,.15);
    line-height: 1;
    letter-spacing: -3px;
}

.stepper-panel h3{
    font-size: 1.8rem;
    color: #C3D104;
    margin: 0;
}

.stepper-panel p{
    color: #B8B1D8;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 70ch;
    overflow-wrap: break-word;
}

.stepper-next-btn{
    position: relative;
    overflow: hidden;
    margin-top: auto;
    align-self: flex-start;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(230,31,132,.5);
    background: rgba(230,31,132,.1);
    color: #E61F84;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: .3s;
    letter-spacing: .5px;
}

.stepper-next-btn:hover{
    background: rgba(230,31,132,.25);
    transform: translateX(4px);
}

.stepper-restart{
    border-color: rgba(195,209,4,.5);
    background: rgba(195,209,4,.08);
    color: #C3D104;
}

.stepper-restart:hover{
    background: rgba(195,209,4,.18);
    transform: translateX(0) rotate(-4deg);
}

@media (max-width:768px){
    .stepper{
        grid-template-columns: 1fr;
    }

    .stepper-nav{
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        padding-bottom: 6px;
    }

    .stepper-line{
        width: 28px;
        height: 2px;
        margin: 0;
        align-self: center;
    }

    .stepper-content{
        min-height: 320px;
    }
}

/* =========================
   PIX IFRAME WRAPPER
========================= */

.pix-iframe-wrapper{
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 8px 40px rgba(0,0,0,.4);
}

/* =========================
   GALERIA
========================= */

.galeria{
    position: relative;
    padding: 60px 4vw;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;
}

.galeria-bg{
    position: absolute;
    inset: 0;
    margin: 12px;
    border-radius: 22px;

    background: #C3D104;

    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 0;
}

.galeria-layout{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

.galeria-izquierda h2{
    color: #E61F84;
}

.galeria-derecha{
    width: 100%;
}

/* =========================
   PIX
========================= */

.pix{
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: 120px 10%;
    color: white;
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

.pix-container{
    position: relative;
    z-index: 10;
    width: 100%;
    display: block;
    min-height: 400px;
}

.pix-layout{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

.pix-header{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 700px;
}

.pix-titulo{
    color: #C3D104;
    text-transform: uppercase;
    line-height: .9;
    margin-bottom: 30px;
}

.pix-texto{
    color: #B8B1D8;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

.pix-placeholder{
    width: 100%;
    height: 600px;
    border-radius: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E61F84;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}


.pix h2,
.pix h3{
    color: #C3D104;
}

/* =========================
   TIPOGRAFIA UNIFICADA
========================= */

h2,
h3{
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

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

footer{
    padding: 120px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.05);
}

footer h3{
    color: #C3D104;
    margin-bottom: 20px;
}

footer p{
    color: #B8B1D8;
}

.footer{
    position: relative;
    width: 100%;
    padding: 70px 8vw 25px;
    color: #B8B1D8;
    background: rgba(10, 8, 18, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(184, 177, 216, 0.15);
    overflow: hidden;
}

.footer::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(230, 31, 132, 0.22), transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(195, 209, 4, 0.14), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(184, 177, 216, 0.10), transparent 55%);
    pointer-events: none;
}

.footer-content{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 2fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 20px;
    border-right: 1px solid rgba(184, 177, 216, 0.12);
}

.footer-logo{
    font-size: 2rem;
    letter-spacing: 3px;
    color: #fff;
    text-shadow: 0 0 12px rgba(230, 31, 132, 0.5),
        0 0 30px rgba(195, 209, 4, 0.12);
}

.footer-tagline{
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
}

.footer-status{
    margin-top: 10px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: rgba(195, 209, 4, 0.85);
}

.footer-status::before{
    content: "● ";
    color: #C3D104;
}

.footer-description{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-description p{
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(184, 177, 216, 0.85);
}

.footer-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-chip{
    font-size: 0.75rem;
    padding: 6px 10px;
    border: 1px solid rgba(184, 177, 216, 0.2);
    border-radius: 999px;
    color: rgba(184, 177, 216, 0.8);
    background: rgba(255, 255, 255, 0.03);
}

.footer-meta{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.footer-column{
    padding: 12px 14px;
    border: 1px solid rgba(184, 177, 216, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.footer-column h4{
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgba(184, 177, 216, 0.9);
    border-bottom: 1px solid rgba(184, 177, 216, 0.12);
    padding-bottom: 6px;
}

.footer-column a{
    display: block;
    font-size: 0.85rem;
    text-decoration: none;
    color: rgba(184, 177, 216, 0.7);
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.footer-column a:hover{
    color: #E61F84;
    transform: translateX(4px);
}

.footer-column p{
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: rgba(184, 177, 216, 0.7);
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.footer-column:nth-child(3) p{
    display: block;
    padding-left: 2px;
}

.footer-bottom{
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid rgba(184, 177, 216, 0.12);
}

.footer-bottom p{
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* =========================
   RESPONSIVE / MEDIA QUERIES
========================= */

@media(max-width:900px) {

    header{
        padding: 20px;
    }

    nav{
        display: none;
    }

    .hero{
        padding: 0 25px 160px;
    }

    .catapultazo{
        padding: 160px 25px;
    }

    .impacto{
        padding: 160px 0;
    }

    .catapultazo-editorial{
        grid-template-columns: 1fr;
    }

}

@media (max-width:1100px) {

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

    .concepto-card{
        width: 100%;
        max-width: 500px;
    }

    .pasos-grid{
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width:768px) {

    .conceptos-grid{
        grid-template-columns: 1fr;
    }

    .impacto-layout{
        grid-template-columns: 1fr;
    }

    .galeria-layout{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pasos-grid{
        grid-template-columns: 1fr;
    }

    .experimental-layout{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .catapultazo-editorial{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .catapultazo-texto{
        margin-top: 0;
    }

    .catapultazo-titulo{
        justify-content: flex-start;
    }

}

@media (max-width:900px) {

    .pix-layout{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pix-placeholder{
        height: 350px;
    }

}

@media (max-width: 900px) {

    .footer-content{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand{
        border-right: none;
        border-bottom: 1px solid rgba(184, 177, 216, 0.12);
        padding-bottom: 20px;
    }

    .footer-meta{
        grid-template-columns: 1fr;
    }

}

/* =========================
   GALERIA (SLIDER)
========================= */

.impacto-gallery{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

/* TRACK SLIDE */
.galeria-track{
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .6s ease;
}

/* SLIDES */
.galeria-img{
    width:100%;
    min-width:100%;
    flex:0 0 100%;
    height:500px;
    object-fit:cover;
    display:block;
}

/* BOTONES */
.galeria-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
}

.galeria-btn:hover{
    background: rgba(0,0,0,0.75);
}

.prev{ left: 12px; }
.next{ right: 12px; }

/* INDICADORES (DOTS) */
.galeria-dots{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.galeria-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0;
    transition: transform .25s ease, background .25s ease;
}

.galeria-dot:hover{
    background: rgba(255,255,255,0.6);
}

.galeria-dot.activo{
    background: #E61F84;
    transform: scale(1.25);
}

/* =========================
   TRANSICIÓN ENTRE PÁGINAS
========================= */

.page-transition{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #0B081A;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.page-transition.active{
    opacity: 1;
    pointer-events: auto;
}

.page-transition-loader{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 3px solid rgba(184,177,216,.2);
    border-top-color: #E61F84;
    border-right-color: #C3D104;
    animation: page-transition-spin .8s linear infinite;
}

@keyframes page-transition-spin{
    to{ transform: rotate(360deg); }
}

.page-transition-text{
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8B1D8;
}

/* =========================
   MICROINTERACCIONES — CURSOR
========================= */

@media (hover: hover) and (pointer: fine){
    body{
        cursor: none;
    }
}

.cursor-dot,
.cursor-ring{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-dot{
    width: 6px;
    height: 6px;
    background: #E61F84;
    transition: opacity .2s ease;
}

.cursor-ring{
    width: 34px;
    height: 34px;
    border: 1px solid rgba(184,177,216,.5);
    transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease, opacity .2s ease;
}

.cursor-ring.cursor-hover{
    width: 56px;
    height: 56px;
    border-color: #C3D104;
    background: rgba(195,209,4,.08);
}

@media (hover: none), (pointer: coarse){
    .cursor-dot,
    .cursor-ring{
        display: none;
    }
}

/* =========================
   BARRA DE PROGRESO DE SCROLL
========================= */

.scroll-progress{
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #E61F84, #C3D104);
    z-index: 9997;
    transition: width .1s linear;
}

/* =========================
   RIPPLE EN BOTONES
========================= */

.ripple{
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255,255,255,.45);
    animation: ripple-anim .6s ease-out forwards;
    pointer-events: none;
}

@keyframes ripple-anim{
    to{
        transform: scale(2.8);
        opacity: 0;
    }
}

/* =========================
   TARJETAS — MICRO TILT
========================= */

.concepto-card{
    transition: transform .25s ease, box-shadow .25s ease;
}

/* =========================
   MICROINTERACCIONES — REVEAL EN SCROLL (TÍTULOS)
========================= */

.titulo-seccion,
.bajada-seccion,
.pix-titulo,
.pix-texto,
.titulo-experimental,
.texto-experimental{
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.titulo-seccion.visible,
.bajada-seccion.visible,
.pix-titulo.visible,
.pix-texto.visible,
.titulo-experimental.visible,
.texto-experimental.visible{
    opacity: 1;
    transform: translateY(0);
}

.bajada-seccion.visible,
.pix-texto.visible,
.texto-experimental.visible{
    transition-delay: .12s;
}

/* =========================
   MICROINTERACCIONES — STATUS FOOTER (PULSO)
========================= */

.footer-status::before{
    display: inline-block;
    animation: status-pulse 1.8s ease-in-out infinite;
}

@keyframes status-pulse{
    0%, 100%{ opacity: 1; transform: scale(1); }
    50%{ opacity: .35; transform: scale(.7); }
}

/* =========================
   MICROINTERACCIONES — FOOTER CHIPS
========================= */

.footer-chip{
    transition: transform .25s ease, color .25s ease, border-color .25s ease, background .25s ease;
}

.footer-chip:hover{
    transform: translateY(-3px);
    color: #C3D104;
    border-color: rgba(195,209,4,.4);
    background: rgba(195,209,4,.08);
}

/* =========================
   MICROINTERACCIONES — GALERÍA ZOOM
========================= */

.galeria-track{
    overflow: hidden;
}

.galeria-img{
    transition: transform .5s ease;
}

.galeria-img:hover{
    transform: scale(1.04);
}

/* =========================
   MICROINTERACCIONES — NAV LINK ACTIVO
========================= */

nav a.nav-active{
    color: #C3D104;
}

nav a.nav-active::after{
    transform: scaleX(1);
}

/* =========================
   MICROINTERACCIONES — BOTÓN VOLVER ARRIBA
========================= */

.back-to-top{
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(184,177,216,.25);
    background: rgba(11,8,26,.65);
    backdrop-filter: blur(10px);
    color: #B8B1D8;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, color .3s ease, border-color .3s ease;
}

.back-to-top.visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover{
    color: #E61F84;
    border-color: rgba(230,31,132,.45);
    transform: translateY(-3px);
}

/* =========================
   MICROINTERACCIONES — STEPPER BTN PULSO AL CLICK
========================= */

.stepper-btn{
    position: relative;
    overflow: visible;
}

.stepper-btn::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 1px solid rgba(195,209,4,.6);
    opacity: 0;
    transform: scale(.85);
    pointer-events: none;
}

.stepper-btn.pulse::before{
    animation: stepper-pulse .5s ease-out;
}

@keyframes stepper-pulse{
    0%{ opacity: .8; transform: scale(.9); }
    100%{ opacity: 0; transform: scale(1.08); }
}

/* =========================
   MICROINTERACCIONES — HERO PARALLAX SUTIL
========================= */

.hero-content{
    will-change: transform;
    transition: transform .2s ease-out;
}