      /* ── Design tokens (inspired by yanethbedoya) ──────────────────── */
      :root {
        --bg:         #f2ebe0;
        --bg-alt:     #faf5ee;
        --surface:    rgba(255,255,255,.82);
        --surface-s:  #ffffff;
        --text:       #1d1a17;
        --muted:      #665d54;
        --line:       rgba(84,64,45,.14);
        --accent:     #6b3f2a;
        --accent-2:   #9b6444;
        --accent-3:   #d4b49a;
        --shadow:     0 24px 80px rgba(61,39,22,.12);
        --r-xl:       32px;
        --r-lg:       24px;
        --r-md:       18px;
        --r-sm:       12px;
        --container:  1200px;
        --serif:      "Cormorant Garamond", Georgia, serif;
        --sans:       "Inter", system-ui, sans-serif;
      }

      /* ── Reset & base ───────────────────────────────────────────────── */
      *, *::before, *::after { box-sizing: border-box; }
      html { scroll-behavior: smooth; }
      body {
        margin: 0;
        font-family: var(--sans);
        font-size: 1rem;
        color: var(--text);
        background:
          radial-gradient(circle at top left,  rgba(210,175,140,.34), transparent 30%),
          radial-gradient(circle at 90% 8%,    rgba(107,63,42,.10),   transparent 22%),
          linear-gradient(180deg, #f5ede0 0%, #ede2d0 100%);
        min-height: 100vh;
      }
      a { color: inherit; text-decoration: none; }
      button, input, select, textarea { font: inherit; }
      img { max-width: 100%; display: block; }
      p  { margin: 0 0 1rem; line-height: 1.7; }
      ul, ol { margin: 0; padding: 0; }
      h1,h2,h3,h4 { margin: 0 0 .75rem; line-height: 1.15; }

      /* ── Layout helpers ─────────────────────────────────────────────── */
      .container {
        width: min(calc(100% - 32px), var(--container));
        margin: 0 auto;
      }
      .page-shell { position: relative; overflow: clip; }

      /* ── Topbar ─────────────────────────────────────────────────────── */
      .topbar {
        background: rgba(29,26,23,.94);
        color: rgba(255,255,255,.82);
        font-size: .82rem;
        letter-spacing: .01em;
      }
      .topbar__inner {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 6px 0;
      }
      .topbar p { margin: 0; }
      .topbar__links { display: flex; align-items: center; gap: 20px; }
      .topbar__links a { opacity: .82; transition: opacity .18s; }
      .topbar__links a:hover { opacity: 1; }

      /* ── Header ─────────────────────────────────────────────────────── */
      .header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(242,235,224,.84);
        border-bottom: 1px solid var(--line);
      }
      .header__inner {
        min-height: 76px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
      .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        font-size: .94rem;
      }
      .brand__mark {
        width: 40px; height: 40px;
        border-radius: 50%;
        background: var(--accent);
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 1.1rem;
        flex-shrink: 0;
      }
      .brand__text strong { display: block; font-size: .95rem; }
      .brand__text small  { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; }
      .brand__logo { height: 62px; width: auto; display: block; }

      .nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
      .nav__link {
        padding: 6px 12px;
        border-radius: var(--r-sm);
        font-size: .875rem;
        font-weight: 500;
        color: var(--muted);
        transition: color .18s, background .18s;
      }
      .nav__link:hover { color: var(--text); background: rgba(107,63,42,.08); }
      .nav__link--cta {
        background: linear-gradient(135deg, #bd2ff6, #7c3aed);
        color: #fff !important;
        padding: 9px 22px;
        font-weight: 700;
        border-radius: 999px;
        box-shadow: 0 3px 14px rgba(189,47,246,.4);
        position: relative;
        overflow: hidden;
      }
      .nav__link--cta::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 55%);
        border-radius: inherit;
        pointer-events: none;
      }
      .nav__link--cta:hover {
        background: linear-gradient(135deg, #c840ff, #8b4cf7) !important;
        box-shadow: 0 6px 22px rgba(189,47,246,.55);
        transform: translateY(-1px);
      }
      .nav__link--whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff !important;
        padding: 9px 18px;
        font-weight: 700;
        border-radius: 999px;
        box-shadow: 0 3px 14px rgba(37,211,102,.35);
        display: inline-flex;
        align-items: center;
        gap: 7px;
      }
      .nav__link--whatsapp:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 22px rgba(37,211,102,.5);
        background: linear-gradient(135deg, #2fde72, #0f9e73) !important;
      }

      /* ── Buttons ────────────────────────────────────────────────────── */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 15px 34px;
        border-radius: 999px;
        font-weight: 700;
        font-size: .97rem;
        cursor: pointer;
        border: none;
        transition: all .22s;
        text-decoration: none;
        letter-spacing: .01em;
        position: relative;
        overflow: hidden;
      }
      .btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 55%);
        border-radius: inherit;
        pointer-events: none;
      }
      .btn--primary {
        background: linear-gradient(135deg, #bd2ff6 0%, #7c3aed 100%);
        color: #fff;
        box-shadow: 0 4px 22px rgba(189,47,246,.45), 0 1px 0 rgba(255,255,255,.15) inset;
      }
      .btn--primary:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 10px 40px rgba(189,47,246,.6), 0 0 0 4px rgba(189,47,246,.18);
        background: linear-gradient(135deg, #c840ff 0%, #8b4cf7 100%);
      }
      .btn--ghost {
        background: rgba(189,47,246,.07);
        border: 2px solid rgba(189,47,246,.35);
        color: #7c3aed;
      }
      .btn--ghost::after { display: none; }
      .btn--ghost:hover { background: rgba(189,47,246,.13); border-color: #bd2ff6; transform: translateY(-1px); }
      .btn--whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
        box-shadow: 0 4px 18px rgba(37,211,102,.4);
      }
      .btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
      .btn--plan {
        background: var(--bg-alt);
        color: var(--accent);
        border: 1.5px solid var(--accent-3);
        border-radius: 999px;
      }
      .btn--plan::after { display: none; }
      .btn--plan:hover { background: var(--surface-s); }
      .btn--full { width: 100%; }

      /* ── Section base ───────────────────────────────────────────────── */
      .section {
        padding: 88px 0;
      }
      .section--soft { background: rgba(255,250,244,.55); }
      .section--accent {
        background: var(--accent);
        color: #fff;
      }
      .section--urgent {
        background: linear-gradient(135deg, #2a1a10, #4a2a18);
        color: #fff;
        border-radius: var(--r-xl);
        margin: 0 16px;
      }

      .eyebrow {
        display: inline-block;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--accent-2);
        margin-bottom: 12px;
      }
      .section--accent .eyebrow  { color: rgba(255,255,255,.7); }
      .section--urgent .eyebrow  { color: var(--accent-3); }

      .section-heading h2 {
        font-family: var(--serif);
        font-size: clamp(1.9rem, 3.5vw, 2.6rem);
        font-weight: 600;
        line-height: 1.12;
        margin-bottom: 1rem;
      }
      .section-heading--center { text-align: center; max-width: 660px; margin: 0 auto 56px; }
      .section-heading p { color: var(--muted); }
      .section--accent .section-heading p,
      .section--urgent .section-heading p { color: rgba(255,255,255,.78); }

      /* ── Hero ───────────────────────────────────────────────────────── */
      .hero { padding: 80px 0 88px; }
      .hero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }
      .hero__copy { display: flex; flex-direction: column; gap: 20px; }
      .hero__copy h1 {
        font-family: var(--serif);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 600;
        line-height: 1.1;
        margin: 0;
      }
      .hero__quote {
        font-family: var(--serif);
        font-style: italic;
        font-size: 1.15rem;
        color: var(--accent-2);
        border-left: 3px solid var(--accent-3);
        padding-left: 16px;
        margin: 0;
        line-height: 1.5;
      }
      .hero__lead { color: var(--muted); font-size: 1.05rem; margin: 0; }
      .hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

      .hero__facts {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        padding: 20px 24px;
        background: var(--surface);
        border-radius: var(--r-md);
        border: 1px solid var(--line);
      }
      .fact { display: flex; align-items: center; gap: 12px; }
      .fact__icon {
        width: 40px; height: 40px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        color: #fff;
      }
      .fact__icon svg { width: 22px; height: 22px; }
      .fact__icon--fuchsia { background: linear-gradient(135deg,#bd2ff6,#7c3aed); box-shadow: 0 3px 10px rgba(189,47,246,.35); }
      .fact__icon--amber   { background: linear-gradient(135deg,#fbbf24,#f59e0b); box-shadow: 0 3px 10px rgba(245,158,11,.35); }
      .fact__icon--teal    { background: linear-gradient(135deg,#2dd4bf,#0d9488); box-shadow: 0 3px 10px rgba(13,148,136,.35); }
      .fact__label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
      .fact__value { font-size: .9rem; font-weight: 600; color: var(--text); }

      /* Hero visual (right side) */
      .hero__visual { position: relative; }
      .hero__video {
        border-radius: var(--r-xl);
        overflow: hidden;
        aspect-ratio: 16/9;
        box-shadow: var(--shadow);
        position: relative;
        z-index: 2;
      }
      .hero__video iframe {
        width: 100%; height: 100%;
        border: none;
        display: block;
      }
      .hero__img-card {
        position: absolute;
        bottom: -24px;
        left: -24px;
        background: var(--surface-s);
        border-radius: var(--r-md);
        padding: 16px 20px;
        box-shadow: 0 12px 40px rgba(61,39,22,.14);
        z-index: 3;
        max-width: 200px;
      }
      .hero__img-card strong { display: block; font-size: .9rem; color: var(--accent); }
      .hero__img-card span  { font-size: .8rem; color: var(--muted); }
      .orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        pointer-events: none;
      }
      .orb--one {
        width: 320px; height: 320px;
        background: rgba(155,100,68,.16);
        top: -60px; right: -60px;
        z-index: 0;
      }
      .orb--two {
        width: 220px; height: 220px;
        background: rgba(210,175,140,.22);
        bottom: 0; left: -40px;
        z-index: 0;
      }

      /* ── Split layout ───────────────────────────────────────────────── */
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }
      .split--reverse { direction: rtl; }
      .split--reverse > * { direction: ltr; }
      .split__text { display: flex; flex-direction: column; gap: 16px; }
      .split__text p { color: var(--muted); }

      /* ── Cards grid ─────────────────────────────────────────────────── */
      .cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 48px;
      }
      .info-card {
        background: var(--surface-s);
        border-radius: var(--r-lg);
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(61,39,22,.07);
        border: 1px solid var(--line);
        transition: transform .2s, box-shadow .2s;
      }
      .info-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(61,39,22,.13); }
      .info-card__media {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        display: block;
      }
      .info-card__body { padding: 22px 24px 26px; }
      .info-card h3 {
        font-family: var(--serif);
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: .5rem;
      }
      .info-card p { font-size: .9rem; color: var(--muted); margin: 0; }

      /* ── Colored icon pills ─────────────────────────────────────────── */
      .icon-pill {
        width: 48px; height: 48px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      .icon-pill svg { width: 24px; height: 24px; }
      .icon-pill--amber   { background: linear-gradient(135deg,#fbbf24,#f59e0b); color:#fff; box-shadow:0 4px 12px rgba(245,158,11,.35); }
      .icon-pill--violet  { background: linear-gradient(135deg,#a78bfa,#7c3aed); color:#fff; box-shadow:0 4px 12px rgba(124,58,237,.35); }
      .icon-pill--emerald { background: linear-gradient(135deg,#34d399,#059669); color:#fff; box-shadow:0 4px 12px rgba(5,150,105,.35); }
      .icon-pill--sky     { background: linear-gradient(135deg,#38bdf8,#0284c7); color:#fff; box-shadow:0 4px 12px rgba(2,132,199,.35); }
      .icon-pill--rose    { background: linear-gradient(135deg,#fb7185,#e11d48); color:#fff; box-shadow:0 4px 12px rgba(225,29,72,.35); }
      .icon-pill--fuchsia { background: linear-gradient(135deg,#e879f9,#bd2ff6); color:#fff; box-shadow:0 4px 12px rgba(189,47,246,.35); }
      .icon-pill--teal    { background: linear-gradient(135deg,#2dd4bf,#0d9488); color:#fff; box-shadow:0 4px 12px rgba(13,148,136,.35); }
      .icon-pill--orange  { background: linear-gradient(135deg,#fb923c,#ea580c); color:#fff; box-shadow:0 4px 12px rgba(234,88,12,.35); }
      .icon-pill--indigo  { background: linear-gradient(135deg,#818cf8,#4338ca); color:#fff; box-shadow:0 4px 12px rgba(67,56,202,.35); }

      /* ── Tiles ──────────────────────────────────────────────────────── */
      .tiles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 32px;
      }
      .tile {
        background: var(--surface-s);
        border-radius: var(--r-md);
        padding: 24px;
        border: 1px solid var(--line);
        transition: transform .2s, box-shadow .2s;
      }
      .tile:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(61,39,22,.1); }
      .tile--accent {
        background: linear-gradient(135deg, #bd2ff6 0%, #7c3aed 100%);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 8px 28px rgba(189,47,246,.35);
      }
      .tile--accent:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(189,47,246,.5); }
      .tile__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
      .tile__icon { width: 32px; height: 32px; color: var(--accent); flex-shrink: 0; }
      .tile--accent .tile__icon { color: rgba(255,255,255,.9); }
      .tile__icon svg { width: 100%; height: 100%; }
      .tile h3 { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; margin: 0; }
      .tile p  { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.55; }
      .tile--accent h3 { color: #fff; }
      .tile--accent p { color: rgba(255,255,255,.82); }

      /* ── Checklist & bullets ────────────────────────────────────────── */
      .checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
      .checklist li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .93rem;
        color: var(--muted);
      }
      .checklist li::before {
        content: "✓";
        flex-shrink: 0;
        width: 22px; height: 22px;
        background: linear-gradient(135deg, #bd2ff6, #7c3aed);
        color: #fff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: .7rem;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(189,47,246,.35);
        margin-top: 1px;
      }
      .bullets { list-style: none; display: flex; flex-direction: column; gap: 8px; }
      .bullets li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .93rem;
        color: var(--muted);
      }
      .bullets li::before { content: "→"; color: var(--accent); font-weight: 700; }

      /* ── Timeline (methodology) ─────────────────────────────────────── */
      .timeline { display: flex; flex-direction: column; gap: 0; }
      .timeline__item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 0;
        border-bottom: 1px solid var(--line);
      }
      .timeline__item:last-child { border-bottom: none; }
      .timeline__icon {
        width: 52px; height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg,#38bdf8,#0284c7);
        border: none;
        display: grid;
        place-items: center;
        flex-shrink: 0;
        color: #fff;
        box-shadow: 0 4px 14px rgba(2,132,199,.35);
      }
      .timeline__icon--2 { background: linear-gradient(135deg,#e879f9,#bd2ff6); box-shadow: 0 4px 14px rgba(189,47,246,.35); }
      .timeline__icon--3 { background: linear-gradient(135deg,#34d399,#059669); box-shadow: 0 4px 14px rgba(5,150,105,.35); }
      .timeline__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
      .timeline__item h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 4px; }
      .timeline__item p  { font-size: .9rem; color: var(--muted); margin: 0; }

      /* ── Pill / badge row ───────────────────────────────────────────── */
      .pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
      .pill-row span, .badge {
        background: rgba(107,63,42,.1);
        color: var(--accent);
        font-size: .78rem;
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 999px;
        letter-spacing: .04em;
      }
      .badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

      /* ── Bonus card ─────────────────────────────────────────────────── */
      .card {
        background: var(--surface-s);
        border-radius: var(--r-lg);
        border: 1px solid var(--line);
        padding: 28px 32px;
      }
      .card h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 16px; }
      .bonus-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
      .bonus-list li { display: flex; align-items: flex-start; gap: 14px; }
      .bonus-tag {
        flex-shrink: 0;
        background: linear-gradient(135deg,#bd2ff6,#7c3aed);
        color: #fff;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 999px;
        margin-top: 2px;
        box-shadow: 0 2px 8px rgba(189,47,246,.35);
      }
      .bonus-tag--2 { background: linear-gradient(135deg,#fbbf24,#f59e0b); box-shadow: 0 2px 8px rgba(245,158,11,.4); }
      .bonus-tag--3 { background: linear-gradient(135deg,#34d399,#059669); box-shadow: 0 2px 8px rgba(5,150,105,.4); }
      .bonus-tag--extra { background: linear-gradient(135deg,#fb7185,#e11d48); box-shadow: 0 2px 8px rgba(225,29,72,.4); }
      .bonus-text { font-size: .9rem; color: var(--muted); line-height: 1.55; }

      /* ── Portrait (maestra) ─────────────────────────────────────────── */
      .portrait {
        position: relative;
        border-radius: var(--r-xl);
        overflow: hidden;
        aspect-ratio: 4/5;
        box-shadow: var(--shadow);
      }
      .portrait img { width: 100%; height: 100%; object-fit: cover; }

      /* ── Key cards (3 keys section) ─────────────────────────────────── */
      .keys-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 32px;
      }
      .key-card {
        background: var(--surface-s);
        border-radius: var(--r-md);
        padding: 24px;
        border: 1px solid var(--line);
      }
      .key-num {
        width: 44px; height: 44px;
        border-radius: 14px;
        background: linear-gradient(135deg,#fbbf24,#f59e0b);
        color: #fff;
        font-family: var(--serif);
        font-size: 1.3rem;
        font-weight: 700;
        display: grid;
        place-items: center;
        margin-bottom: 14px;
        box-shadow: 0 4px 14px rgba(245,158,11,.4);
      }
      .key-num--2 { background: linear-gradient(135deg,#e879f9,#bd2ff6); box-shadow: 0 4px 14px rgba(189,47,246,.4); }
      .key-num--3 { background: linear-gradient(135deg,#34d399,#059669); box-shadow: 0 4px 14px rgba(5,150,105,.4); }
      .key-card h3 { font-family: var(--serif); font-size: 1.05rem; margin-bottom: 8px; }
      .key-card p  { font-size: .88rem; color: var(--muted); margin: 0; }

      /* ── Testimonials ───────────────────────────────────────────────── */
      .testimonial-shell {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 20px;
        max-width: 780px;
        margin: 0 auto;
      }
      .testimonial-shell__control {
        width: 44px; height: 44px;
        border-radius: 50%;
        border: 1.5px solid var(--line);
        background: var(--surface-s);
        color: var(--accent);
        font-size: 1.2rem;
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: all .18s;
        flex-shrink: 0;
      }
      .testimonial-shell__control:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
      .testimonial-card {
        background: var(--surface-s);
        border-radius: var(--r-lg);
        padding: 32px 36px;
        border: 1px solid var(--line);
        box-shadow: 0 4px 24px rgba(61,39,22,.07);
        text-align: center;
      }
      .testimonial-card p {
        font-family: var(--serif);
        font-style: italic;
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text);
        margin-bottom: 20px;
      }
      .testimonial-card strong { display: block; font-size: .9rem; color: var(--accent); }
      .testimonial-card span  { font-size: .82rem; color: var(--muted); }
      .testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
      .testimonial-dot {
        width: 8px; height: 8px;
        border-radius: 50%;
        background: var(--accent-3);
        border: none;
        cursor: pointer;
        transition: background .18s, transform .18s;
        padding: 0;
      }
      .testimonial-dot.is-active { background: var(--accent); transform: scale(1.3); }

      /* ── Price inline ───────────────────────────────────────────────── */
      .price-badge {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: linear-gradient(135deg, #c0120c 0%, #e8190f 100%);
        border-radius: var(--r-md);
        padding: 14px 24px;
        margin: 4px 0;
        border: 1px solid rgba(255,255,255,.15);
        box-shadow: 0 4px 24px rgba(192,18,12,.4), 0 0 0 1px rgba(255,255,255,.1) inset;
      }
      .price-badge__label {
        font-size: .72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: rgba(255,255,255,.75);
        font-family: var(--sans);
      }
      .price-badge__value {
        font-family: var(--sans);
        font-size: 2rem;
        font-weight: 900;
        color: #fff;
        line-height: 1;
        letter-spacing: -.02em;
      }
      .price-badge__original { font-size: .88rem; color: rgba(255,255,255,.5); text-decoration: line-through; }
      .section--accent .price-badge,
      .section--urgent .price-badge { background: linear-gradient(135deg, #c0120c, #e8190f); }

      /* ── CTA row ────────────────────────────────────────────────────── */
      .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
      .cta-row--center { justify-content: center; }
      .price-notice { font-size: .82rem; color: var(--accent-2); font-weight: 500; margin-top: 4px; }

      /* ── Signup section ─────────────────────────────────────────────── */
      .signup-section { padding: 80px 0; }
      .signup-grid {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 56px;
        align-items: start;
      }
      .signup-panel {
        background: var(--surface-s);
        border-radius: var(--r-xl);
        padding: 36px 32px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        position: sticky;
        top: 100px;
      }
      .signup-panel h2 {
        font-family: var(--serif);
        font-size: 1.6rem;
        margin-bottom: 20px;
      }
      .whatsapp-panel {
        background: var(--surface);
        border-radius: var(--r-lg);
        padding: 24px;
        border: 1px solid var(--line);
        margin-top: 16px;
        text-align: center;
      }
      .whatsapp-panel p { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }

      /* ── Form styles ────────────────────────────────────────────────── */
      .form-group { margin-bottom: 14px; }
      .form-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
      .req { color: var(--accent); }
      .form-input {
        width: 100%;
        padding: 10px 14px;
        border: 1.5px solid var(--line);
        border-radius: var(--r-sm);
        background: var(--bg-alt);
        font-size: .92rem;
        color: var(--text);
        transition: border-color .18s;
        outline: none;
      }
      .form-input:focus { border-color: var(--accent-2); }
      .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
      .phone-field { display: grid; grid-template-columns: auto 1fr; gap: 8px; }
      .phone-select {
        padding: 10px 8px;
        border: 1.5px solid var(--line);
        border-radius: var(--r-sm);
        background: var(--bg-alt);
        font-size: .85rem;
        color: var(--text);
        outline: none;
        cursor: pointer;
      }
      .terms-check {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .83rem;
        color: var(--muted);
        margin-bottom: 16px;
        line-height: 1.5;
      }
      .terms-check input { flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
      .terms-check a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
      .form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 10px; }
      .payment-logo { text-align: center; margin: 12px 0; }
      .payment-logo img { width: auto; max-width: 220px; height: auto; display: inline-block; object-fit: contain; }

      /* ── Contact points ─────────────────────────────────────────────── */
      .contact-points {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 20px;
      }
      .contact-points span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .9rem;
        opacity: .9;
      }
      .contact-points span::before { content: "→"; font-weight: 700; }

      /* ── Section image ──────────────────────────────────────────────── */
      .section-img {
        border-radius: var(--r-xl);
        overflow: hidden;
        box-shadow: var(--shadow);
      }
      .section-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

      /* ── Audience visual ────────────────────────────────────────────── */
      .audience-visual {
        border-radius: var(--r-xl);
        overflow: hidden;
        aspect-ratio: 1;
        box-shadow: var(--shadow);
      }
      .audience-visual img { width: 100%; height: 100%; object-fit: cover; }

      /* ── Quote block ────────────────────────────────────────────────── */
      .quote-block {
        background: rgba(107,63,42,.07);
        border-left: 3px solid var(--accent);
        border-radius: 0 var(--r-sm) var(--r-sm) 0;
        padding: 20px 24px;
        margin-top: 24px;
      }
      .quote-block p {
        font-family: var(--serif);
        font-style: italic;
        font-size: 1.05rem;
        color: var(--accent);
        margin: 0;
        line-height: 1.6;
      }

      /* ── Float actions (mobile only) ───────────────────────────────── */
      .mobile-float {
        display: none;
        flex-direction: column;
        position: fixed;
        bottom: calc(28px + env(safe-area-inset-bottom, 0px) + var(--mobile-float-bottom-offset, 0px));
        right: 24px;
        z-index: 40;
        gap: 10px;
        align-items: flex-end;
      }
      .mobile-float__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px 22px;
        border-radius: 999px;
        font-weight: 700;
        font-size: .88rem;
        border: none;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 6px 24px rgba(0,0,0,.22);
        white-space: nowrap;
        transition: transform .18s, box-shadow .18s;
      }
      .mobile-float__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.28); }
      .mobile-float__btn--primary {
        background: linear-gradient(135deg, #bd2ff6, #7c3aed);
        color: #fff;
        box-shadow: 0 4px 20px rgba(189,47,246,.5);
      }
      .mobile-float__btn--whatsapp {
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: #fff;
        box-shadow: 0 4px 20px rgba(37,211,102,.45);
      }

      /* ── Footer ─────────────────────────────────────────────────────── */
      .footer { padding: 40px 0; border-top: 1px solid var(--line); margin-top: 0; }
      .footer__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
      }
      .footer p { margin: 0; font-size: .88rem; color: var(--muted); }
      .footer a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
      .footer__socials { display: flex; gap: 14px; align-items: center; }
      .footer__social {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: var(--surface);
        border: 1px solid var(--line);
        display: grid;
        place-items: center;
        color: var(--muted);
        transition: all .18s;
      }
      .footer__social:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
      .footer__social svg { width: 16px; height: 16px; }

      /* ── Modal overrides ────────────────────────────────────────────── */
      .modal {
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(0,0,0,.55);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
      }
      .modal.d-none { display: none !important; }
      .modal__backdrop { position: absolute; inset: 0; }
      .modal__dialog {
        position: relative;
        background: var(--surface-s);
        border-radius: var(--r-xl);
        width: 100%;
        max-width: 820px;
        max-height: 90vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 40px 120px rgba(0,0,0,.25);
      }
      .modal__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 28px;
        border-bottom: 1px solid var(--line);
        flex-shrink: 0;
      }
      .modal__header p { margin: 0; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; }
      .modal__header h2 { font-family: var(--serif); font-size: 1.4rem; margin: 0; }
      .modal__close {
        background: var(--bg);
        border: 1px solid var(--line);
        border-radius: var(--r-sm);
        padding: 6px 14px;
        font-size: .82rem;
        font-weight: 600;
        color: var(--muted);
        cursor: pointer;
        transition: all .18s;
        flex-shrink: 0;
      }
      .modal__close:hover { background: var(--text); color: #fff; }
      .modal__body {
        overflow-y: auto;
        padding: 24px 28px;
        flex: 1;
      }
      .modal__alert {
        background: rgba(107,63,42,.08);
        border-radius: var(--r-sm);
        padding: 12px 16px;
        font-size: .88rem;
        color: var(--accent);
        margin-bottom: 20px;
        border-left: 3px solid var(--accent);
      }

      /* Plan cards grid in modal */
      .plan-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .plan-card {
        background: var(--bg-alt);
        border-radius: var(--r-md);
        padding: 18px;
        border: 1px solid var(--line);
      }
      .plan-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
      .plan-icon {
        width: 32px; height: 32px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }
      .plan-icon svg { width: 16px; height: 16px; }
      .plan-icon--fuchsia  { background: rgba(217,70,239,.12); color: #c026d3; }
      .plan-icon--amber    { background: rgba(245,158, 11,.12); color: #d97706; }
      .plan-icon--sky      { background: rgba( 14,165,233,.12); color: #0284c7; }
      .plan-icon--emerald  { background: rgba( 16,185,129,.12); color: #059669; }
      .plan-icon--rose     { background: rgba(244, 63, 94,.12); color: #e11d48; }
      .plan-icon--violet   { background: rgba(139, 92,246,.12); color: #7c3aed; }
      .plan-icon--indigo   { background: rgba( 99,102,241,.12); color: #4f46e5; }
      .plan-icon--teal     { background: rgba( 20,184,166,.12); color: #0d9488; }
      .plan-card h3 { font-family: var(--serif); font-size: .95rem; font-weight: 600; margin: 0; }
      .plan-card .sub { font-size: .78rem; color: var(--muted); margin: 4px 0 8px; }
      .plan-card ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
      .plan-card li { font-size: .8rem; color: var(--muted); padding-left: 12px; position: relative; }
      .plan-card li::before { content: "·"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

      /* Signup modal */
      .signup-modal__dialog { max-width: 520px; }

      /* Toast */
      .toast {
        position: fixed;
        bottom: 24px;
        right: 24px;
        background: var(--text);
        color: #fff;
        padding: 12px 20px;
        border-radius: var(--r-sm);
        font-size: .88rem;
        z-index: 300;
        transform: translateY(100px);
        opacity: 0;
        transition: all .3s;
      }
      .toast.is-visible { transform: none; opacity: 1; }

      /* ── Cupos limitados ────────────────────────────────────────────── */
      .section--cupos {
        padding: 80px 0;
        background:
          radial-gradient(ellipse at 20% 50%, rgba(189,47,246,.18), transparent 55%),
          radial-gradient(ellipse at 80% 30%, rgba(124,58,237,.15), transparent 50%),
          linear-gradient(135deg, #0d0520 0%, #1a0a3a 50%, #0d0520 100%);
        margin: 0 16px;
        border-radius: var(--r-xl);
        overflow: hidden;
        position: relative;
      }
      .section--cupos::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 1px 1px, rgba(189,47,246,.12) 1px, transparent 0);
        background-size: 32px 32px;
        pointer-events: none;
      }
      .cupos__inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        max-width: 680px;
        margin: 0 auto;
      }
      .cupos__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(189,47,246,.2);
        color: #e879f9;
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 999px;
        border: 1px solid rgba(189,47,246,.3);
      }
      .cupos__title {
        font-family: var(--serif);
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        margin: 0;
      }
      .cupos__sub {
        color: rgba(255,255,255,.72);
        font-size: 1rem;
        margin: 0;
        line-height: 1.6;
      }
      .cupos__sub strong { color: #fff; }
      .cupos__facts {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 16px 24px;
        background: rgba(255,255,255,.06);
        border-radius: var(--r-md);
        border: 1px solid rgba(255,255,255,.1);
        width: 100%;
      }
      .cupos__fact {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,.85);
        font-size: .9rem;
      }
      .cupos__fact i { color: #e879f9; flex-shrink: 0; }
      .cupos__price { display: flex; flex-direction: column; align-items: center; gap: 4px; }
      .cupos__cta {
        background: linear-gradient(135deg, #bd2ff6, #7c3aed) !important;
        color: #fff !important;
        font-size: 1.05rem;
        padding: 17px 42px;
        box-shadow: 0 6px 30px rgba(189,47,246,.55), 0 0 0 4px rgba(189,47,246,.15);
        border: none;
      }
      .cupos__cta:hover {
        transform: translateY(-2px) scale(1.03) !important;
        box-shadow: 0 12px 44px rgba(189,47,246,.65), 0 0 0 6px rgba(189,47,246,.2) !important;
      }

      /* ── Scroll reveal ──────────────────────────────────────────────── */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
      }
      .reveal.is-visible { opacity: 1; transform: none; }

      /* ── Responsive ─────────────────────────────────────────────────── */
      @media (max-width: 1024px) {
        .signup-grid { grid-template-columns: 1fr; }
        .signup-panel { position: static; }
        .cards-grid, .tiles-grid, .keys-grid { grid-template-columns: repeat(2, 1fr); }
        .plan-grid { grid-template-columns: repeat(2, 1fr); }
      }

      @media (max-width: 768px) {
        .hero__grid, .split { grid-template-columns: 1fr; gap: 36px; }
        .split--reverse { direction: ltr; }
        .hero__visual { order: -1; }
        .hero__img-card { display: none; }
        .cards-grid, .tiles-grid, .keys-grid { grid-template-columns: 1fr; }
        .nav { display: none; }
        .topbar { display: none; }
        .testimonial-shell { grid-template-columns: auto 1fr auto; }
        .plan-grid { grid-template-columns: 1fr; }
        .section { padding: 56px 0; }
        .form-row { grid-template-columns: 1fr; }
        .mobile-float {
          display: flex;
          bottom: calc(16px + env(safe-area-inset-bottom, 0px) + var(--mobile-float-bottom-offset, 0px));
          right: 16px;
          gap: 12px;
        }
        .mobile-float__btn--primary { display: flex; }
        .mobile-float__btn--whatsapp { padding: 14px; border-radius: 50%; width: 54px; height: 54px; }
        .mobile-float__btn--whatsapp .wsp-label { display: none; }
        .hero { padding: 32px 0 36px; }
        .bonos-img { display: none; }
        .testimonial-card { user-select: none; touch-action: pan-y; }
        .tile__head { flex-direction: column; gap: 10px; }
        .tile h3 { font-size: 1.34rem; }
        .tile p { font-size: 1.06rem; }
      }

      @media (max-width: 480px) {
        .testimonial-shell { grid-template-columns: 1fr; }
        .testimonial-shell__control { display: none; }
        .hero__facts { flex-direction: column; gap: 16px; }
        .hero__actions { flex-direction: column; }
      }
