:root {
    /* Fondos */
    --bg-page: #f2f4f8;
    --bg-white: #fafbfc;
    --bg-subtle: #f0f3f8;
    --bg-accent-soft: #eafaf4;
    --bg-dark: #0f2137;
    --bg-dark-2: #162b44;
    /* Texto */
    --tx-heading: #0d1f33;
    --tx-body: #374151;
    --tx-muted: #6b7c94;
    --tx-white: #ffffff;
    /* Marca */
    --green: #00c48a;
    --green-dark: #009e70;
    --green-light: #e6fbf4;
    --green-mid: #b3f0dc;
    --blue-accent: #0ea5e9;
    --orange: #f97316;
    --purple: #7c3aed;
    /* Gradientes */
    --grad-green: linear-gradient(135deg, #00c48a 0%, #00b4d8 100%);
    --grad-hero: linear-gradient(160deg, #0d1f33 0%, #1a3a5c 60%, #0f4d40 100%);
    --grad-orange: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
    --grad-purple: linear-gradient(135deg, #7c3aed 0%, #0ea5e9 100%);
    /* Sombras */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.16);
    --shadow-green: 0 8px 28px rgba(0,196,138,.35);
    /* Bordes */
    --border: rgba(0,0,0,.09);
    --border-soft: rgba(0,0,0,.06);
    /* Radios */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
    background: var(--bg-page);
    color: var(--tx-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1240px, 94vw);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Animaciones ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.06)
    }
}

@keyframes shimmer {
    0% {
        background-position: 200% center
    }
    100% {
        background-position: -200% center
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: .4;
        transform: scale(.85)
    }
    50% {
        opacity: 1;
        transform: scale(1)
    }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
 ═══════════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

/* Brand */
.brand-logo {
    width: 82px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-radius: var(--r-md);
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, border-color .2s;
}

    .brand-logo:hover {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(0,196,138,.12);
    }

    .brand-logo-icon-shell {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .brand-logo-image {
    width: 90%;
    height: 90%;
    object-fit: contain;
    padding: 2px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--tx-heading);
    letter-spacing: -.2px;
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--green-dark);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav a {
        padding: 7px 14px;
        border-radius: 100px;
        font-size: 14px;
        font-weight: 600;
        color: var(--tx-muted);
        transition: color .2s, background .2s;
    }

        .nav a:hover {
            color: var(--tx-heading);
            background: var(--bg-subtle);
        }

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--tx-heading);
    font-size: 20px;
    cursor: pointer;
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: all .22s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad-green);
    color: #fff;
    box-shadow: var(--shadow-green);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 36px rgba(0,196,138,.45);
    }

.btn-dark {
    background: var(--tx-heading);
    color: #fff;
    box-shadow: var(--shadow-md);
}

    .btn-dark:hover {
        transform: translateY(-2px);
        background: #1a3050;
    }

.btn-ghost {
    background: transparent;
    color: var(--tx-heading);
    border: 1.5px solid var(--border);
}

    .btn-ghost:hover {
        background: var(--bg-subtle);
        border-color: rgba(0,0,0,.15);
    }

.btn-white {
    background: #fff;
    color: var(--tx-heading);
    box-shadow: var(--shadow-md);
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: var(--r-md);
}

/* ═══════════════════════════════════════════════════════════════
   HERO — fondo oscuro para máximo contraste con secciones claras
 ═══════════════════════════════════════════════════════════════ */
.hero {
    background: var(--grad-hero);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

    /* Decoración geométrica hero */
    .hero::before {
        content: '';
        position: absolute;
        top: -120px;
        right: -120px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,196,138,.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Badge promo */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    background: rgba(0,196,138,.15);
    border: 1px solid rgba(0,196,138,.4);
    border-radius: var(--r-md);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

    .hero-badge::before {
        content: '';
        width: 8px;
        height: 8px;
        background: var(--green);
        border-radius: 50%;
        animation: dotPulse 2s ease-in-out infinite;
        flex-shrink: 0;
    }

    .hero-badge.expired {
        background: rgba(249,115,22,.12);
        border-color: rgba(249,115,22,.35);
    }

        .hero-badge.expired::before {
            background: var(--orange);
        }

.hero-badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .hero-badge-content strong {
        font-size: 14px;
        font-weight: 700;
        color: #d1fdf0;
    }

    .hero-badge-content span {
        font-size: 12px;
        color: #9ee8cc;
    }

.hero-promo-days {
    min-width: 72px;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: center;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    flex-shrink: 0;
}

    .hero-promo-days b {
        display: block;
        font-family: 'Sora';
        font-size: 26px;
        line-height: 1;
        color: #fff;
        font-weight: 800;
    }

    .hero-promo-days span {
        font-size: 9px;
        letter-spacing: .8px;
        color: #9ee8cc;
        text-transform: uppercase;
        font-weight: 700;
    }

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}

    .hero h1 .highlight {
        background: var(--grad-green);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.hero-chips span {
        padding: 6px 14px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        color: rgba(255,255,255,.8);
    }

    .hero-chips span.highlight.geo-local {
        background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
        color: #92400e !important;
        border-color: rgba(245, 158, 11, 0.5);
        font-weight: 700;
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat b {
    display: block;
    font-family: 'Sora';
    font-size: 26px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
    display: block;
}

.hero-local-promo {
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--r-md);
}

.hero-local-promo strong {
    font-size: 14px !important;
    line-height: 1.3;
}

/* Visual hero */
.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    backdrop-filter: blur(4px);
}

    .hero-card img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

.hero-card-overlay {
    padding: 20px 24px;
    background: rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.08);
}

    .hero-card-overlay p {
        font-size: 13px;
        color: rgba(255,255,255,.65);
        margin: 0;
        line-height: 1.55;
    }

/* ═══════════════════════════════════════════════════════════════
   TRUST BADGES — fondo blanco entre hero oscuro y secciones claras
 ═══════════════════════════════════════════════════════════════ */
.trust-section {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-soft);
    padding: 28px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--tx-heading);
    transition: border-color .2s, box-shadow .2s;
}

    .trust-badge:hover {
        border-color: var(--green);
        box-shadow: 0 0 0 3px rgba(0,196,138,.1);
    }

.trust-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   SECCIONES — sistema de alternancia de fondos
 ═══════════════════════════════════════════════════════════════ */
section {
    padding: 88px 0;
    scroll-margin-top: 80px;
}

.sec-white {
    background: var(--bg-white);
}

.sec-subtle {
    background: var(--bg-subtle);
}

.sec-accent {
    background: var(--bg-accent-soft);
}

.sec-dark {
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

    .section-header .label {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 14px;
        background: var(--green-light);
        border: 1px solid var(--green-mid);
        border-radius: 100px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .8px;
        text-transform: uppercase;
        color: var(--green-dark);
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(26px, 3.5vw, 38px);
        font-weight: 700;
        color: var(--tx-heading);
        line-height: 1.2;
        margin-bottom: 14px;
        letter-spacing: -.3px;
    }

    .section-header p {
        font-size: 16px;
        color: var(--tx-muted);
        line-height: 1.7;
    }

/* ═══════════════════════════════════════════════════════════════
   CARDS
 ═══════════════════════════════════════════════════════════════ */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(0,196,138,.3);
    }

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.ci-green {
    background: var(--green-light);
    border: 1px solid var(--green-mid);
}

.ci-orange {
    background: #fff4ed;
    border: 1px solid #fed7aa;
}

.ci-purple {
    background: #f3f0ff;
    border: 1px solid #c4b5fd;
}

.ci-blue {
    background: #e0f2fe;
    border: 1px solid #7dd3fc;
}

.ci-dark {
    background: var(--bg-dark);
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
}

.card h3 {
    font-family: 'Sora';
    font-size: 17px;
    font-weight: 700;
    color: var(--tx-heading);
    margin-bottom: 8px;
}

.card p {
    font-size: 14px;
    color: var(--tx-muted);
    margin: 0;
    line-height: 1.65;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--r-sm);
    margin-bottom: 16px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   SOLUCION — tarjetas "antes/después" con contraste claro
 ═══════════════════════════════════════════════════════════════ */
.before-card {
    border-color: #fecaca;
    background: #fff9f9;
}

    .before-card .card-icon {
        background: #fee2e2;
        border-color: #fecaca;
    }

.after-card {
    border-color: var(--green-mid);
    background: var(--bg-accent-soft);
    box-shadow: 0 0 0 1px rgba(0,196,138,.15), var(--shadow-md);
}

    .after-card .card-icon {
        background: var(--green-light);
        border-color: var(--green-mid);
    }

    .after-card h3 {
        color: var(--green-dark);
    }

/* ═══════════════════════════════════════════════════════════════
   PROCESOS — carrusel
 ═══════════════════════════════════════════════════════════════ */
.processes-track-wrap {
    overflow: hidden;
    border-radius: var(--r-lg);
}

.processes-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.process-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
}

    .process-slide img {
        height: 185px;
        width: 100%;
        object-fit: cover;
        border-radius: var(--r-sm);
        margin-bottom: 14px;
    }

.processes-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.processes-nav {
    display: flex;
    gap: 8px;
}

.process-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    color: var(--tx-heading);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all .2s;
}

    .process-btn:hover:not(:disabled) {
        background: var(--green);
        border-color: var(--green);
        color: #fff;
        box-shadow: var(--shadow-green);
    }

    .process-btn:disabled {
        opacity: .35;
        cursor: not-allowed;
    }

.processes-dots {
    display: flex;
    gap: 6px;
}

.process-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: var(--border);
    cursor: pointer;
    transition: all .2s;
}

    .process-dot.active {
        background: var(--green);
        width: 20px;
        border-radius: 4px;
    }

/* ═══════════════════════════════════════════════════════════════
   MÓDULOS — layout 2 columnas con lista y beneficios
 ═══════════════════════════════════════════════════════════════ */
.modules-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.modules-title {
    font-family: 'Sora';
    font-size: 28px;
    font-weight: 700;
    color: var(--tx-heading);
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -.2px;
}

.modules-desc {
    font-size: 15px;
    color: var(--tx-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.module-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    margin: 0 0 24px;
}

    .module-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--r-sm);
        font-size: 13px;
        font-weight: 600;
        color: var(--tx-heading);
        box-shadow: var(--shadow-sm);
        transition: all .2s;
    }

        .module-list li:hover {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(0,196,138,.1);
        }

        .module-list li .check {
            color: var(--green);
            font-size: 13px;
            font-weight: 800;
            flex-shrink: 0;
        }

.highlight-box {
    padding: 18px 20px;
    background: linear-gradient(135deg, #e6fbf4, #e0f5ff);
    border: 1px solid var(--green-mid);
    border-radius: var(--r-md);
    font-size: 14px;
    color: var(--tx-heading);
}

    .highlight-box strong {
        color: var(--green-dark);
    }

.benefits-list {
    list-style: none;
}

    .benefits-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        margin-bottom: 10px;
        box-shadow: var(--shadow-sm);
        transition: all .2s;
    }

        .benefits-list li:hover {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(0,196,138,.08);
        }

    .benefits-list .b-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--green-light);
        border: 1px solid var(--green-mid);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
    }

    .benefits-list strong {
        display: block;
        font-size: 14px;
        font-weight: 700;
        color: var(--tx-heading);
        margin-bottom: 3px;
    }

    .benefits-list span {
        font-size: 13px;
        color: var(--tx-muted);
    }

/* ═══════════════════════════════════════════════════════════════
   STEPS — implantación
 ═══════════════════════════════════════════════════════════════ */
.step-card {
    position: relative;
    padding-left: 70px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--grad-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora';
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    box-shadow: var(--shadow-green);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tx-heading);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 13px;
    color: var(--tx-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   PLANES
 ═══════════════════════════════════════════════════════════════ */
.plans-promo-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #e6fbf4, #e0f7fa);
    border: 1.5px solid var(--green-mid);
    border-radius: var(--r-md);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

    .plans-promo-strip strong {
        font-size: 14px;
        color: var(--tx-heading);
        font-weight: 800;
    }

    .plans-promo-strip span {
        font-size: 13px;
        color: var(--tx-muted);
    }

    .plans-promo-strip.expired {
        background: #fff8f3;
        border-color: #fed7aa;
    }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all .3s;
}

    .plan-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

    .plan-card.featured {
        border-color: var(--green);
        box-shadow: 0 0 0 2px rgba(0,196,138,.2), var(--shadow-xl);
        transform: scale(1.03);
        background: linear-gradient(160deg, #f0fdf9, #fff);
    }

        .plan-card.featured:hover {
            transform: scale(1.03) translateY(-6px);
        }

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: var(--grad-green);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: var(--shadow-green);
}

.plan-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tx-muted);
    margin-bottom: 6px;
}

.plan-title {
    font-family: 'Sora';
    font-size: 26px;
    font-weight: 800;
    color: var(--tx-heading);
    margin-bottom: 8px;
}

.plan-description {
    font-size: 13px;
    color: var(--tx-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plan-price {
    margin-bottom: 24px;
}

    .plan-price .old-price {
        font-size: 13px;
        color: var(--tx-muted);
        text-decoration: line-through;
        margin-bottom: 4px;
        display: block;
    }

    .plan-price .promo-label {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 8px;
        padding: 3px 10px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .5px;
        text-transform: uppercase;
        background: var(--green-light);
        border: 1px solid var(--green-mid);
        color: var(--green-dark);
    }

        .plan-price .promo-label.expired {
            background: #fff4ed;
            border-color: #fed7aa;
            color: #c2410c;
        }

    .plan-price .amount {
        font-family: 'Sora';
        font-size: 40px;
        font-weight: 800;
        color: var(--tx-heading);
    }

    .plan-price .currency {
        font-size: 20px;
        color: var(--green-dark);
        font-weight: 700;
    }

    .plan-price .period {
        font-size: 13px;
        color: var(--tx-muted);
    }

.plan-features {
    list-style: none;
    margin-bottom: 24px;
}

    .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 0;
        border-bottom: 1px solid var(--border-soft);
        font-size: 13px;
        color: var(--tx-body);
        line-height: 1.5;
    }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 800;
            flex-shrink: 0;
            font-size: 13px;
            margin-top: 1px;
        }

.plan-cta {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   FORMULARIO DE CONTACTO
 ═══════════════════════════════════════════════════════════════ */
.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lead-content h2 {
    font-family: 'Sora';
    font-size: 30px;
    font-weight: 700;
    color: var(--tx-heading);
    margin-bottom: 14px;
    letter-spacing: -.2px;
}

.lead-content p {
    font-size: 15px;
    color: var(--tx-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.lead-benefits {
    list-style: none;
}

    .lead-benefits li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        font-size: 14px;
        color: var(--tx-body);
        border-bottom: 1px solid var(--border-soft);
    }

        .lead-benefits li:last-child {
            border-bottom: none;
        }

        .lead-benefits li::before {
            content: '✓';
            color: var(--green);
            font-weight: 800;
        }

.lead-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.lead-form-title {
    font-family: 'Sora';
    font-size: 18px;
    font-weight: 700;
    color: var(--tx-heading);
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .form-group.full {
        grid-column: 1 / -1;
    }

    .form-group label {
        font-size: 12px;
        font-weight: 700;
        color: var(--tx-heading);
        text-transform: uppercase;
        letter-spacing: .4px;
    }

    .form-group input, .form-group select, .form-group textarea {
        padding: 12px 14px;
        background: var(--bg-subtle);
        border: 1.5px solid var(--border);
        border-radius: var(--r-sm);
        color: var(--tx-heading);
        font-size: 14px;
        font-family: inherit;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }

        .form-group input::placeholder, .form-group textarea::placeholder {
            color: var(--tx-muted);
        }

    .form-group select {
        background: var(--bg-subtle);
        cursor: pointer;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--green);
            background: var(--bg-white);
            box-shadow: 0 0 0 3px rgba(0,196,138,.12);
        }

    .form-group textarea {
        min-height: 96px;
        resize: vertical;
    }

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.form-note {
    font-size: 11px;
    color: var(--tx-muted);
    margin-top: 12px;
    line-height: 1.5;
}

    .form-note a {
        color: var(--green-dark);
    }

.form-status {
    font-size: 13px;
    margin-top: 10px;
    min-height: 18px;
}

    .form-status.error {
        color: #dc2626;
    }

    .form-status.success {
        color: var(--green-dark);
    }

/* ═══════════════════════════════════════════════════════════════
   FAQ
 ═══════════════════════════════════════════════════════════════ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s;
}

    .faq-item:hover {
        border-color: rgba(0,196,138,.3);
    }

    .faq-item summary {
        padding: 18px 20px;
        cursor: pointer;
        font-weight: 700;
        font-size: 14px;
        color: var(--tx-heading);
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            font-size: 20px;
            color: var(--green);
            flex-shrink: 0;
            font-weight: 400;
            transition: transform .2s;
        }

    .faq-item[open] summary::after {
        transform: rotate(45deg);
    }

    .faq-item[open] {
        border-color: var(--green-mid);
    }

.faq-item p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--tx-muted);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.testimonial p {
    font-size: 15px;
    font-style: italic;
    color: var(--tx-body);
    line-height: 1.65;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--tx-heading);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--tx-muted);
}

/* ═══════════════════════════════════════════════════════════════
   CTA FINAL — banda oscura
 ═══════════════════════════════════════════════════════════════ */
.cta-band {
    background: var(--grad-hero);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,196,138,.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .cta-band h2 {
        font-family: 'Sora';
        font-size: clamp(26px,3.5vw,40px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        letter-spacing: -.3px;
        position: relative;
    }

    .cta-band p {
        font-size: 16px;
        color: rgba(255,255,255,.65);
        margin-bottom: 32px;
        max-width: 520px;
        margin-inline: auto;
        position: relative;
    }

    .cta-band .cta-actions {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        position: relative;
    }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
 ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--bg-dark);
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #fff;
}

.footer-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 4px;
}

.footer-info {
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

    .footer-info a {
        color: var(--green);
    }

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: 12px;
        color: rgba(255,255,255,.4);
        transition: color .2s;
    }

        .footer-links a:hover {
            color: var(--green);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.3);
}

/* WhatsApp */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--grad-green);
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    box-shadow: var(--shadow-green);
    transition: transform .25s, box-shadow .25s;
}

    .wa-float:hover {
        transform: scale(1.04) translateY(-2px);
        box-shadow: 0 16px 40px rgba(0,196,138,.5);
    }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
 ═══════════════════════════════════════════════════════════════ */
@media (max-width:1024px) {
    .hero-inner, .modules-grid, .lead-grid {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0 64px;
    }

    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }

    .process-slide {
        flex-basis: calc((100% - 20px) / 2);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .plan-card.featured {
        transform: none;
    }

        .plan-card.featured:hover {
            transform: translateY(-6px);
        }
}

@media (max-width:768px) {
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        padding: 10px 0;
    }

    .brand-subtitle {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav {
        grid-column: 1/-1;
        display: none;
        flex-direction: column;
        gap: 4px;
        padding-top: 8px;
    }

        .nav.open {
            display: flex;
        }

        .nav a {
            background: var(--bg-subtle);
            border-radius: 10px;
            text-align: center;
        }

    .header-cta {
        grid-column: 1/-1;
        display: none;
        width: 100%;
    }

        .header-cta.open {
            display: inline-flex;
        }

    .hero {
        padding: 60px 0 48px;
    }

        .hero h1 {
            font-size: 28px;
        }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-card img {
        height: 220px;
    }

    section {
        padding: 60px 0;
    }

    .grid-3, .grid-4, .module-list, .faq-grid, .form-grid {
        grid-template-columns: 1fr;
    }

    .process-slide {
        flex-basis: 100%;
    }

    .processes-controls {
        flex-direction: column;
        align-items: center;
    }

    .trust-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-badge {
        justify-content: center;
    }

    .wa-float {
        right: 12px;
        bottom: 16px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
