/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
    --bg-dark: #0A0A0A;
    --bg-card: #121212;
    --bg-card-hover: #181818;
    --border-color: #222222;
    --text-light: #FFFFFF;
    --text-body: #ECEAE5;
    --text-muted: #9E9B95;

    --accent-gold: #C5A880;
    --accent-gold-dark: #A58962;
    --accent-gold-light: #DFCDAF;
    --danger: #FF4A4A;

    --nequi-pink: #E0007A;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --wompi-purple: #7415D4;

    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(197, 168, 128, 0.2);
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);

    --header-h: 58px;
    --footer-h: 80px;
}

/* ========================================
   RESET & BASE
   ======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    background-color: var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-sans);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

body.immersive {
    overflow: hidden;
    height: 100%;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ========================================
   UTILITIES
   ======================================== */
.text-accent { color: var(--accent-gold); }
.text-danger { color: var(--danger); }
.italic { font-style: italic; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    outline: none;
    letter-spacing: 0.3px;
}

/* Main CTA button inside slide footer */
.slide-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.slide-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    border-radius: 5px;
    z-index: -1;
    opacity: 0.35;
    filter: blur(12px);
    transition: var(--transition);
}

.slide-cta:not([disabled]):hover {
    background-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.slide-cta:not([disabled]):hover::after {
    opacity: 0.7;
    filter: blur(18px);
}

.slide-cta[disabled] {
    background-color: #2a2a2a;
    color: #555;
    cursor: not-allowed;
}

.slide-cta[disabled]::after { display: none; }

/* Wompi pay button */
.btn-wompi-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: var(--wompi-purple);
    color: #fff;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
}

.btn-wompi-pay:hover {
    background-color: #5a0faa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(116, 21, 212, 0.35);
}

/* WhatsApp pay button */
.btn-whatsapp-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: var(--whatsapp-green);
    color: #fff;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    margin-top: 0.8rem;
}

.btn-whatsapp-pay:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* WhatsApp contact button */
.btn-whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background-color: var(--whatsapp-green);
    color: #fff;
    transition: var(--transition);
}

.btn-whatsapp-contact:hover {
    background-color: var(--whatsapp-dark);
}

/* Back button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #2a2a2a;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.btn-back:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Nequi copy button */
.btn-copy-nequi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(224, 0, 122, 0.4);
    color: var(--accent-gold);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-copy-nequi:hover { color: var(--text-light); border-color: var(--accent-gold); }

/* ========================================
   JOURNEY HEADER
   ======================================== */
.journey-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 200;
    background: rgba(10, 10, 10, 0.92);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.jh-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.jh-logo {
    height: 30px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.85;
}

.jh-progress-wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.jh-progress-track {
    display: flex;
    gap: 4px;
    width: 100%;
}

.jh-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background-color: #2a2a2a;
    transition: background-color 0.5s ease;
    position: relative;
    overflow: hidden;
}

.jh-seg.done {
    background-color: var(--accent-gold-dark);
}

.jh-seg.active {
    background-color: var(--accent-gold);
}

.jh-seg.active::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    to { left: 200%; }
}

.jh-step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ========================================
   SLIDE SYSTEM
   ======================================== */
.journey-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(28px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    background-color: var(--bg-dark);
}

.slide.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
    z-index: 10;
}

.slide.exiting {
    opacity: 0;
    transform: translateY(-28px);
    z-index: 9;
    pointer-events: none;
}

/* Scrollable content area */
.slide-inner {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1.5rem;
}

/* Fixed footer with CTA */
.slide-footer {
    flex-shrink: 0;
    padding: 1rem 1.5rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.s0-footer { padding-bottom: 1.2rem; }

.slide-unlock-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    text-align: center;
}

/* ========================================
   SHARED CONTENT LAYOUTS
   ======================================== */
.s-center-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 1rem 0 1.5rem;
}

.s-narrow { max-width: 560px; }

.s-padded {
    max-width: 820px;
    margin: 0 auto;
    padding: 0.5rem 0 1.5rem;
}

.s-tag {
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.s-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 3px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.s-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.s-title-xl {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.s-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.s-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* ========================================
   SLIDE 0 — INTRO
   ======================================== */
.s0-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100dvh - var(--header-h) - var(--footer-h));
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 0;
}

.event-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.event-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-body);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.event-chip i { color: var(--accent-gold); font-size: 0.78rem; }

.timezone-card {
    width: 100%;
    max-width: 520px;
    margin: -0.7rem 0 1.5rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, rgba(197,168,128,0.12), rgba(255,255,255,0.025));
    border: 1px solid rgba(197,168,128,0.24);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.32);
}

.timezone-title {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--accent-gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.timezone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.timezone-item {
    background-color: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 7px;
    padding: 0.58rem 0.52rem;
}

.timezone-country {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    line-height: 1.15;
    margin-bottom: 0.25rem;
}

.timezone-item strong {
    display: block;
    color: var(--text-light);
    font-size: 1.04rem;
    line-height: 1;
}

.s0-question {
    background: linear-gradient(135deg, #131313, #0e0e0e);
    border: 1px solid rgba(197,168,128,0.18);
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    box-shadow: var(--shadow-glow);
}

.s0-question p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.4;
}

.s0-mobile-hook { display: none; }

.s0-visual { display: flex; justify-content: center; align-items: center; }

.s0-img-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.s-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

.s0-img-border {
    position: absolute;
    top: 12px; left: 12px;
    right: -12px; bottom: -12px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   SLIDE 1 — PAIN POINTS
   ======================================== */
.pain-reveal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: #0e0e0e;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.5;
}

.pain-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pain-item i {
    margin-top: 3px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ========================================
   SLIDE 2 — BEFORE/AFTER SLIDER
   ======================================== */
.slider-wrapper {
    max-width: 380px;
    margin: 1.5rem auto 0;
}

.slider-container {
    width: 100%;
    aspect-ratio: 3/4;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    user-select: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.image-before {
    position: absolute;
    inset: 0;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.image-after {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slider-badge {
    position: absolute;
    bottom: 14px;
    padding: 0.4rem 0.8rem;
    background: rgba(10,10,10,0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    border-radius: 4px;
    z-index: 3;
}

.badge-before { left: 12px; }
.badge-after { right: 12px; }

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--accent-gold);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line { width: 1px; height: 100%; background: var(--accent-gold); }

.handle-button {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 0 15px rgba(197,168,128,0.5);
    transition: transform 0.1s ease;
    gap: 2px;
}

.slider-handle:hover .handle-button { transform: scale(1.1); }

.slider-instruction {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

.slider-instruction i { color: var(--accent-gold); margin-right: 4px; }

.slider-instruction.unlocked-hint {
    color: var(--accent-gold);
}

/* ========================================
   PROCESS PREVIEW
   ======================================== */
.process-preview {
    margin: 1rem 0 1.25rem;
}

.process-preview-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.process-preview-head span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.98rem;
}

.process-preview-head small {
    color: var(--accent-gold);
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.process-step {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 9 / 14;
    background-color: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.36);
}

.process-step img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.95) contrast(1.03);
}

.process-step::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
    pointer-events: none;
}

.process-step figcaption {
    position: absolute;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.62rem;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.15;
}

.process-step figcaption span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.68rem;
    font-weight: 800;
}

/* ========================================
   SLIDE 3 — TEMARIO / MÓDULOS
   ======================================== */
.module-counter-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0.8rem 0 1.2rem;
}

.module-counter-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.module-counter-text span {
    color: var(--accent-gold);
    font-weight: 700;
}

.module-progress-track {
    width: 100%;
    height: 3px;
    background-color: #1e1e1e;
    border-radius: 2px;
    overflow: hidden;
}

.module-progress-fill {
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 2px;
    transition: width 0.4s var(--ease-out);
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.module-card {
    background-color: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.module-card.seen {
    border-color: rgba(197,168,128,0.25);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.module-header:hover { background-color: rgba(255,255,255,0.02); }

.module-num {
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(197,168,128,0.35);
    min-width: 20px;
    transition: color 0.3s ease;
}

.module-card.seen .module-num { color: var(--accent-gold); }

.module-header h3 {
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.3;
}

.module-check-icon {
    font-size: 0.7rem;
    color: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.module-card.seen .module-check-icon { opacity: 1; }

.module-toggle-icon {
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out), color 0.2s;
}

.module-card.open .module-toggle-icon {
    transform: rotate(45deg);
    color: var(--accent-gold);
}

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
}

.module-body p {
    padding: 0 1rem 1rem 2.8rem;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ========================================
   SLIDE 4 — MENTORA
   ======================================== */
.s4-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
    min-height: calc(100dvh - var(--header-h) - var(--footer-h));
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 0;
}

.s4-img-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
    justify-self: end;
}

.s4-img-border {
    position: absolute;
    top: 12px; left: 12px;
    right: -12px; bottom: -12px;
    border: 1px solid var(--accent-gold);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}

.s4-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

.s4-stat { display: flex; flex-direction: column; gap: 2px; }

.stat-n {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-l {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SLIDE 5 — QUÉ INCLUYE
   ======================================== */
.inc-counter-wrap {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0.4rem 0 1.2rem;
}

.inc-counter-wrap span {
    color: var(--accent-gold);
    font-weight: 700;
}

.inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.inc-card {
    position: relative;
    background-color: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.inc-card:hover { transform: translateY(-2px); border-color: #2a2a2a; }

.inc-card.revealed {
    border-color: rgba(197,168,128,0.25);
    cursor: default;
}

.inc-card.revealed:hover { transform: none; }

.inc-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(2px);
    z-index: 2;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: var(--text-muted);
    font-size: 0.78rem;
}

.inc-lock-overlay i {
    font-size: 1.4rem;
    color: #333;
}

.inc-card.revealed .inc-lock-overlay {
    opacity: 0;
    visibility: hidden;
}

.inc-content {
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    flex: 1;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.inc-card.revealed .inc-content { opacity: 1; }

.inc-icon-wrap {
    width: 46px;
    height: 46px;
    background-color: rgba(197,168,128,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.inc-content h3 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}

.inc-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

/* ========================================
   SLIDE 6 — COUNTDOWN / PRECIO
   ======================================== */
.s6-countdown {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1rem 0 1.5rem;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0.7rem;
    border: 1px solid rgba(197,168,128,0.16);
    border-radius: 10px;
    background: radial-gradient(circle at 50% 0%, rgba(197,168,128,0.14), rgba(10,10,10,0.2) 55%);
    box-shadow: var(--shadow-glow);
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
    border: 1px solid rgba(197,168,128,0.12);
    min-width: 68px;
    padding: 0.7rem 0;
    border-radius: 5px;
}

.timer-num {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 2rem;
    color: var(--text-light);
    line-height: 1;
}

.timer-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.s6-price-box {
    background: linear-gradient(135deg, #121212, #0e0e0e);
    border: 1px solid rgba(197,168,128,0.2);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
    margin-bottom: 1.2rem;
}

.price-badge {
    display: inline-block;
    background-color: rgba(197,168,128,0.1);
    border: 1px solid rgba(197,168,128,0.2);
    color: var(--accent-gold);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.price-old-val {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-new-val {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.price-note {
    font-size: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 0.3px;
}

.s6-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.s6-inc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-body);
}

.s6-inc-item i { color: var(--accent-gold); font-size: 0.75rem; }

.s6-urgency {
    font-size: 0.82rem;
    color: var(--accent-gold);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ========================================
   SLIDE 7 — LEAD CAPTURE
   ======================================== */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.lead-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lead-field span {
    color: var(--text-body);
    font-size: 0.82rem;
    font-weight: 600;
}

.lead-field input,
.lead-field select {
    width: 100%;
    min-height: 48px;
    background-color: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    padding: 0.78rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--accent-gold) 50%), linear-gradient(135deg, var(--accent-gold) 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.lead-field input:focus,
.lead-field select:focus {
    border-color: rgba(197,168,128,0.55);
    box-shadow: 0 0 0 3px rgba(197,168,128,0.1);
}

.phone-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 0.55rem;
}

.lead-field .dial-code-input {
    text-align: center;
    font-weight: 700;
    color: var(--accent-gold-light);
}

.lead-error {
    min-height: 1.1rem;
    color: var(--danger);
    font-size: 0.82rem;
    line-height: 1.35;
}

/* ========================================
   SLIDE 7 — ELIGE PAGO
   ======================================== */
.pay-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pay-choice-card {
    background-color: #0e0e0e;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
    overflow: hidden;
}

.pay-choice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pay-choice-card:hover {
    border-color: rgba(197,168,128,0.3);
    background-color: #121212;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.pay-choice-card:hover::before { opacity: 1; }

.pay-choice-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.pay-wompi-icon { background-color: rgba(116,21,212,0.15); color: #9f4ef0; }
.pay-nequi-icon { background-color: rgba(224,0,122,0.12); color: var(--nequi-pink); }

.pay-choice-card h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.2;
}

.pay-choice-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.4;
}

.pay-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0.3rem;
}

.pay-badge-chip {
    font-size: 0.68rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--text-muted);
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

.nequi-chip {
    background-color: rgba(224,0,122,0.1);
    border-color: rgba(224,0,122,0.2);
    color: var(--nequi-pink);
}

.pay-choice-arrow {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}

.pay-choice-card:hover .pay-choice-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   SLIDES 8/9 — PAYMENT FLOWS
   ======================================== */
.pay-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.pay-step {
    display: flex;
    gap: 1rem;
    opacity: 0.35;
    transition: opacity 0.5s ease;
}

.pay-step.active { opacity: 1; }
.pay-step.done { opacity: 0.7; }

.pay-step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.pay-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.pay-step.active .pay-step-num {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark);
}

.pay-step.done .pay-step-num {
    background-color: rgba(197,168,128,0.15);
    border-color: rgba(197,168,128,0.3);
    color: var(--accent-gold);
}

.pay-step-line {
    width: 1px;
    flex: 1;
    min-height: 1.5rem;
    background-color: #1e1e1e;
    margin: 4px 0;
}

.pay-step-body {
    padding: 0.3rem 0 1.5rem;
    flex: 1;
}

.pay-step-body h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.pay-step-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.pay-security-note {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

.pay-security-note i { color: #00C853; }

/* Nequi copy box */
.nequi-copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(57,0,82,0.12);
    border: 1px solid rgba(224,0,122,0.18);
    border-radius: 5px;
    padding: 0.7rem 1rem;
    margin-top: 0.5rem;
    gap: 1rem;
}

.nequi-num-display {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    font-family: var(--font-sans);
}

/* ========================================
   SLIDE 10 — CONFIRMACIÓN
   ======================================== */
.s-confirm {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
}

.confirm-icon-wrap {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    animation: pop-in 0.5s var(--ease-out) both;
}

@keyframes pop-in {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.confirm-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    margin: 1.5rem 0;
    text-align: left;
    background-color: #0d0d0d;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
}

.confirm-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.confirm-detail-item i {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.confirm-detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.confirm-detail-item strong {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.confirm-detail-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.confirm-contact {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.confirm-contact p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.thank-you-body {
    min-height: 100dvh;
    background:
        linear-gradient(180deg, rgba(197,168,128,0.08), transparent 34%),
        var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-sans);
}

.thank-you-page {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.thank-you-card {
    width: min(100%, 560px);
    padding: 2rem 0;
}

.thank-you-logo {
    width: 112px;
    height: auto;
    opacity: 0.86;
    margin-bottom: 1.4rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .s0-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0.5rem 0;
        min-height: auto;
    }

    .s0-visual {
        order: -1;
    }

    .s0-img-wrap {
        max-width: 100%;
        aspect-ratio: auto;
        border-radius: 6px;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
        background-color: #050505;
    }

    .s0-img-wrap img {
        height: auto;
        object-fit: contain;
        object-position: center top;
    }
    .s0-img-border { display: none; }

    .s-title-xl { font-size: 2.8rem; }

    .s4-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        min-height: auto;
    }

    .s4-img-wrap {
        max-width: 100%;
        aspect-ratio: auto;
        border-radius: 6px;
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
        justify-self: auto;
        background-color: #050505;
    }

    .s4-img-wrap img {
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    .s4-img-border { display: none; }
    .s4-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 640px) {
    :root {
        --header-h: 52px;
        --footer-h: 76px;
    }

    html { font-size: 16px; }

    body.immersive { line-height: 1.45; }

    .jh-logo { height: 24px; }
    .jh-step-label { display: none; }

    .s-title { font-size: 1.72rem; margin-bottom: 0.68rem; }
    .s-title-xl { font-size: 2.15rem; margin-bottom: 0.55rem; }

    .slide-inner { padding: 1.18rem 1rem 0.95rem; }
    .slide:not(#s-0) .slide-inner { padding-top: 2.25rem; }
    .slide-footer { padding: 0.72rem 1rem 0.86rem; }
    .s0-footer { padding-bottom: 0.86rem; }

    .slide-cta {
        min-height: 48px;
        padding: 0.78rem 1rem;
        font-size: 1rem;
        max-width: 430px;
    }

    .s0-layout { gap: 0.72rem; padding-top: 0; }
    .s0-text { text-align: center; }
    .s0-text .s-title-xl,
    .s0-text .s-title-xl {
        display: none;
    }
    .s0-text .s-lead {
        display: none;
    }
    .s-tag {
        font-size: 0.66rem;
        letter-spacing: 2.7px;
        margin-bottom: 0.55rem;
    }
    .s-label {
        display: none;
        font-size: 0.64rem;
        letter-spacing: 2px;
        margin-bottom: 0.52rem;
    }
    .s-desc {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.82rem;
    }
    .s0-question { display: none; }
    .s0-mobile-hook {
        display: block;
        max-width: 330px;
        margin: 0.7rem auto 0;
        color: var(--text-muted);
        font-size: 0.96rem;
        line-height: 1.42;
    }
    .event-chips {
        justify-content: center;
        gap: 0.42rem;
        margin-bottom: 0.55rem;
    }
    .event-chip {
        justify-content: center;
        font-size: 0.8rem;
        line-height: 1.2;
        padding: 0.32rem 0.62rem;
        border-radius: 999px;
    }
    .timezone-card {
        max-width: 360px;
        margin: 0 auto 0.62rem;
        padding: 0.62rem;
        border-radius: 9px;
    }
    .timezone-title {
        justify-content: center;
        font-size: 0.72rem;
        margin-bottom: 0.52rem;
    }
    .timezone-grid {
        gap: 0.38rem;
    }
    .timezone-item {
        padding: 0.48rem 0.3rem;
        text-align: center;
    }
    .timezone-country {
        font-size: 0.68rem;
        margin-bottom: 0.2rem;
    }
    .timezone-item strong {
        font-size: 0.98rem;
    }
    .s0-img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: min(52dvh, 468px);
    }
    .s0-img-wrap img {
        width: auto;
        max-width: 100%;
        max-height: min(52dvh, 468px);
    }

    .s-padded, .s-center-content { padding-bottom: 1rem; }
    .s-center-content { padding-top: 0.18rem; }

    /* Temario: bigger tap targets */
    .module-header { padding: 1rem; }

    /* Inclusions: 2 columns */
    .inc-grid { grid-template-columns: repeat(2, 1fr); }
    .inc-card { min-height: 140px; }

    /* Countdown: compact */
    .countdown-timer { gap: 0.5rem; padding: 0.55rem; }
    .timer-segment { min-width: 56px; }
    .timer-num { font-size: 1.6rem; }

    /* Payment choice: stack */
    .pay-choice-grid { grid-template-columns: 1fr; }

    /* s6 includes: single column */
    .s6-includes { grid-template-columns: 1fr; }

    /* slider: less padding */
    .slider-wrapper {
        width: min(100%, 300px);
        margin-top: 0.9rem;
    }

    .slider-container {
        aspect-ratio: 3/4;
        max-height: 39dvh;
    }

    .s4-layout { gap: 0.85rem; padding-top: 0; }
    .s4-img-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: min(40dvh, 350px);
    }
    .s4-img-wrap img {
        width: auto;
        max-width: 100%;
        max-height: min(40dvh, 350px);
    }
    .s4-text .s-desc {
        font-size: 0.98rem;
        margin-bottom: 0.65rem;
    }
    .s4-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.55rem;
        padding-top: 0.9rem;
        margin-top: 0.85rem;
    }
    .stat-n { font-size: 1.35rem; }
    .stat-l { font-size: 0.59rem; letter-spacing: 0.7px; }

    .pain-reveal-list {
        gap: 0.64rem;
        margin-top: 0.9rem;
    }
    .pain-item {
        padding: 0.78rem 0.86rem;
        font-size: 0.98rem;
        line-height: 1.42;
    }

    .module-counter-wrap { margin: 0.5rem 0 0.85rem; }
    .modules-list { gap: 0.42rem; }
    .module-counter-text { font-size: 0.9rem; }
    .module-header h3 { font-size: 1rem; }
    .module-body p {
        font-size: 0.95rem;
        line-height: 1.48;
    }

    .process-preview {
        margin: 0.8rem -1rem 0.95rem 0;
    }
    .process-preview-head {
        padding-right: 1rem;
        margin-bottom: 0.58rem;
    }
    .process-preview-head span { font-size: 0.98rem; }
    .process-preview-head small { font-size: 0.7rem; }
    .process-steps {
        display: flex;
        gap: 0.58rem;
        overflow-x: auto;
        padding: 0 1rem 0.2rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .process-step {
        flex: 0 0 132px;
        aspect-ratio: 9 / 14;
        scroll-snap-align: start;
    }
    .process-step figcaption {
        left: 0.52rem;
        right: 0.52rem;
        bottom: 0.52rem;
        gap: 0.34rem;
        font-size: 0.84rem;
    }
    .process-step figcaption span {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
    }

    .inc-grid {
        gap: 0.62rem;
    }
    .inc-card { min-height: 152px; }
    .inc-content { padding: 0.9rem 0.7rem; }
    .inc-icon-wrap { width: 38px; height: 38px; }
    .inc-content h3 { font-size: 0.94rem; }
    .inc-content p {
        display: block;
        font-size: 0.76rem;
        line-height: 1.36;
    }

    .s6-countdown { margin: 0.75rem 0 0.95rem; }
    .s6-price-box { padding: 1.1rem; margin-bottom: 0.85rem; }
    .price-new-val { font-size: 2rem; }
    .price-display { flex-direction: column; gap: 3px; }

    .pay-choice-grid { margin-top: 1rem; gap: 0.78rem; }
    .lead-form { gap: 0.72rem; margin-top: 0.9rem; }
    .lead-grid { gap: 0.72rem; }
    .lead-field span { font-size: 0.92rem; }
    .lead-field input,
    .lead-field select {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.72rem 0.78rem;
    }
    .phone-row {
        grid-template-columns: 82px 1fr;
        gap: 0.45rem;
    }
    .lead-error { font-size: 0.9rem; }
    .pay-choice-card { padding: 1rem; }
    .pay-choice-card h3 { font-size: 1.12rem; }
    .pay-choice-card p { font-size: 0.94rem; }
    .pay-flow { margin-top: 0.75rem; }
    .pay-step { gap: 0.75rem; }
    .pay-step-body { padding-bottom: 1rem; }
    .pay-step-body h4 { font-size: 1.02rem; }
    .pay-step-body p { font-size: 0.94rem; }
}

@media (max-width: 380px) {
    .s-title { font-size: 1.58rem; }
    .s-title-xl { font-size: 1.95rem; }
    .event-chips { gap: 0.4rem; }
    .event-chip { font-size: 0.74rem; padding: 0.28rem 0.55rem; }
    .timezone-card { padding: 0.55rem; }
    .timezone-grid { gap: 0.28rem; }
    .timezone-country { font-size: 0.62rem; }
    .timezone-item strong { font-size: 0.9rem; }
    .inc-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .lead-grid { grid-template-columns: 1fr; }
    .slider-wrapper { width: min(100%, 286px); }
    .timer-segment { min-width: 50px; }
    .timer-num { font-size: 1.42rem; }
}
