/* =====================================================================
   VS Plus TV – página de vendas
   Paleta derivada do logo: roxo profundo + dourado. Corpo claro para
   leitura no celular; roxo "drenched" no hero, vídeo, revenda e CTA final.
   ===================================================================== */

:root {
  --paper:      oklch(97% 0.014 85);
  --paper-2:    oklch(93.5% 0.03 85);
  --ink:        oklch(21% 0.045 305);
  --ink-2:      oklch(38% 0.04 305);
  --ink-3:      oklch(52% 0.03 305);
  --line:       oklch(86% 0.022 85);

  --grape:      oklch(30% 0.16 305);
  --grape-deep: oklch(18% 0.11 305);
  --grape-2:    oklch(38% 0.17 305);
  --cream:      oklch(96% 0.02 85);
  --cream-2:    oklch(84% 0.03 85);

  --gold:       oklch(80% 0.15 85);
  --gold-deep:  oklch(64% 0.14 70);
  --gold-soft:  oklch(91% 0.07 88);

  --zap:        oklch(54% 0.16 150);
  --zap-deep:   oklch(45% 0.14 150);
  --live:       oklch(62% 0.22 25);

  --font-display: "Bricolage Grotesque", "Arial Black", Impact, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
  --wrap: 1180px;
  --sec: clamp(4rem, 9vw, 7.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
strong, b { font-weight: 700; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--ink); padding: .5rem 1rem; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: "opsz" 96;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: 1.4rem; letter-spacing: -0.01em; }
.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .9rem;
}
.lead { font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-3); }
.stars { color: var(--gold-deep); letter-spacing: .05em; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head .lead { margin-top: 1rem; }
.section-head .btn { margin-top: 1.6rem; }
.section-head.split { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: .8rem 1.5rem;
  border-radius: 12px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1.1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 22px; height: 22px; fill: currentColor; flex: none; }
.btn-sm { min-height: 42px; padding: .5rem 1rem; font-size: .95rem; }
.btn-lg { min-height: 58px; padding: 1rem 1.8rem; font-size: 1.08rem; }
.btn-xl { min-height: 66px; padding: 1.1rem 2.2rem; font-size: 1.2rem; }

.btn-zap { background: var(--zap); color: #fff; box-shadow: 0 8px 24px -10px oklch(54% 0.16 150 / .7); }
.btn-zap:hover { background: var(--zap-deep); }
.btn-ink { background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--grape); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: oklch(86% 0.14 88); }
.btn-ghost { background: transparent; color: var(--cream); border-color: oklch(96% 0.02 85 / .35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn:focus-visible, a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ---------- Cabeçalho ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.topbar.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px oklch(21% 0.045 305 / .5); }
.topbar-in { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; }
.brand b { color: var(--gold-deep); }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.topbar nav { margin-left: auto; }
.topbar nav ul { display: flex; gap: .25rem; }
.topbar nav a { display: block; padding: .5rem .8rem; text-decoration: none; font-weight: 600; color: var(--ink-2); border-radius: 8px; }
.topbar nav a:hover { color: var(--ink); background: var(--paper-2); }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; flex-direction: column; justify-content: space-between; }
.menu-btn span { display: block; height: 3px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }

/* ---------- Hero ---------- */
.hero {
  background: var(--grape);
  background-image: radial-gradient(60% 80% at 80% 20%, var(--grape-2), transparent 70%);
  color: var(--cream);
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero .eyebrow { color: var(--gold); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lead { color: var(--cream-2); margin-top: 1.3rem; line-height: 1.6; }
.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.proof { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; margin-top: 1.8rem; font-size: .95rem; color: var(--cream-2); }
.proof li { display: flex; align-items: center; gap: .4rem; }
.proof li + li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-right: .6rem; }
.proof .stars { color: var(--gold); }

.hero-visual { position: relative; }
.tv { position: relative; filter: drop-shadow(0 40px 60px oklch(10% 0.08 305 / .6)); }
.tv-screen {
  aspect-ratio: 16 / 9; background: var(--grape-deep);
  border: 6px solid oklch(14% 0.05 305); border-radius: 14px;
  padding: 4%; display: flex; flex-direction: column; gap: 3.5%;
}
.tv-foot { width: 32%; height: 10px; margin: 0 auto; background: oklch(14% 0.05 305); border-radius: 0 0 8px 8px; }
.tv-bar { display: flex; align-items: center; gap: .8rem; font-size: clamp(.6rem, 1.1vw, .8rem); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-2); }
.tv-bar .live { display: inline-flex; align-items: center; gap: .35rem; color: #fff; background: var(--live); padding: .15rem .5rem; border-radius: 4px; }
.tv-bar .live i { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: blink 1.4s infinite; }
.tv-hd { margin-left: auto; color: var(--gold); border: 1px solid var(--gold); padding: .1rem .4rem; border-radius: 4px; }
.tv-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3%; }
.tile {
  border-radius: 8px; padding: 6% 8%; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; font-size: clamp(.65rem, 1.2vw, .9rem); line-height: 1.2;
  background-image: linear-gradient(to top, oklch(0% 0 0 / .45), transparent 60%);
}
.tile b { font-family: var(--font-display); font-weight: 800; font-size: 1.25em; }
.tile small { opacity: .85; font-size: .8em; }
.t-sport  { background-color: oklch(52% 0.16 150); }
.t-film   { background-color: oklch(52% 0.2 25); }
.t-series { background-color: oklch(52% 0.17 260); }
.t-kids   { background-color: oklch(70% 0.17 60); }
.t-novela { background-color: oklch(60% 0.2 345); }
.t-news   { background-color: oklch(48% 0.06 250); }
.tile:first-child { grid-column: span 2; }

.sticker {
  position: absolute; right: -5%; bottom: -15%;
  width: clamp(120px, 15vw, 170px); aspect-ratio: 1; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 20px 40px -18px oklch(10% 0.08 305 / .8);
  font-weight: 700; line-height: 1;
}
.sticker-top { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.sticker-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.6rem); margin: .2rem 0; letter-spacing: -0.03em; }
.sticker-price small { font-size: .45em; font-weight: 700; letter-spacing: 0; }
.sticker-sub { font-size: .75rem; }

/* ---------- Marquee ---------- */
.marquee { background: var(--gold); color: var(--ink); overflow: hidden; padding: .8rem 0; border-block: 1px solid oklch(70% 0.14 80); }
.marquee-track { display: flex; width: max-content; animation: scroll 40s linear infinite; }
.marquee ul { display: flex; gap: 0; }
.marquee li { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .04em; padding: 0 1.2rem; white-space: nowrap; display: flex; align-items: center; gap: 2.4rem; }
.marquee li::after { content: "✦"; font-size: .7rem; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Seções ---------- */
.section { padding: var(--sec) 0; }
.paper-2 { background: var(--paper-2); }
.night { background: var(--grape-deep); color: var(--cream); }
.night .eyebrow { color: var(--gold); }
.night .lead, .night p { color: var(--cream-2); }
.night h2 { color: var(--cream); }

/* Vantagens: lista numerada em duas colunas, sem cards */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 5rem); }
.features li { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
.features .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--gold-deep); line-height: 1; letter-spacing: -0.03em; }
.features strong { display: block; font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; letter-spacing: -0.01em; }
.features p { color: var(--ink-2); }

/* Vídeo */
.video-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.video-grid .section-head { margin-bottom: 0; }
.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  background: var(--grape); cursor: pointer;
  box-shadow: 0 40px 80px -30px oklch(0% 0 0 / .8), 0 0 0 1px oklch(96% 0.02 85 / .1);
}
.video img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.video:hover img { transform: scale(1.03); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play {
  position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%;
  background: var(--gold); color: var(--ink); display: grid; place-items: center;
  box-shadow: 0 10px 40px -8px oklch(0% 0 0 / .6);
  transition: transform .3s var(--ease);
}
.play svg { width: 36px; height: 36px; fill: currentColor; margin-left: 4px; }
.video:hover .play { transform: scale(1.08); }
.video-fallback { position: absolute; bottom: 1rem; left: 1rem; color: var(--gold); }

/* Economia */
.compare { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.compare h3 { font-size: 1.7rem; }
.compare .muted { margin-top: .3rem; margin-bottom: 1.6rem; }
.pricelist li, .total { display: flex; align-items: baseline; gap: .8rem; padding: .6rem 0; }
.pricelist li i { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-.35em); }
.pricelist li span:last-child { font-variant-numeric: tabular-nums; color: var(--ink-2); }
.total { justify-content: space-between; margin-top: 1rem; padding-top: 1.2rem; border-top: 2px solid var(--ink); font-weight: 700; }
.total strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
.total s { color: var(--live); text-decoration-thickness: 3px; }
.compare-with {
  position: relative; background: var(--grape); color: var(--cream);
  padding: clamp(1.6rem, 3.5vw, 2.8rem); border-radius: var(--radius);
  box-shadow: 0 40px 70px -40px oklch(30% 0.16 305 / .9);
}
.compare-with .muted { color: var(--cream-2); }
.compare-with .tag {
  position: absolute; top: -14px; right: 1.5rem; background: var(--gold); color: var(--ink);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 6px;
}
.checks li { position: relative; padding: .4rem 0 .4rem 1.9rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .75rem; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); }
.checks li::after { content: ""; position: absolute; left: 6px; top: 1.05rem; width: 5px; height: 9px; border: solid var(--ink); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.total.big { border-top-color: var(--gold); align-items: center; margin-bottom: 1.6rem; }
.total.big strong { font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--gold); }
.compare-with .btn { width: 100%; }
.callout { margin-top: clamp(2rem, 5vw, 3.5rem); max-width: 70ch; font-size: 1.15rem; color: var(--ink-2); padding-left: 1.4rem; border-left: 1px solid var(--line); }
.callout strong { color: var(--ink); }

/* Aparelhos */
.devices { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; }
.devices a {
  display: flex; flex-direction: column; gap: .3rem; height: 100%;
  padding: 1.4rem 1.3rem 1.2rem; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.devices a:hover { transform: translateY(-4px); border-color: var(--gold-deep); box-shadow: 0 24px 40px -28px oklch(21% 0.045 305 / .6); }
.devices svg { width: 44px; height: 44px; fill: none; stroke: var(--grape); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .6rem; }
.devices b { font-size: 1.05rem; line-height: 1.2; }
.devices small { color: var(--ink-3); }
.devices span { margin-top: auto; padding-top: .9rem; font-weight: 700; font-size: .9rem; color: var(--gold-deep); }

/* Depoimentos */
.rating { display: flex; align-items: center; gap: .8rem; }
.rating strong { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 1; letter-spacing: -0.04em; }
.rating strong span { font-size: .45em; color: var(--ink-3); font-weight: 600; }
.rating small { display: block; color: var(--ink-3); }
.quotes { display: grid; grid-template-columns: 1.2fr 1fr; grid-auto-rows: auto; gap: 1rem; }
.quote { margin: 0; padding: 1.6rem; background: var(--paper-2); border-radius: var(--radius); display: flex; flex-direction: column; gap: 1rem; }
.quote blockquote { margin: 0; font-size: 1.1rem; line-height: 1.5; text-wrap: pretty; }
.quote figcaption { display: flex; gap: .6rem; align-items: baseline; font-size: .95rem; margin-top: auto; }
.quote figcaption span { color: var(--ink-3); font-size: .85rem; }
.quote figcaption span::before { content: "✓ "; color: var(--zap); }
.quote-big { grid-row: span 3; background: var(--grape); color: var(--cream); padding: clamp(1.6rem, 3.5vw, 2.6rem); justify-content: center; }
.quote-big blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.2; letter-spacing: -0.015em; }
.quote-big figcaption span { color: var(--cream-2); }
.chat { margin-top: .5rem; }
.chat span {
  display: inline-block; background: oklch(90% 0.08 140); color: var(--ink);
  padding: .7rem 1rem; border-radius: 14px 14px 14px 4px; font-size: .95rem; max-width: 34ch; line-height: 1.4;
}

/* Programas */
.programs { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); }
.program h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .8rem; }
.program > p { color: var(--ink-2); max-width: 46ch; }
.steps { margin: 1.6rem 0; display: grid; gap: .8rem; }
.steps li { display: flex; align-items: center; gap: 1rem; }
.steps b { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--gold); font-family: var(--font-display); font-weight: 800; }
.perks { display: grid; gap: .5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: var(--ink-2); }
.perks li { padding-left: 1.2rem; position: relative; }
.perks li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-deep); font-size: .7rem; top: .45em; }
.perks strong { color: var(--ink); }
.stamps { display: flex; align-items: center; gap: .6rem; margin: 1.6rem 0; padding: 1rem 1.2rem; background: var(--paper); border: 2px dashed var(--gold-deep); border-radius: var(--radius); width: fit-content; }
.stamp { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold-deep); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--gold-deep); }
.stamp.done { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: rotate(-6deg); }
.stamp-arrow { color: var(--ink-3); font-size: 1.3rem; padding: 0 .3rem; }
.stamp-prize { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--grape); line-height: 1; letter-spacing: -0.03em; }
.stamp-prize small { font-size: .5em; margin-left: .15em; }

/* Revenda */
.revenda-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.revenda-grid .section-head { margin-bottom: 0; }
.revenda-grid .section-head p:not(.lead) { margin-top: 1rem; }
.adv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: oklch(96% 0.02 85 / .12); border: 1px solid oklch(96% 0.02 85 / .12); border-radius: var(--radius); overflow: hidden; }
.adv li { background: var(--grape-deep); padding: 1.6rem 1.3rem; display: flex; flex-direction: column; gap: .3rem; }
.adv b { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--gold); line-height: 1; letter-spacing: -0.03em; }
.adv span { color: var(--cream-2); font-weight: 600; }

/* Planos: quadro de preços */
.menu { display: grid; gap: 2.2rem; max-width: 56rem; }
.menu-group h3 { display: flex; align-items: center; gap: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: .4rem; }
.menu-group h3::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-group h3 span { background: var(--ink); color: var(--gold); padding: .35rem .8rem; border-radius: 6px; }
.menu li { display: flex; align-items: center; gap: 1rem; padding: 1rem .8rem; border-radius: 10px; }
.menu li.hot { background: var(--gold-soft); }
.menu .item { font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.menu .item em { font-style: normal; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: .25rem .5rem; border-radius: 5px; }
.menu li i { flex: 1; border-bottom: 2px dotted var(--line); }
.menu .price { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.menu li > a { font-weight: 700; font-size: .9rem; color: var(--zap-deep); text-decoration: none; padding: .5rem .9rem; border: 2px solid currentColor; border-radius: 8px; white-space: nowrap; transition: background-color .25s, color .25s; }
.menu li > a:hover { background: var(--zap); border-color: var(--zap); color: #fff; }
.menu-foot { margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.includes { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; color: var(--ink-2); font-weight: 500; }
.includes li::before { content: "✓ "; color: var(--zap); font-weight: 700; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq-grid .section-head { position: sticky; top: 96px; margin-bottom: 0; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 2.6rem 1.1rem 0; font-weight: 700; font-size: 1.1rem;
  position: relative; letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); background: var(--paper);
  transition: transform .3s var(--ease), background-color .3s;
}
.faq details[open] summary::after { content: "–"; background: var(--gold); }
.faq details p { padding: 0 3rem 1.3rem 0; color: var(--ink-2); max-width: 62ch; }

/* CTA final */
.final { background: var(--grape); color: var(--cream); padding: var(--sec) 0; text-align: center; }
.final .wrap { max-width: 52rem; display: flex; flex-direction: column; align-items: center; }
.final .eyebrow { color: var(--gold); }
.final h2 { margin-bottom: 2rem; }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.8rem; margin-top: 1.6rem; color: var(--cream-2); font-weight: 600; }

/* Rodapé */
.footer { background: var(--grape-deep); color: var(--cream-2); padding: 2.2rem 0 6rem; }
.footer-in { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer .brand { color: var(--cream); }
.footer .brand b { color: var(--gold); }
.footer-contact { display: flex; gap: 1.2rem; margin-left: auto; }
.footer-contact a { font-weight: 600; color: var(--cream); }
.copy { width: 100%; font-size: .9rem; padding-top: 1.2rem; border-top: 1px solid oklch(96% 0.02 85 / .12); }

/* Botão flutuante do WhatsApp */
.float-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%; background: var(--zap); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -10px oklch(54% 0.16 150 / .9);
  transition: transform .3s var(--ease), background-color .3s;
}
.float-wa svg { width: 32px; height: 32px; fill: currentColor; }
.float-wa:hover { transform: scale(1.06); background: var(--zap-deep); }

/* ---------- Movimento ---------- */
/* Só anima quando o JS está ativo; sem JS, tudo fica visível. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@keyframes scroll { to { transform: translateX(-50%); } }
@keyframes blink { 50% { opacity: .3; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee ul:last-child { display: none; }
  .tv-bar .live i { animation: none; }
  .btn, .devices a, .video img, .play { transition: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .hero-grid, .video-grid, .revenda-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .section-head { position: static; }
  .hero-visual { max-width: 560px; margin-top: 1rem; }
  .compare { grid-template-columns: 1fr; }
  .compare-with { margin-top: 1rem; }
}
@media (max-width: 900px) {
  .topbar nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: .6rem 1.25rem 1rem;
    box-shadow: 0 20px 40px -20px oklch(21% 0.045 305 / .5);
  }
  .topbar.open nav { display: block; }
  .topbar nav ul { flex-direction: column; gap: 0; }
  .topbar nav a { padding: .8rem .6rem; font-size: 1.05rem; }
  .topbar .btn-sm { margin-left: auto; }
  .menu-btn { display: flex; }
  .topbar.open .menu-btn span:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
  .topbar.open .menu-btn span:nth-child(2) { opacity: 0; }
  .topbar.open .menu-btn span:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }
}
@media (max-width: 760px) {
  body { font-size: 1rem; }
  .features { grid-template-columns: 1fr; }
  .features li { padding: 1.2rem 0; }
  .quotes { grid-template-columns: 1fr; }
  .quote-big { grid-row: auto; }
  .programs { grid-template-columns: 1fr; }
  .adv { grid-template-columns: repeat(2, 1fr); }
  .menu li { flex-wrap: wrap; }
  .menu li i { display: none; }
  .menu .item { flex: 1 1 100%; }
  .menu .price { flex: 1; }
  .cta-row .btn { width: 100%; }
  .sticker { right: 0; bottom: -10%; }
  .section-head.split { align-items: flex-start; }
  .footer-contact { margin-left: 0; }
}
@media (max-width: 480px) {
  .topbar .btn-sm span { display: none; }
  .topbar .btn-sm { padding: .5rem .7rem; }
  .wrap { width: min(var(--wrap), 100% - 2rem); }
  .adv li { padding: 1.2rem 1rem; }
  .adv b { font-size: 1.6rem; }
  .stamps { padding: .8rem; gap: .4rem; }
  .stamp { width: 38px; height: 38px; }
}

/* =====================================================================
   Página do teste grátis (teste-gratis.html)
   ===================================================================== */
.back-link { margin-left: auto; font-weight: 600; color: var(--ink-2); text-decoration: none; }
.back-link:hover { color: var(--ink); }
.wiz-hero { background: var(--grape); color: var(--cream); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.wiz-hero .eyebrow { color: var(--gold); }
.wiz-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 18ch; }
.wiz-hero .lead { color: var(--cream-2); margin-top: 1rem; }
.wiz-section { padding-top: clamp(2rem, 5vw, 3.5rem); }
.wiz-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.steps-bar { display: flex; gap: .4rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.steps-bar li { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--ink-3); padding: .35rem .7rem .35rem .35rem; border-radius: 999px; background: var(--paper-2); }
.steps-bar li span { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--line); color: var(--ink-2); font-family: var(--font-display); font-weight: 800; font-size: .8rem; }
.steps-bar li.current { color: var(--ink); background: var(--gold-soft); }
.steps-bar li.current span { background: var(--gold); color: var(--ink); }
.steps-bar li.done span { background: var(--zap); color: #fff; }

.wiz-head { margin-bottom: 1.4rem; }
.wiz-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.wiz-head p { color: var(--ink-2); margin-top: .5rem; max-width: 56ch; }
.wiz-back { background: none; border: 0; padding: 0; margin-bottom: .8rem; font: inherit; font-weight: 600; color: var(--ink-3); cursor: pointer; }
.wiz-back:hover { color: var(--ink); }

.choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .8rem; }
.choices.compact { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
.choice {
  width: 100%; height: 100%; text-align: left; cursor: pointer; font: inherit; color: var(--ink);
  display: flex; flex-direction: column; gap: .2rem; padding: 1.1rem 1.1rem 1rem;
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s, transform .25s var(--ease), box-shadow .25s;
  position: relative;
}
.choice:hover { border-color: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -22px oklch(21% 0.045 305 / .6); }
.choice b { font-size: 1.05rem; line-height: 1.2; }
.choice small { color: var(--ink-3); }
.choice em { font-style: normal; align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: .2rem .5rem; border-radius: 5px; margin-bottom: .4rem; }
.choice.suggested { border-color: var(--gold); background: var(--gold-soft); }
.choices.compact .choice { padding: .9rem 1rem; align-items: center; text-align: center; }
.choices.compact .choice b { font-size: 1rem; }

.install-steps { counter-reset: p; display: grid; gap: .9rem; margin: 0 0 1.2rem; }
.install-steps li { counter-increment: p; display: grid; grid-template-columns: 36px 1fr; gap: .9rem; align-items: start; padding: 1rem 1.1rem; background: var(--paper-2); border-radius: 12px; line-height: 1.5; }
.install-steps li > span { display: block; overflow-wrap: anywhere; }
.install-steps li::before { content: counter(p); width: 36px; height: 36px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.install-steps code, .form-sub code, .creds code, .alt code { font-family: var(--font-display); font-weight: 800; font-size: 1.15em; letter-spacing: .06em; background: var(--gold); color: var(--ink); padding: .1em .45em; border-radius: 6px; white-space: nowrap; }
.install-steps a { color: var(--grape); font-weight: 600; }
.alt { color: var(--ink-2); padding: .9rem 1.1rem; border: 1px dashed var(--gold-deep); border-radius: 12px; margin-bottom: 1.2rem; }
.tips { display: grid; gap: .6rem; margin-bottom: 1.4rem; color: var(--ink-2); }
.tips li { padding-left: 1.2rem; position: relative; }
.tips li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-deep); font-size: .7rem; top: .45em; }
.wiz-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.btn-ghost-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--ink); }

.wiz-form { display: grid; gap: 1rem; max-width: 34rem; }
.field { display: grid; gap: .35rem; font-weight: 600; }
.field input { font: inherit; font-size: 1.05rem; padding: .85rem 1rem; border: 2px solid var(--line); border-radius: 12px; background: var(--paper); color: var(--ink); min-height: 52px; }
.field input:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 4px var(--gold-soft); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-3); }
.form-sub { font-size: .95rem; color: var(--ink-2); }
.form-error { background: oklch(94% 0.05 25); color: oklch(38% 0.15 25); border: 1px solid oklch(80% 0.1 25); padding: .9rem 1rem; border-radius: 12px; line-height: 1.45; }
.form-error a { font-weight: 700; color: inherit; }
.wiz-form .btn { justify-self: start; }
.btn[disabled] { opacity: .7; cursor: wait; transform: none; }

.result { background: var(--grape); color: var(--cream); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius); }
.result .eyebrow { color: var(--gold); }
.result h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .8rem; }
.result p { color: var(--cream-2); }
.creds { display: grid; gap: .6rem; margin: 1.4rem 0; }
.creds div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; background: oklch(96% 0.02 85 / .08); border-radius: 10px; }
.creds dt { font-weight: 600; color: var(--cream-2); }
.creds dd { margin: 0; font-weight: 700; }
.creds code { font-size: 1.25rem; }
.result .alt { border-color: var(--gold); color: var(--cream-2); }
.result .form-sub { color: var(--cream-2); margin-top: 1rem; }

.wiz-side { position: sticky; top: 96px; }
.side-card { background: var(--paper-2); border-radius: var(--radius); padding: 1.4rem; }
.side-card h2 { font-size: 1.2rem; margin-bottom: .8rem; }
.side-summary { margin: 0 0 1rem; display: grid; gap: .4rem; }
.side-summary div { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--line); }
.side-summary dt { color: var(--ink-3); font-weight: 600; }
.side-summary dd { margin: 0; font-weight: 700; text-align: right; }
.side-checks { display: grid; gap: .4rem; color: var(--ink-2); font-size: .95rem; }
.side-checks li::before { content: "✓ "; color: var(--zap); font-weight: 700; }
.side-help { margin-top: 1rem; color: var(--ink-2); font-size: .95rem; }
.side-help a { color: var(--zap-deep); font-weight: 700; }
.footer-min { padding: 1.5rem 0 5.5rem; }
.footer-min .copy { border: 0; padding: 0; }
.footer-min a { color: var(--cream); }

@media (max-width: 900px) {
  .wiz-grid { grid-template-columns: 1fr; }
  .wiz-side { position: static; order: 2; }
  .back-link { display: none; }
  .wa-help { margin-left: auto; }
}
@media (max-width: 480px) {
  .creds div { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .wiz-actions .btn { width: 100%; }
  .wiz-form .btn { justify-self: stretch; }
}

/* Indicação no formulário do teste */
.check { display: flex; align-items: center; gap: .6rem; font-weight: 600; cursor: pointer; flex-wrap: wrap; }
.check .field-hint { flex-basis: 100%; padding-left: 1.7rem; }
.check input { width: 20px; height: 20px; accent-color: var(--zap); cursor: pointer; }
.field-hint { font-weight: 500; font-size: .85rem; color: var(--ink-3); }

/* Ícones dos aplicativos */
.choice img { width: 76px; height: 76px; border-radius: 16px; margin-bottom: .6rem; }
.app-ico { width: 88px; height: 88px; border-radius: 18px; margin-bottom: .7rem; box-shadow: 0 8px 18px -10px oklch(21% 0.045 305 / .5); }
.inline-ico { display: inline-block; vertical-align: middle; width: 44px; height: 44px; border-radius: 9px; margin-left: .3rem; }
