  :root {
    /* Brand */
    --blue: #35B6D5;
    --blue-soft: #5BC8E2;
    --blue-dim: #1F8AA3;
    --bg: #0F1923;
    --bg-2: #142231;
    --bg-3: #1B2D40;
    --line: #22384F;
    --line-soft: #1A2A3D;
    --text: #F2F6FA;
    --text-2: #B6C5D4;
    --text-3: #7E92A6;
    --red: #DF3B45;
    --green: #10A957;
    --amber: #FDA018;

    /* Type scale */
    --type-display: 108px;
    --type-title: 68px;
    --type-h2: 52px;
    --type-subtitle: 40px;
    --type-body: 28px;
    --type-small: 22px;
    --type-tiny: 18px;

    /* Spacing */
    --pad-x: 110px;
    --pad-top: 96px;
    --pad-bottom: 96px;
    --gap-title: 56px;
    --gap-item: 28px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;
  }

  html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: var(--text);
    font-family: "Nunito Sans", system-ui, sans-serif;
    font-feature-settings: "ss01", "cv11";
  }

  /* Ícones Material Symbols (classe-base; antes vinha do assets/fonts/material-symbols.css) */
  .material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }

  deck-stage { background: #000; }

  /* ---------- Slide base ---------- */
  .slide {
    background: var(--bg);
    color: var(--text);
    padding: var(--pad-top) var(--pad-x) var(--pad-bottom);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  /* Subtle grid pattern overlay on every slide */
  .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(53,182,213,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(53,182,213,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }
  .slide > * { position: relative; z-index: 1; }

  /* ---------- Top chrome (logo + slide id) ---------- */
  .chrome {
    position: absolute;
    top: 40px;
    left: var(--pad-x);
    right: var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
    color: var(--text-3);
    font-size: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .chrome .logo {
    display: flex;
    align-items: center;
  }
  .chrome .logo img {
    height: 36px;
    width: auto;
    display: block;
  }
  .chrome .pageno { font-variant-numeric: tabular-nums; }
  .chrome .pageno b { color: var(--blue); font-weight: 700; }

  /* ---------- Reusable bits ---------- */
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 26px;
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--blue);
  }
  h1.title {
    font-size: var(--type-title);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0;
    color: var(--text);
    text-wrap: balance;
  }
  h1.title .accent { color: var(--blue); }
  p.lede {
    font-size: var(--type-subtitle);
    line-height: 1.25;
    font-weight: 400;
    color: var(--text-2);
    margin: 32px 0 0;
    max-width: 1400px;
    text-wrap: balance;
  }
  .footer-note {
    position: absolute;
    bottom: 56px;
    left: var(--pad-x);
    right: var(--pad-x);
    color: var(--text-3);
    font-size: 24px;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .footer-note::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(53,182,213,0.18);
    flex-shrink: 0;
  }

  /* ===========================================
     SLIDE 1 — CAPA
     =========================================== */
  .s-capa {
    padding: 0;
    background: var(--bg);
  }
  .s-capa .capa-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    height: 100%;
  }
  .s-capa .capa-left {
    padding: 120px var(--pad-x) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .s-capa .capa-left .badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid var(--line);
    background: rgba(53,182,213,0.06);
    border-radius: var(--radius-pill);
    color: var(--blue);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 40px;
  }
  .s-capa .capa-left .badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue);
  }
  .s-capa h1 {
    font-size: var(--type-display);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.96;
    margin: 0;
    color: var(--text);
  }
  .s-capa h1 .q { color: var(--blue); }
  .s-capa .subtitle {
    font-size: var(--type-subtitle);
    color: var(--text-2);
    margin-top: 44px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 760px;
    text-wrap: balance;
  }
  .s-capa .capa-left .meta {
    margin-top: 96px;
    display: flex;
    gap: 56px;
    color: var(--text-3);
    font-size: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .s-capa .capa-left .meta b { color: var(--text); display: block; margin-top: 8px; font-size: 26px; letter-spacing: 0; text-transform: none; }

  .s-capa .capa-right {
    position: relative;
    background:
      linear-gradient(135deg, rgba(15,25,35,0.25) 0%, rgba(15,25,35,0.9) 100%),
      url("assets/img/capa-cozinha.webp") center/cover;
    overflow: hidden;
  }
  .s-capa .capa-right::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 28%);
  }

  /* HUD overlay on kitchen image */
  .hud {
    position: absolute;
    z-index: 2;
    background: rgba(15,25,35,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(53,182,213,0.35);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    color: var(--text);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  }
  .hud .h-label {
    font-size: 24px;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
  }
  .hud .h-label .pulse { width:8px; height:8px; border-radius:50%; background: var(--blue); box-shadow: 0 0 0 0 var(--blue); animation: pulse 1.8s infinite; }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(53,182,213,0.6); }
    70%  { box-shadow: 0 0 0 12px rgba(53,182,213,0); }
    100% { box-shadow: 0 0 0 0 rgba(53,182,213,0); }
  }
  .hud .h-val { font-size: 52px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
  .hud .h-val small { font-size: 24px; color: var(--text-3); font-weight: 500; letter-spacing: 0; }
  .hud .h-sub { font-size: 24px; color: var(--text-3); margin-top: 8px; }
  .hud {
    min-width: 280px;
  }
  .hud-1 { top: 130px; right: 80px; }
  .hud-2 { top: 440px; right: 220px; }
  .hud-3 { bottom: 160px; right: 80px; }

  /* connecting lines */
  .scan {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, transparent 49.7%, rgba(53,182,213,0.28) 50%, transparent 50.3%);
    background-size: 100% 220px;
    pointer-events: none;
    opacity: 0.25;
    z-index: 1;
  }

  /* ===========================================
     SLIDE 2 — PROBLEMA
     =========================================== */
  .three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
  }
  .pcard {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .pcard .num {
    font-size: 24px;
    color: var(--text-3);
    font-weight: 700;
    letter-spacing: 0.18em;
    font-variant-numeric: tabular-nums;
  }
  .pcard .icon-wrap {
    width: 76px; height: 76px;
    border-radius: var(--radius-md);
    background: rgba(53,182,213,0.10);
    border: 1px solid rgba(53,182,213,0.30);
    display: grid; place-items: center;
    color: var(--blue);
    margin: 28px 0 32px;
  }
  .pcard .icon-wrap .material-symbols-outlined { font-size: 40px; }
  .pcard h3 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--text);
  }
  .pcard p {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-2);
    font-weight: 400;
    margin: 0;
  }
  .pcard .big-pct {
    font-size: 72px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-top: 24px;
    font-variant-numeric: tabular-nums;
  }

  /* ===========================================
     SLIDE 3 — FRONTEIRA (Before/After cards)
     =========================================== */
  .frontier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
    flex: 1;
    min-height: 0;
  }
  .frontier-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }
  .frontier-card.is-now {
    border-color: rgba(53,182,213,0.55);
    background: linear-gradient(160deg, rgba(53,182,213,0.13) 0%, var(--bg-2) 55%);
    box-shadow: 0 0 60px rgba(53,182,213,0.10);
  }

  /* Hero image — grows to fill available space; both cards identical height via grid row */
  .fc-hero-img {
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }
  .fc-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* Before text — compact, never grows */
  .fc-before {
    flex-shrink: 0;
    padding: 16px 32px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    background: rgba(0,0,0,0.18);
  }
  .fc-era {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-3);
    font-weight: 800;
  }
  .fc-before-copy {
    font-size: 18px;
    color: var(--text-3);
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
  }

  /* Pivot / frontier divider */
  .fc-pivot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 36px;
    border-top: 1px solid rgba(53,182,213,0.55);
    border-bottom: 1px solid rgba(53,182,213,0.55);
    background: linear-gradient(90deg,
      rgba(53,182,213,0.04) 0%,
      rgba(53,182,213,0.11) 50%,
      rgba(53,182,213,0.04) 100%
    );
    box-shadow: 0 0 24px rgba(53,182,213,0.08);
    gap: 14px;
  }
  .fc-pivot .fc-year {
    font-size: 17px;
    letter-spacing: 0.18em;
    color: rgba(53,182,213,0.60);
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .fc-frontier-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 0.30em;
    font-weight: 900;
    color: var(--blue);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(53,182,213,0.55);
    white-space: nowrap;
    pointer-events: none;
  }
  .fc-pivot .fc-arrow {
    color: var(--blue);
    font-size: 24px;
    flex-shrink: 0;
  }

  /* After section — compact, never grows */
  .fc-after {
    flex-shrink: 0;
    padding: 18px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .fc-name {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    line-height: 1.1;
  }
  .fc-after-copy {
    font-size: 19px;
    color: var(--text-2);
    line-height: 1.4;
    margin: 0;
  }

  /* Conclusion bar */
  .conclusion-bar {
    margin-top: 36px;
    padding: 32px 48px;
    background: linear-gradient(90deg, rgba(53,182,213,0.12), rgba(53,182,213,0.02));
    border-left: 4px solid var(--blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .conclusion-bar .ch {
    color: var(--blue);
    font-size: 48px;
  }
  .conclusion-bar p {
    font-size: 30px;
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text);
  }
  .conclusion-bar p b { color: var(--blue); font-weight: 800; }

  /* ===========================================
     SLIDE 4 — MAPA DA FRONTEIRA
     =========================================== */
  /* ── SLIDE 4 — MAPA DA FRONTEIRA ── */
  @keyframes bar-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
  @keyframes label-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .mapa-chart {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 26px;
    flex: 1;
  }
  .mapa-row {
    position: relative;
    height: 58px;
    z-index: 1;
    --bar-dur: 1.1s;
  }
  .mapa-row.mapa-hero { height: 82px; z-index: 2; --bar-dur: 1.7s; }
  .mapa-bar {
    position: absolute;
    top: 7px; bottom: 7px; left: 0;
    width: var(--bar-w, 40%);
    background: var(--bar-c, var(--bg-3));
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    transform-origin: left center;
    transform: scaleX(0); /* hidden until slide activates */
  }
  .s-mapa[data-deck-active] .mapa-bar {
    animation: bar-grow var(--bar-dur) cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--bar-delay, 0s);
  }
  .mapa-hero .mapa-bar {
    top: 0; bottom: 0;
    background: linear-gradient(90deg,
      rgba(53,182,213,0.06) 0%,
      rgba(53,182,213,0.22) 50%,
      rgba(53,182,213,0.54) 100%
    );
    border: 1px solid rgba(53,182,213,0.45);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    box-shadow: 0 0 60px rgba(53,182,213,0.14), 0 0 120px rgba(53,182,213,0.07);
  }
  /* Label sits inside the bar, right-aligned to just before the arrow tip */
  .mapa-bar-label {
    position: absolute;
    left: var(--bar-w, 40%);
    top: 50%;
    transform: translate(-100%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 22px;
    pointer-events: none;
    z-index: 5;
    white-space: nowrap;
    opacity: 0;
  }
  .s-mapa[data-deck-active] .mapa-bar-label {
    animation: label-fade 0.3s ease forwards;
    animation-delay: calc(var(--bar-delay, 0s) + var(--bar-dur, 1.1s) - 0.12s);
  }
  .mapa-n {
    width: 28px; height: 28px;
    border-radius: 6px;
    background: rgba(0,0,0,0.22);
    display: grid; place-items: center;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.88);
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
  }
  .mapa-feat {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    letter-spacing: -0.01em;
  }
  /* Hero: name + subtitle stacked, positioned just past the frontier */
  .mapa-hero-group {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-left: 14px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
  }
  .s-mapa[data-deck-active] .mapa-hero-group {
    animation: label-fade 0.4s ease forwards;
    animation-delay: calc(var(--bar-delay, 0s) + var(--bar-dur, 1.7s) - 0.12s);
  }
  .mapa-hero-name {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mapa-hero-name .mapa-n {
    width: 36px; height: 36px;
    font-size: 18px;
    background: rgba(53,182,213,0.25);
    border: 1px solid rgba(53,182,213,0.5);
    color: var(--blue);
    box-shadow: 0 0 10px rgba(53,182,213,0.25);
  }
  .mapa-hero-name .mapa-feat {
    font-size: 26px;
    font-weight: 900;
    color: var(--blue);
    text-shadow: 0 0 22px rgba(53,182,213,0.65);
  }
  .mapa-hero-sub {
    font-size: 16px;
    font-weight: 600;
    color: rgba(53,182,213,0.65);
    letter-spacing: 0.01em;
    padding-left: 46px;
    white-space: nowrap;
  }
  /* Frontier line at 58% × 1700px = 986px from chart left */
  .mapa-frontier-line {
    position: absolute;
    left: 986px;
    top: 0; bottom: 0;
    width: 2px;
    background: rgba(53,182,213,0.65);
    box-shadow: 0 0 14px rgba(53,182,213,0.45), 0 0 28px rgba(53,182,213,0.18);
    z-index: 10;
    pointer-events: none;
  }
  .mapa-frontier-line::before {
    content: "FRONTEIRA";
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 19px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap;
    font-family: "Nunito Sans", system-ui, sans-serif;
  }
  .mapa-beyond-zone {
    position: absolute;
    left: 988px;
    top: 0; bottom: 0; right: 0;
    background: linear-gradient(90deg, rgba(53,182,213,0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }

  /* ===========================================
     SLIDE 5 — QUEM SOMOS (ex-04)
     =========================================== */
  .quem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
    flex: 1;
  }
  .qcard {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .qcard.span-2 { grid-column: span 2; }
  .qcard.span-3 { grid-column: span 3; }
  .qcard.is-hero {
    background: linear-gradient(140deg, rgba(53,182,213,0.18), rgba(53,182,213,0.04));
    border-color: rgba(53,182,213,0.55);
  }
  .qcard .q-icon {
    width: 60px; height: 60px;
    border-radius: 12px;
    background: rgba(53,182,213,0.12);
    display: grid; place-items: center;
    color: var(--blue);
    margin-bottom: 24px;
  }
  .qcard.is-hero .q-icon { background: var(--blue); color: var(--bg); }
  .qcard .q-icon .material-symbols-outlined { font-size: 32px; }
  .qcard h4 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.015em;
    color: var(--text);
    line-height: 1.15;
  }
  .qcard.is-hero h4 { color: var(--blue); font-size: 32px; }
  .qcard p {
    font-size: 24px;
    line-height: 1.4;
    color: var(--text-2);
    margin: 0;
  }
  .qcard .q-tag {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 24px;
    color: var(--blue);
    background: rgba(53,182,213,0.12);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ===========================================
     SLIDE 5 — DIFERENCIAL (VS Split)
     =========================================== */
  .vs-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 28px;
    flex: 1;
    align-items: stretch;
  }
  .vs-card {
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .vs-card.vs-others {
    background: var(--bg-2);
    border: 1px solid var(--line);
    opacity: 0.75;
  }
  .vs-card.vs-cf {
    background: linear-gradient(145deg, rgba(53,182,213,0.18) 0%, rgba(53,182,213,0.04) 60%);
    border: 1px solid rgba(53,182,213,0.55);
    box-shadow: 0 0 80px rgba(53,182,213,0.10), inset 0 1px 0 rgba(53,182,213,0.20);
  }
  .vs-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 44px;
  }
  .vs-label .vs-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .vs-card.vs-others .vs-label { color: var(--text-3); }
  .vs-card.vs-others .vs-dot { background: var(--text-3); }
  .vs-card.vs-cf .vs-label { color: var(--blue); }
  .vs-card.vs-cf .vs-dot { background: var(--blue); box-shadow: 0 0 12px var(--blue); }
  .vs-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 26px;
    font-weight: 500;
    color: var(--text);
  }
  .vs-row:last-child { border-bottom: none; }
  .vs-card.vs-others .vs-row { color: var(--text-3); }
  .vs-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid; place-items: center;
    flex-shrink: 0;
    font-size: 22px;
  }
  .vs-icon.no {
    background: rgba(223,59,69,0.12);
    color: #FF6B73;
    font-weight: 700;
  }
  .vs-icon.yes {
    background: var(--blue);
    color: var(--bg);
    font-weight: 900;
  }
  .vs-icon.yes .material-symbols-outlined,
  .vs-icon.no .material-symbols-outlined { font-size: 22px; }
  /* Center VS divider */
  .vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 36px;
    gap: 16px;
  }
  .vs-divider .vs-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--line) 30%, var(--line) 70%, transparent);
  }
  .vs-divider .vs-badge {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--text-3);
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 10px 20px;
  }

  /* ===========================================
     SLIDE 6 — RESULTADOS
     =========================================== */
  .cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 72px;
  }
  .case {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
  }
  .case::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--blue);
    transform-origin: left;
  }
  .case .brand {
    font-size: 24px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .case .brand-name {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 36px;
  }
  .case .bignum {
    font-size: 108px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-variant-numeric: tabular-nums;
  }
  .case .bignum small { font-size: 56px; font-weight: 700; }
  .case .num-sub {
    font-size: 24px;
    color: var(--text-2);
    margin-top: 16px;
    line-height: 1.3;
    font-weight: 500;
  }
  .case .quote {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-size: 24px;
    line-height: 1.4;
    color: var(--text);
    font-weight: 500;
  }
  .case .quote::before {
    content: "\201C";
    color: var(--blue);
    font-size: 64px;
    line-height: 0;
    margin-right: 6px;
    vertical-align: -16px;
    font-family: Georgia, serif;
  }

  /* ===========================================
     SLIDE 7 — PROMESSA
     =========================================== */
  .s-promessa h1 {
    font-size: 82px;
    font-weight: 900;
    letter-spacing: -0.028em;
    line-height: 1.12;
    margin: 0;
    text-wrap: balance;
    max-width: 1700px;
  }
  .s-promessa h1 .accent { color: var(--blue); }
  .s-promessa h1 .underline {
    color: var(--blue);
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 90px;
    position: relative;
  }
  .step {
    padding: 32px 28px 32px 36px;
    border-left: 2px solid var(--line);
    position: relative;
  }
  .step:first-child { border-left-color: var(--blue); }
  .step .stage {
    font-size: 24px;
    color: var(--blue);
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
  }
  .step .label {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.01em;
  }
  .step .when {
    font-size: 24px;
    color: var(--text-3);
    margin-top: 12px;
  }
  .step::before {
    content: "";
    position: absolute;
    top: 32px;
    left: -7px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--line);
  }
  .step:first-child::before { background: var(--blue); box-shadow: 0 0 0 4px rgba(53,182,213,0.25); }

  /* ===========================================
     SLIDE 8 — PLANOS
     =========================================== */
  .anchor-q {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 8px 0 0;
    text-wrap: balance;
  }
  .anchor-q .accent { color: var(--blue); }
  .anchor-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 32px;
    margin-top: 48px;
    flex: 1;
    align-items: stretch;
  }
  .anchor-card {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 40px 36px;
    display: flex;
    flex-direction: column;
  }
  .anchor-card .ac-label {
    font-size: 23px;
    color: var(--text-3);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 26px;
    line-height: 1.3;
  }
  .anchor-card .ac-math {
    font-size: 26px;
    color: var(--text-2);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 14px;
  }
  .anchor-card .ac-math b { color: var(--text); font-weight: 700; }
  .anchor-card .ac-total {
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--text);
    margin: 4px 0 22px;
  }
  .anchor-card .ac-total small {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0;
  }
  .anchor-card .ac-sub {
    font-size: 24px;
    color: var(--text-2);
    line-height: 1.45;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }
  .anchor-card.is-cf {
    background: linear-gradient(160deg, rgba(53,182,213,0.16), rgba(53,182,213,0.02) 60%);
    border-color: var(--blue);
    box-shadow: 0 30px 80px rgba(53,182,213,0.12);
  }
  .anchor-card.is-cf .ac-label { color: var(--blue); }
  .anchor-card.is-cf .ac-total { color: var(--blue); }
  .anchor-card.is-cf .ac-sub { border-top-color: rgba(53,182,213,0.3); }

  /* ===========================================
     SLIDE 9 — FUNIL AMPULHETA
     =========================================== */
  .ampulheta {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    margin-top: 56px;
    flex: 1;
    align-items: stretch;
  }
  .ampulheta-viz {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .funil {
    width: 100%;
    height: 720px;
    position: relative;
  }
  .funil svg { width: 100%; height: 100%; display: block; }
  .funil .stage-lbl {
    position: absolute;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    color: var(--blue);
  }
  .funil .stage-lbl.top { top: 14px; left: 50%; transform: translateX(-50%); }
  .funil .stage-lbl.mid { top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--text); background: var(--bg); padding: 6px 14px; border: 1px solid var(--blue); border-radius: var(--radius-pill); }
  .funil .stage-lbl.bot { bottom: 14px; left: 50%; transform: translateX(-50%); }

  .ampulheta-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
  }
  .a-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: center;
    padding: 18px 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  }
  .a-step .a-num {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(53,182,213,0.12);
    color: var(--blue);
    display: grid; place-items: center;
    font-size: 24px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
  }
  .a-step .a-stage {
    font-size: 24px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
  }
  .a-step .a-text {
    font-size: 24px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2px;
  }
  .a-step.is-pivot {
    border-color: var(--blue);
    background: rgba(53,182,213,0.06);
  }
  .a-step.is-pivot .a-num { background: var(--blue); color: var(--bg); }

  /* ===========================================
     SLIDE 10 — ENCERRAMENTO
     =========================================== */
  .s-encerramento {
    background: var(--bg);
    padding-top: 100px;
  }
  .s-encerramento::before {
    background-image:
      radial-gradient(circle at 30% 50%, rgba(53,182,213,0.18) 0%, transparent 50%),
      linear-gradient(to right, rgba(53,182,213,0.04) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(53,182,213,0.04) 1px, transparent 1px);
    background-size: 100% 100%, 80px 80px, 80px 80px;
  }
  .s-encerramento .enc-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1500px;
  }
  .s-encerramento h1 {
    font-size: 104px;
    font-weight: 900;
    letter-spacing: -0.033em;
    line-height: 1;
    margin: 0;
    text-wrap: balance;
  }
  .s-encerramento h1 .blue { color: var(--blue); }
  .s-encerramento .enc-sub {
    font-size: 44px;
    color: var(--text-2);
    font-weight: 400;
    margin-top: 36px;
    line-height: 1.2;
    text-wrap: balance;
    max-width: 1500px;
  }
  .cta-card {
    margin-top: 64px;
    background: var(--blue);
    color: var(--bg);
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 30px 80px rgba(53,182,213,0.30);
  }
  .cta-card .cta-icon {
    width: 80px; height: 80px;
    background: var(--bg);
    color: var(--blue);
    border-radius: 16px;
    display: grid; place-items: center;
  }
  .cta-card .cta-icon .material-symbols-outlined { font-size: 44px; }
  .cta-card .cta-text {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .cta-card .cta-text small {
    display: block;
    font-size: 24px;
    font-weight: 600;
    opacity: 0.8;
    margin-top: 6px;
    letter-spacing: 0;
  }
  .enc-footer {
    position: absolute;
    bottom: 56px;
    left: var(--pad-x);
    right: var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-3);
    font-size: 24px;
  }
  .enc-footer .lockup {
    display: flex; align-items: center; gap: 14px;
    color: var(--text);
  }
  .enc-footer .lockup .mk {
    width: 48px; height: 48px;
    background: var(--blue);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--bg);
    font-weight: 900;
    font-size: 26px;
  }
  .enc-footer .lockup .nm { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
  .enc-footer .lockup .nm small { display:block; font-size: 24px; color: var(--text-3); font-weight: 600; letter-spacing: 0.06em; text-transform: none; margin-top: 4px; }

  /* ---------- Module Demo Slides ---------- */
  .s-modulo { padding-top: 100px; padding-bottom: 52px; }
  .mod-title {
    font-size: var(--type-h2);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }
  .mod-title .accent { color: var(--blue); }
  .mod-body {
    flex: 1;
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
  }
  .mod-video-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
  }
  .mod-video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .mod-video-item video {
    height: 640px;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: var(--radius-md);
    background: #000;
    display: block;
    flex-shrink: 0;
  }
  .mod-video-item > img {
    height: 640px;
    width: auto;
    max-width: 480px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--bg-2);
    display: block;
    flex-shrink: 0;
  }
  .mod-video-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
  }

  /* ---------- Phone mockup ---------- */
  .phone-mockup {
    width: 428px;
    height: 760px;
    background: #18181b;
    border-radius: 56px;
    padding: 16px 14px 12px;
    box-shadow: 0 0 0 2px #3f3f46, 0 32px 90px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
  }
  .phone-notch {
    width: 108px;
    height: 9px;
    background: #27272a;
    border-radius: 5px;
    margin: 0 auto;
    flex-shrink: 0;
  }
  .phone-screen {
    flex: 1;
    border-radius: 44px;
    overflow: hidden;
    background: #fff;
    min-height: 0;
  }
  .phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .phone-home {
    width: 90px;
    height: 5px;
    background: #3f3f46;
    border-radius: 3px;
    margin: 0 auto;
    flex-shrink: 0;
  }

  /* ---------- Split: features + phone ---------- */
  .mod-feat-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-right: 72px;
  }
  .mod-feat-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding-bottom: 16px;
  }
  .mod-qr-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    flex-shrink: 0;
  }
  .mod-qr-block img {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #fff;
  }
  .mod-qr-info { display: flex; flex-direction: column; gap: 6px; }
  .mod-qr-label {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .mod-qr-url {
    font-size: 18px;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 0;
  }
  .mod-feat {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
  }
  .mod-feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(53,182,213,0.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--blue);
  }
  .mod-feat-icon .material-symbols-outlined { font-size: 30px; }
  .mod-feat-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .mod-phone-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ===========================================
     REVELAÇÃO DAS CAIXAS + FRAGMENTOS
     (escopo deck-stage > .slide: não afeta as
     miniaturas clonadas do painel lateral)
     =========================================== */
  /* Caixas (.reveal, marcadas via JS) entram escalonadas quando o slide ativa */
  deck-stage > .slide .reveal {
    opacity: 0;
    transform: translateY(26px);
  }
  deck-stage > .slide[data-deck-active] .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.25, 0.7, 0.25, 1);
    transition-delay: calc(0.12s + var(--ri, 0) * 0.09s);
  }

  /* Fragmentos: elementos com .frag aparecem um a um a cada clique/avanço */
  deck-stage > .slide .frag {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.7, 0.25, 1);
  }
  deck-stage > .slide .frag.frag-in {
    opacity: 1;
    transform: none;
  }
