/* =====================================================================
   Landing — vitrine de canais
   As cores da marca vêm do painel e são injetadas em :root pelo servidor.
   ===================================================================== */

:root {
  --bg: #07080d;
  --bg-soft: #0c0e15;
  --surface: #12141d;
  --surface-2: #181b26;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f2f4f8;
  --muted: #96a0b5;
  --wa: #25d366;
  --radius: 18px;
  --maxw: 1180px;
  --shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.8);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* o atributo hidden vence qualquer display (.btn, .co-sum-line, .tech-result…) */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
section { position: relative; }

/* ---------------------------- Botões ---------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 16px; line-height: 1;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 34px -12px var(--brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px var(--brand); }
.btn-wa { background: var(--wa); color: #062d16; }
.btn-wa:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .05); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 14.5px; }

/* ---------------------------- Header ---------------------------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 8, 13, .78);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.logo .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 14px var(--brand);
}
.logo img { height: 52px; width: auto; }
footer .logo img { height: 72px; }
@media (max-width: 620px) { .logo img { height: 44px; } }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 900px) { .nav-links { display: none; } .nav-cta .btn-ghost { display: none; } }

/* ---------------------------- Hero ---------------------------- */
.hero { padding: 64px 0 40px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(680px 380px at 20% -10%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 70%),
    radial-gradient(700px 420px at 85% 0%, color-mix(in srgb, var(--brand-2) 20%, transparent), transparent 70%),
    radial-gradient(600px 400px at 50% 40%, rgba(120, 80, 255, .12), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: color-mix(in srgb, var(--brand) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 60%, transparent); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.06; font-weight: 800; letter-spacing: -.03em; margin-bottom: 20px; }
h1 .grad {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 54ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.trust { display: flex; gap: 8px 20px; flex-wrap: wrap; color: var(--muted); font-size: 14.5px; font-weight: 500; }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.check { width: 17px; height: 17px; color: var(--brand); flex: 0 0 auto; }

/* ------------------- Vitrine de canais (hero) ------------------- */
.showcase {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: 24px; padding: 20px; box-shadow: var(--shadow);
}
.showcase-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.showcase-head h2 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; display: flex; align-items: center; gap: 9px; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #ff3b30;
  box-shadow: 0 0 0 4px rgba(255, 59, 48, .18); animation: pulse 2s infinite;
}
.showcase-head .count { color: var(--muted); font-size: 13.5px; font-weight: 600; }

.tabs { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto; padding: 8px 15px; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border);
  color: var(--muted); font-size: 13.5px; font-weight: 600;
  transition: all .18s ease;
}
.tab:hover { color: #fff; border-color: var(--border-strong); }
.tab.on { background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff; border-color: transparent; }

.chan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 560px) { .chan-grid { grid-template-columns: repeat(4, 1fr); } }
.chan-tile {
  aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 6px; text-align: center;
  transition: transform .18s ease, border-color .2s ease;
}
.chan-tile:hover { transform: translateY(-3px) scale(1.02); border-color: var(--border-strong); }
.chan-tile[hidden] { display: none; }
.chan-mark {
  width: 100%; flex: 1; border-radius: 10px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 15px; letter-spacing: -.02em; color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}
.chan-mark { position: relative; }
.chan-mark.has-logo { background: #fff; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06); }
.chan-mark img { position: absolute; inset: 16%; width: 68%; height: 68%; object-fit: contain; }
.chan-name {
  font-size: 10.5px; font-weight: 600; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.showcase-foot { margin-top: 14px; text-align: center; color: var(--muted); font-size: 13.5px; }

/* ---------------------- Agora na TV ---------------------- */
.now { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); padding: 26px 0; }
.now-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.now-label { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; flex: 0 0 auto; }
.now-list { display: flex; gap: 10px; flex: 1; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.now-list::-webkit-scrollbar { display: none; }
.now-item {
  flex: 0 0 auto; display: flex; flex-direction: column; gap: 2px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 13px; padding: 11px 16px; min-width: 210px;
}
.now-item .t { font-size: 12.5px; font-weight: 700; color: var(--brand); display: flex; gap: 8px; align-items: center; }
.now-item .t .tag {
  background: color-mix(in srgb, var(--brand) 16%, transparent);
  border-radius: 6px; padding: 1px 7px; font-size: 11px; color: #fff;
}
.now-item .title { font-size: 14.5px; font-weight: 600; }
.now-item .ch { font-size: 12.5px; color: var(--muted); }

/* ---------------------- Seções ---------------------- */
.sec { padding: 76px 0; }
.sec.alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sec-head { text-align: center; max-width: 58ch; margin: 0 auto 46px; }
.kicker { color: var(--brand); font-weight: 700; font-size: 13.5px; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 12px; }
.sec-head h2 { font-size: clamp(27px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.sec-head p { color: var(--muted); font-size: 17px; margin-top: 13px; }

/* ---------------------- Benefícios ---------------------- */
.grid-feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid-feat { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-feat { grid-template-columns: 1fr; } }
.feat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .18s ease, border-color .2s ease;
}
.feat:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feat .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: color-mix(in srgb, var(--brand) 15%, transparent); color: var(--brand);
}
.feat h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.01em; }
.feat p { color: var(--muted); font-size: 15px; }

/* ---------------------- Planos ---------------------- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; max-width: 860px; margin: 0 auto; }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; padding: 32px 28px; display: flex; flex-direction: column;
}
.plan.pop {
  border-color: color-mix(in srgb, var(--brand) 50%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 9%, transparent), var(--surface) 42%);
  box-shadow: var(--shadow);
}
.plan .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff;
  font-size: 12.5px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
}
.plan h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.plan .tagline { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; min-height: 20px; }
.price { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 4px; }
.price .cur { font-size: 18px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.price .val { font-size: 46px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price .per { color: var(--muted); font-size: 15px; margin-bottom: 7px; }
.price-note { color: var(--muted); font-size: 14px; margin-bottom: 22px; min-height: 21px; }
.price-note b { color: #fff; font-weight: 700; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: #dbe0ea; }
.plan li svg { flex: 0 0 auto; margin-top: 2px; color: var(--brand); }
.plans-foot { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 26px; }
.plans-foot a { color: var(--brand); font-weight: 700; }

/* ---------------------- Adicionais ---------------------- */
.addons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 780px; margin: 0 auto; }
.addon {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 18px; font-size: 15px;
}
.addon b { font-weight: 700; }
.addon .note { color: var(--muted); font-size: 13px; }
.addon .p { color: var(--brand); font-weight: 700; }

/* ---------------------- Dispositivos ---------------------- */
.devs { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.dev {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border); background: var(--surface); border-radius: 12px;
  padding: 12px 18px; font-weight: 600; font-size: 15px; color: #dbe0ea;
}
.dev svg { color: var(--brand); }

/* ---------------------- Formulário de lead ---------------------- */
.lead-box {
  max-width: 660px; margin: 0 auto;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); border-radius: 22px; padding: 32px 28px;
  box-shadow: var(--shadow);
}
.lead-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; text-align: center; }
.lead-box p.s { color: var(--muted); font-size: 15px; text-align: center; margin-bottom: 24px; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 620px) { .lead-form { grid-template-columns: 1fr; } }
.lead-form .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border);
  color: var(--text); font-size: 15px; font-family: inherit;
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: rgba(255, 255, 255, .06);
}
.field select option { background: var(--surface); color: var(--text); }
.field textarea { resize: vertical; min-height: 84px; }
.lead-msg { font-size: 14.5px; font-weight: 600; text-align: center; padding-top: 6px; }
.lead-msg.ok { color: #34d399; }
.lead-msg.err { color: #f87171; }

/* ---------------------- FAQ ---------------------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 0 22px; }
details[open] { border-color: var(--border-strong); }
summary {
  list-style: none; cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 16.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary .plus { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
summary .plus::before, summary .plus::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; }
summary .plus::before { top: 10px; left: 2px; right: 2px; height: 2px; }
summary .plus::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: opacity .2s; }
details[open] summary .plus::after { opacity: 0; }
details .ans { padding: 0 0 22px; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* ---------------------- CTA final ---------------------- */
.cta-final {
  text-align: center; border-radius: 26px; padding: 56px 28px; margin: 0 20px;
  background:
    radial-gradient(520px 320px at 50% 0%, color-mix(in srgb, var(--brand) 28%, transparent), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
}
.cta-final h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.cta-final p { color: var(--muted); font-size: 17px; max-width: 48ch; margin: 0 auto 30px; }
.cta-final .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------------------- Footer ---------------------- */
footer { border-top: 1px solid var(--border); margin-top: 80px; padding: 44px 0 40px; color: var(--muted); font-size: 14.5px; }
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot-inner .logo { font-size: 18px; color: #fff; }
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: #cdd3df; font-weight: 600; }
.foot-legal { max-width: 70ch; line-height: 1.6; margin-top: 20px; font-size: 13px; opacity: .85; }

/* ---------------------- WhatsApp flutuante ---------------------- */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--wa); color: #062d16; font-weight: 700;
  padding: 14px 20px; border-radius: 999px;
  box-shadow: 0 14px 34px -8px rgba(0, 0, 0, .6);
  transition: transform .15s;
}
.wa-fab:hover { transform: translateY(-2px); }
@media (max-width: 520px) { .wa-fab span { display: none; } .wa-fab { padding: 16px; border-radius: 50%; } }

/* ---------------------- Animação de entrada ---------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .live-dot, .eyebrow .pulse { animation: none; }
}

/* =====================================================================
   Promoção, técnicos, checkout e pedido
   ===================================================================== */

/* ---------------------- Planos em 3–4 colunas ---------------------- */
.plans-3, .plans-4 { max-width: none; }
.plans-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.plans-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plans-4 .plan { padding: 30px 22px; }
.plans-4 .price .val { font-size: 40px; }
@media (max-width: 1080px) { .plans-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 30px; } }
@media (max-width: 860px) { .plans-3 { grid-template-columns: 1fr; max-width: 440px; } }
@media (max-width: 620px) { .plans-4 { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.plan .price-note { margin-bottom: 10px; }
.save {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  font-size: 13.5px; font-weight: 700; color: #34d399; margin-bottom: 22px; min-height: 26px;
}
.save span { background: rgba(52, 211, 153, .14); border: 1px solid rgba(52, 211, 153, .35); padding: 3px 8px; border-radius: 999px; font-size: 12px; }
.save.none { visibility: hidden; }

/* ---------------------- Técnicos na cidade ---------------------- */
.install {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.install h2 { font-size: clamp(27px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; }
.install-copy > p { color: var(--muted); font-size: 17px; margin-top: 13px; }
.install-steps { list-style: none; display: grid; gap: 14px; margin-top: 28px; }
.install-steps li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.install-steps span {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand); font-weight: 800; font-size: 14px;
}
.install-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 28px;
  box-shadow: var(--shadow); display: grid; gap: 16px;
}
.install-ic {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff;
}
@media (max-width: 860px) { .install { grid-template-columns: 1fr; gap: 28px; } }

.city-row { display: grid; grid-template-columns: 1fr 92px auto; gap: 10px; align-items: end; }
.city-check.compact .city-row { grid-template-columns: 1fr 92px; }
@media (max-width: 520px) {
  .city-row { grid-template-columns: 1fr 86px; }
  .city-row [data-city-btn] { grid-column: 1 / -1; }
}
.city-row .btn { padding: 14px 20px; }

.tech-result {
  margin-top: 12px; padding: 14px 16px; border-radius: 14px; display: grid; gap: 4px; font-size: 14.5px;
}
.tech-result strong { font-size: 15.5px; }
.tech-result span { color: var(--muted); }
.tech-result.yes { background: rgba(52, 211, 153, .1); border: 1px solid rgba(52, 211, 153, .35); }
.tech-result.yes strong { color: #34d399; }
.tech-result.no { background: rgba(245, 176, 65, .08); border: 1px solid rgba(245, 176, 65, .3); }
.tech-result.no strong { color: #f5b041; }

/* ---------------------- Checkout ---------------------- */
.sec-head.left { text-align: left; margin: 0 0 32px; max-width: none; }
.checkout { padding-top: 48px; }

.co-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
@media (max-width: 960px) { .co-grid { grid-template-columns: 1fr; } }

.co-step {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 26px;
}
.co-step + .co-step { margin-top: 18px; }
.co-step h3 { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.co-step h3 span {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 14px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff;
}

.picks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 560px) { .picks { grid-template-columns: 1fr; } }
.pick {
  position: relative; display: flex; align-items: center; gap: 12px; padding: 16px 16px 16px 46px;
  border: 1.5px solid var(--border-strong); border-radius: 16px; cursor: pointer; transition: border-color .15s, background .15s;
}
.pick:hover { border-color: rgba(255, 255, 255, .35); }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick::before {
  content: ''; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-strong);
}
.pick.on { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 9%, transparent); }
.pick.on::before { border-color: var(--brand); background: radial-gradient(circle, var(--brand) 45%, transparent 50%); }
.pick:has(input:focus-visible) { box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 35%, transparent); }
.pick-main { display: grid; flex: 1; }
.pick-main b { font-size: 16px; }
.pick-main small { color: var(--muted); font-size: 13px; }
.pick-price { text-align: right; font-weight: 800; font-size: 16px; display: grid; }
.pick-price em { font-style: normal; font-size: 12px; color: #34d399; font-weight: 700; }
.pick-badge {
  position: absolute; top: -10px; right: 14px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff;
}

.co-fields { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.co-fields .span-2 { grid-column: span 2; }
.co-fields .span-3 { grid-column: 1 / -1; }
.co-fields .span-1-5 { grid-column: span 1; }
@media (max-width: 700px) {
  .co-fields { grid-template-columns: 1fr; }
  .co-fields .span-2, .co-fields .span-1-5 { grid-column: auto; }
}
.co-fields label small { font-weight: 500; opacity: .75; }
.cep-hint { align-self: end; padding-bottom: 14px; }
.cep-hint small { color: var(--muted); font-size: 13px; }
.cep-hint .ok { color: #34d399; }
.cep-hint .warn { color: #f5b041; }
.co-fields .city-check .field { margin: 0; }

.co-side { position: sticky; top: 96px; }
@media (max-width: 960px) { .co-side { position: static; } }
.co-summary {
  background: var(--surface); border: 1px solid color-mix(in srgb, var(--brand) 40%, transparent);
  border-radius: 20px; padding: 24px; box-shadow: var(--shadow); display: grid; gap: 12px;
}
.co-sum-label { font-size: 12px; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 700; }
.co-sum-plan { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.co-sum-line { display: flex; justify-content: space-between; color: var(--muted); font-size: 15px; }
.co-sum-line b { color: var(--text); }
.co-sum-line.co-save b { color: #34d399; }
.co-sum-total {
  display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 2px;
  border-top: 1px solid var(--border); font-weight: 700;
}
.co-sum-total b { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.co-msg { color: #f87171; font-size: 14px; font-weight: 600; min-height: 1px; }
.co-msg:empty { display: none; }
.co-trust { list-style: none; display: grid; gap: 9px; margin-top: 6px; color: var(--muted); font-size: 13.5px; }
.co-trust li { display: flex; align-items: center; gap: 9px; }
.co-trust svg { color: var(--brand); flex: none; }

/* ---------------------- Pedido / Pix ---------------------- */
.order { padding-top: 48px; }
.order-card {
  max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px; box-shadow: var(--shadow); display: grid; gap: 26px;
}
.order-head { display: flex; gap: 16px; align-items: center; }
.order-ok {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(52, 211, 153, .15); color: #34d399;
}
.order-ok svg { width: 26px; height: 26px; }
.order-head h2 { font-size: clamp(22px, 3vw, 28px); font-weight: 800; letter-spacing: -.02em; }
.order-head p { color: var(--muted); }
.order-head p b { color: var(--text); letter-spacing: .04em; }

.pix { display: grid; grid-template-columns: 240px 1fr; gap: 26px; align-items: start; }
@media (max-width: 640px) { .pix { grid-template-columns: 1fr; justify-items: center; } .pix-info { width: 100%; } }
.pix-qr { background: #fff; border-radius: 16px; padding: 12px; width: 240px; }
.pix-qr svg { display: block; width: 100%; height: auto; }
.pix-info { display: grid; gap: 14px; }
.pix-amount { display: flex; justify-content: space-between; align-items: baseline; }
.pix-amount span { color: var(--muted); }
.pix-amount b { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.pix-steps { padding-left: 20px; color: #dbe0ea; display: grid; gap: 4px; font-size: 14.5px; }
.pix-info .lbl { display: block; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.pix-info textarea { font-family: ui-monospace, Consolas, monospace; font-size: 12.5px; word-break: break-all; min-height: 0; }
.pay-proof svg, .pay-manual + .pay-proof svg { flex: none; }
.pay-manual { color: var(--muted); }
.pay-status { padding: 16px 18px; border-radius: 14px; font-weight: 700; display: flex; gap: 10px; align-items: center; }
.pay-status.ok { background: rgba(52, 211, 153, .1); color: #34d399; border: 1px solid rgba(52, 211, 153, .35); }
.pay-status.err { background: rgba(248, 113, 113, .1); color: #f87171; border: 1px solid rgba(248, 113, 113, .35); }
.order-next { border-top: 1px solid var(--border); padding-top: 22px; display: grid; gap: 10px; color: var(--muted); }
.order-tech { display: flex; gap: 10px; align-items: center; color: var(--text); }
.order-tech svg { color: var(--brand); flex: none; }

/* ---------------------- Checkout externo ---------------------- */
.btn-lg { padding: 19px 28px; font-size: 17px; }
.pay-link { display: grid; gap: 10px; text-align: center; }
.pay-link p { color: var(--muted); font-size: 14px; }
.pay-alt { border: 1px solid var(--border); border-radius: 16px; padding: 4px 18px; }
.pay-alt[open] { padding-bottom: 18px; }
.pay-alt summary { cursor: pointer; padding: 12px 0; color: var(--muted); font-weight: 600; list-style: none; }
.pay-alt summary::-webkit-details-marker { display: none; }
.pay-alt summary::after { content: ' ▾'; }
.pay-alt .pix { margin: 8px 0 16px; }

/* ---------------------- Loja de aparelhos ---------------------- */
.store { padding-top: 56px; }
.store-tabs { justify-content: center; margin-bottom: 30px; }
.prods { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 340px)); justify-content: center; gap: 20px; }
#aparelhos .prods { max-width: 980px; margin: 0 auto; }
.prod {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  display: flex; flex-direction: column; overflow: visible;
}
.prod[hidden] { display: none; }
.prod.pop { border-color: color-mix(in srgb, var(--brand) 50%, transparent); box-shadow: var(--shadow); }
.prod.out { opacity: .6; }
.prod .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); z-index: 1;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff;
  font-size: 12.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.prod-img {
  aspect-ratio: 4 / 3; border-radius: 21px 21px 0 0; background: #fff; display: grid; place-items: center;
  color: #9aa3b5; position: relative; overflow: hidden;
}
.prod-img img { position: absolute; inset: 8%; width: 84%; height: 84%; object-fit: contain; }
.prod-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.prod h3 { font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.prod-desc { color: var(--muted); font-size: 14.5px; }
.prod ul { list-style: none; display: grid; gap: 8px; }
.prod li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: #dbe0ea; }
.prod li svg { flex: none; margin-top: 1px; color: var(--brand); width: 16px; height: 16px; }
.prod-price { margin-top: auto; padding-top: 6px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.prod-price s { color: var(--muted); font-size: 14px; }
.prod-price em { font-style: normal; font-size: 12px; font-weight: 700; color: #34d399; background: rgba(52, 211, 153, .14); padding: 2px 8px; border-radius: 999px; }
.prod-price b { font-size: 28px; font-weight: 800; letter-spacing: -.02em; width: 100%; }
.prod-price b.consult { font-size: 17px; color: var(--muted); }
.store-note { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 14px; margin-top: 32px; text-align: center; }
.store-note svg { color: var(--brand); flex: none; }

/* checkout de produto */
.co-product { display: grid; grid-template-columns: 88px 1fr 110px; gap: 16px; align-items: center; }
.co-product-img { width: 88px; height: 88px; border-radius: 16px; background: #fff; display: grid; place-items: center; color: #9aa3b5; position: relative; overflow: hidden; }
.co-product-img img { position: absolute; inset: 8%; width: 84%; height: 84%; object-fit: contain; }
.co-product-info { display: grid; gap: 2px; }
.co-product-info b { font-size: 17px; }
.co-product-info span { color: var(--muted); font-size: 14px; }
@media (max-width: 560px) { .co-product { grid-template-columns: 72px 1fr; } .co-qty { grid-column: 1 / -1; } .co-product-img { width: 72px; height: 72px; } }

/* ---------------------- Faixa de promoção ---------------------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 10px 16px; flex-wrap: wrap;
  padding: 10px 20px; text-align: center; font-size: 14.5px; font-weight: 600; color: #fff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
a.announce:hover .announce-cta { text-decoration: underline; }
.announce-timer {
  font-variant-numeric: tabular-nums; font-weight: 800; letter-spacing: .02em;
  background: rgba(0, 0, 0, .22); padding: 3px 10px; border-radius: 999px;
}
.announce-timer:empty { display: none; }
.announce-cta { font-weight: 800; white-space: nowrap; }

/* ---------------------- Depoimentos ---------------------- */
.testis { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.testi {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 14px; margin: 0;
}
.stars { color: #fbbf24; letter-spacing: 2px; font-size: 16px; }
.stars i { font-style: normal; color: rgba(255, 255, 255, .15); }
.testi blockquote { font-size: 15.5px; color: #dbe0ea; line-height: 1.6; flex: 1; }
.testi figcaption { display: flex; align-items: center; gap: 12px; }
.testi figcaption b { display: block; font-size: 15px; }
.testi figcaption small { color: var(--muted); font-size: 13px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; overflow: hidden; display: grid; place-items: center;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800; font-size: 15px;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------- Páginas institucionais ---------------------- */
.legal-page { padding-top: 56px; }
.legal { max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 40px; }
.legal h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 24px; }
.legal h2 { font-size: 20px; font-weight: 800; margin: 28px 0 10px; }
.legal p { color: #c9d0de; margin-bottom: 12px; }
.legal ul { padding-left: 22px; color: #c9d0de; margin-bottom: 12px; display: grid; gap: 6px; }
.legal strong { color: #fff; }
@media (max-width: 620px) { .legal { padding: 26px 20px; } }
.foot-pages { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px; font-size: 13.5px; }
.foot-pages a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.foot-pages a:hover { color: #fff; }

/* ---------------------- Cupom e aceite no checkout ---------------------- */
.co-coupon { display: flex; gap: 8px; margin-top: 4px; }
.co-coupon input {
  flex: 1; min-width: 0; background: rgba(255, 255, 255, .04); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 10px 12px; color: var(--text); font: inherit; text-transform: uppercase;
}
.co-coupon input:focus { outline: none; border-color: var(--brand); }
.co-coupon-msg { font-size: 13.5px; font-weight: 600; }
.co-coupon-msg:empty { display: none; }
.co-coupon-msg.ok { color: #34d399; }
.co-coupon-msg.err { color: #f87171; }
.co-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); cursor: pointer; }
.co-consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--brand); flex: none; }
.co-consent a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ---------------------- Jogos de futebol ---------------------- */
.kicker .live-dot { display: inline-block; vertical-align: middle; margin-right: 6px; }
.games { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.games-day { font-weight: 800; font-size: 15px; color: var(--muted); margin: 26px 0 12px; }
.games-day:first-child { margin-top: 0; }
.game {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 16px 18px;
  display: grid; gap: 12px; transition: border-color .2s, transform .18s;
}
.game:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.game.is-live { border-color: rgba(255, 59, 48, .5); box-shadow: 0 0 0 1px rgba(255, 59, 48, .2), 0 20px 40px -24px rgba(255, 59, 48, .6); }
.game-comp { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.game-comp img { width: 18px; height: 18px; object-fit: contain; background: #fff; border-radius: 4px; padding: 1px; }
.game-tag { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; padding: 3px 9px; border-radius: 999px; background: rgba(255, 255, 255, .06); text-transform: none; letter-spacing: 0; }
.game-tag.live { background: rgba(255, 59, 48, .15); color: #ff6b61; }
.game-tag .live-dot { width: 7px; height: 7px; box-shadow: none; }
.game-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
.team { display: grid; justify-items: center; gap: 7px; text-align: center; font-weight: 700; font-size: 14px; min-width: 0; }
.team span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crest { width: 44px; height: 44px; display: grid; place-items: center; }
.crest img { width: 44px; height: 44px; object-fit: contain; }
.crest:empty::after { content: attr(data-i); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--muted); font-weight: 800; font-size: 18px; }
.game-time { font-size: 22px; font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.game-score { font-size: 26px; font-weight: 800; font-variant-numeric: tabular-nums; white-space: nowrap; }
.game-score i { font-style: normal; color: var(--muted); font-size: 18px; }
.game-ch { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--brand); border-top: 1px dashed var(--border); padding-top: 10px; }

/* ---------------------- Próximas rodadas ---------------------- */
.rounds { margin-top: 44px; }
.rounds-title { font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 16px; }
.rounds-tabs { justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
@media (max-width: 620px) { .rounds-tabs { justify-content: flex-start; flex-wrap: nowrap; } }
.round-group .games-day { margin-top: 14px; }
.round-ch { color: var(--brand); }
.game-time small { display: block; font-size: 11.5px; font-weight: 700; color: var(--muted); text-transform: capitalize; letter-spacing: 0; text-align: center; }

/* ---------------------- Aparelho com TV configurada ---------------------- */
.prod-conf { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; font-weight: 600; color: #34d399; }
.prod-conf svg { flex: none; margin-top: 2px; }
.co-bundle { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); display: grid; gap: 14px; }
.co-bundle-head { display: flex; gap: 12px; align-items: flex-start; }
.co-bundle-head svg { color: #34d399; flex: none; margin-top: 2px; }
.co-bundle-head span { display: grid; gap: 2px; }
.co-bundle-head small { color: var(--muted); font-size: 13.5px; }
.now-item.is-live { border-color: rgba(255, 59, 48, .45); }
.now-item.is-live .tag { background: rgba(255, 59, 48, .18); color: #ff6b61; }

/* ---------------------- Order bump ---------------------- */
.bump {
  display: block; cursor: pointer; border: 2px dashed color-mix(in srgb, var(--brand) 70%, transparent);
  border-radius: 16px; background: color-mix(in srgb, var(--brand) 7%, transparent); transition: background .15s, border-color .15s;
}
.bump:hover { background: color-mix(in srgb, var(--brand) 12%, transparent); }
.bump.on { border-style: solid; border-color: #34d399; background: rgba(52, 211, 153, .08); }
.bump input { position: absolute; opacity: 0; pointer-events: none; }
.bump:has(input:focus-visible) { box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 35%, transparent); }
.bump-body { display: grid; gap: 8px; padding: 12px 14px; }
.bump-badge {
  justify-self: start; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px; background: linear-gradient(120deg, var(--brand), var(--brand-2)); color: #fff;
}
.bump-row { display: flex; gap: 12px; align-items: flex-start; }
.bump-row img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: #fff; flex: none; }
.bump-text { display: grid; gap: 4px; }
.bump-text b { font-size: 14.5px; line-height: 1.35; display: flex; gap: 9px; align-items: flex-start; }
.bump-text small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.bump-check {
  width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--brand); flex: none; margin-top: 1px;
  display: grid; place-items: center; background: transparent;
}
.bump.on .bump-check { background: #34d399; border-color: #34d399; }
.bump.on .bump-check::after { content: ''; width: 6px; height: 10px; border: solid #062d16; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg) translate(-1px, -1px); }

/* ---------------------- Destaques do topo ---------------------- */
.highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
@media (max-width: 520px) { .highlights { grid-template-columns: 1fr; } }
.hl {
  display: flex; gap: 11px; align-items: flex-start; padding: 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, .035); border: 1px solid var(--border); transition: border-color .15s, background .15s;
}
a.hl:hover { border-color: color-mix(in srgb, var(--brand) 55%, transparent); background: color-mix(in srgb, var(--brand) 8%, transparent); }
.hl-ic {
  width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--brand) 18%, transparent); color: var(--brand-2);
}
.hl-txt { display: grid; gap: 2px; min-width: 0; }
.hl-txt b { font-size: 14.5px; line-height: 1.3; }
.hl-txt small { color: var(--muted); font-size: 12.5px; line-height: 1.4; }

/* crédito de foto (licença CC exige citar o autor) */
.prod-credit {
  position: absolute; right: 6px; bottom: 5px; z-index: 1; font-size: 9.5px; color: #6b7280;
  background: rgba(255, 255, 255, .85); padding: 1px 6px; border-radius: 6px; max-width: 90%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* destaques em faixa no alto do topo: visíveis ao abrir o site */
.hero { padding-top: 22px; }
.hero .highlights { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0 0 34px; }
.hero .hl { padding: 11px 13px; }
@media (max-width: 980px) { .hero .highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 26px; } }
@media (max-width: 520px) {
  .hero .highlights { gap: 8px; }
  .hero .hl { padding: 9px 10px; gap: 8px; }
  .hero .hl-ic { width: 30px; height: 30px; }
  .hero .hl-txt b { font-size: 13px; }
  .hero .hl-txt small { display: none; } /* no celular fica só o título, para não empurrar o resto */
}

/* ---------------------- Localização automática ---------------------- */
.geo-row { display: flex; align-items: center; gap: 8px 12px; flex-wrap: wrap; margin-top: 10px; }
.geo-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--border-strong); color: var(--text); font-size: 13px; font-weight: 600;
}
.geo-btn:hover { border-color: var(--brand); }
.geo-btn:disabled { opacity: .6; cursor: default; }
.geo-btn svg { color: var(--brand-2); }
.geo-hint { color: var(--muted); font-size: 12.5px; }
.geo-hint:empty { display: none; }

/* ---------------------- Logo maior + abertura animada ---------------------- */
.nav-inner { height: 80px; }
.logo img { height: 64px; }
@media (max-width: 620px) { .nav-inner { height: 68px; } .logo img { height: 50px; } }

.intro { display: none; }
html.intro-on .intro {
  display: grid; place-items: center; position: fixed; inset: 0; z-index: 300; background: var(--bg);
  /* rede de segurança: se o site.js não rodar, some sozinha */
  animation: intro-failsafe .01s linear 3s forwards;
}
html.intro-on body { overflow: hidden; }
html.intro-on header.nav .logo img { visibility: hidden; } /* a do menu aparece quando a grande chega */
.intro-logo {
  width: min(62vw, 340px); height: auto; transform-origin: center;
  animation: intro-in .55s cubic-bezier(.2, .8, .2, 1) both;
  filter: drop-shadow(0 0 40px color-mix(in srgb, var(--brand) 45%, transparent));
}
html.intro-go .intro { background: transparent; transition: background .6s ease; }
html.intro-go .intro-logo { transition: transform .7s cubic-bezier(.65, 0, .25, 1), filter .7s; filter: none; animation: none; }
@keyframes intro-in { from { opacity: 0; transform: scale(.82); } to { opacity: 1; transform: scale(1); } }
@keyframes intro-failsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ---------------------- Planos no celular: comparação de relance ----------------------
   Cada plano vira uma linha: nome + economia | preço/mês + total | botão.
   Os 4 cabem numa tela; benefícios comuns aparecem uma vez (.plans-common). */
.plans-common { display: none; }
@media (max-width: 620px) {
  .plans, .plans-3, .plans-4 { grid-template-columns: 1fr; gap: 10px; max-width: none; }
  .plans .plan {
    display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
    grid-template-areas: "name price" "save note" "cta cta";
    column-gap: 12px; row-gap: 4px; padding: 14px 16px 14px; border-radius: 16px;
  }
  .plans .plan.pop { box-shadow: 0 0 0 1px color-mix(in srgb, var(--brand) 55%, transparent), 0 14px 30px -18px var(--brand); }
  .plans .plan .badge {
    position: absolute; top: -9px; left: auto; right: 14px; transform: none;
    font-size: 10.5px; padding: 3px 9px;
  }
  .plans .plan h3 { grid-area: name; font-size: 18px; margin: 0; }
  .plans .plan .tagline { display: none; }
  .plans .plan .price { grid-area: price; justify-self: end; margin: 0; gap: 4px; }
  .plans .plan .price .cur { font-size: 13px; margin-bottom: 3px; }
  .plans .plan .price .val { font-size: 27px; }
  .plans .plan .price .per { font-size: 12.5px; margin-bottom: 3px; }
  .plans .plan .price-note { grid-area: note; justify-self: end; margin: 0; min-height: 0; font-size: 12px; text-align: right; }
  .plans .plan .save { grid-area: save; margin: 0; min-height: 0; font-size: 12px; gap: 6px; }
  .plans .plan .save span { font-size: 10.5px; padding: 2px 6px; }
  .plans .plan .save.none { display: none; }
  .plans .plan ul { display: none; }
  .plans:not(.same-features) .plan ul { display: grid; grid-column: 1 / -1; gap: 6px; margin: 8px 0 4px; }
  .plans .plan .btn { grid-area: cta; margin-top: 8px; padding: 11px 16px; font-size: 15px; }

  .plans-common {
    display: block; margin-top: 14px; padding: 14px 16px; border-radius: 16px;
    background: var(--surface); border: 1px solid var(--border);
  }
  .plans-common b { display: block; font-size: 14px; margin-bottom: 8px; }
  .plans-common ul { list-style: none; display: grid; gap: 6px; }
  .plans-common li { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: #dbe0ea; }
  .plans-common li svg { flex: none; color: var(--brand-2); width: 16px; height: 16px; margin-top: 1px; }
}

/* =====================================================================
   Ajustes de celular (auditoria em 390 e 360 px)
   ===================================================================== */

/* topo: colunas que podem encolher — antes a vitrine esticava a coluna e cortava o título */
.hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.hero-grid > * { min-width: 0; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: minmax(0, 1fr); } }

/* menu ☰ */
.nav-toggle { display: none; }
.nav-wa { display: none; }
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid; align-content: center; gap: 5px; width: 44px; height: 44px; padding: 0 11px;
    border-radius: 12px; border: 1px solid var(--border-strong); background: rgba(255, 255, 255, .04); cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; border-radius: 2px; background: var(--text); transition: transform .2s, opacity .2s; }
  header.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  header.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  header.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  header.nav.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%; padding: 8px 16px 16px;
    background: rgba(7, 8, 13, .97); border-bottom: 1px solid var(--border); backdrop-filter: blur(14px);
  }
  header.nav.menu-open .nav-links a { padding: 14px 6px; font-size: 16px; color: var(--text); border-bottom: 1px solid var(--border); }
  header.nav.menu-open .nav-links .nav-wa { display: block; color: var(--wa); font-weight: 700; border-bottom: 0; }
}

@media (max-width: 620px) {
  /* título e textos do topo proporcionais à tela */
  h1 { font-size: clamp(30px, 8.6vw, 38px); margin-bottom: 14px; }
  .hero p.sub { font-size: 16px; margin-bottom: 20px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .eyebrow { font-size: 12px; margin-bottom: 16px; }

  /* vitrine de canais: 4 por linha, nomes legíveis */
  .chan-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .chan-name { font-size: 11.5px; }
  .showcase { padding: 14px; }

  /* alvos de toque de pelo menos ~40px */
  .foot-links a, .foot-pages a { display: inline-block; padding: 10px 4px; }
  .plans-foot a { display: inline-block; padding: 10px 2px; }
  .co-consent { padding: 6px 0; }
  .co-consent input { width: 22px; height: 22px; }

  /* letras miúdas */
  .plan .badge, .prod .badge, .pick-badge { font-size: 11.5px; }
  .prod-credit { font-size: 10px; }
  .tech-result { font-size: 14px; }

  /* seções um pouco mais enxutas: a página fica menos comprida */
  .sec { padding: 56px 0; }
  .sec-head { margin-bottom: 28px; }
}
@media (max-width: 620px) {
  .plans .plan .badge { font-size: 11.5px; }
  .plans .plan .save span { font-size: 11.5px; }
  .co-fields label small, .field label small { font-size: 12.5px; }
}
.save-txt { font-style: normal; }
@media (max-width: 620px) {
  /* no celular a economia vira só o selo "11% OFF" embaixo do nome; o total fica do outro lado */
  .plans .plan .save-txt { display: none; }
  .plans .plan .save { white-space: nowrap; }
  .plans .plan .save span { font-size: 12px; padding: 3px 9px; }
  .plans .plan .price-note { white-space: nowrap; }
}
/* no checkout do celular o botão flutuante cobria o "Finalizar pedido" */
@media (max-width: 620px) { body.checkout-page .wa-fab { display: none; } }

/* ---------------------- Filmes de hoje (Telecine) ---------------------- */
.movies { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 980px) { .movies { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .movies { grid-template-columns: 1fr; } }
.movie-ch { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 16px 18px; display: grid; gap: 12px; align-content: start; }
.movie-ch-name { font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-2); }
.movie-now { display: grid; gap: 6px; }
.movie-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; color: #ff6b61; }
.movie-tag .live-dot { width: 7px; height: 7px; box-shadow: none; }
.movie-now b { font-size: 17px; line-height: 1.3; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.movie-now p { color: var(--muted); font-size: 13.5px; line-height: 1.5; }
.movie-bar { height: 4px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.movie-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.movie-next { list-style: none; display: grid; gap: 7px; border-top: 1px dashed var(--border); padding-top: 10px; }
.movie-next li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #dbe0ea; }
.movie-next time { font-weight: 800; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 44px; }
.rating { display: inline-grid; place-items: center; min-width: 24px; height: 20px; padding: 0 4px; border-radius: 5px; font-size: 11.5px; font-weight: 800; color: #fff; background: #6b7280; }
.rating.r-l { background: #16a34a; } .rating.r-10 { background: #2563eb; } .rating.r-12 { background: #ca8a04; }
.rating.r-14 { background: #ea580c; } .rating.r-16 { background: #dc2626; } .rating.r-18 { background: #111; border: 1px solid #444; }

/* ---------------------- Catálogo Netflix ---------------------- */
.posters { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
@media (max-width: 620px) {
  .posters { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 8px; margin: 0 -16px; padding-inline: 16px; scrollbar-width: none; }
  .posters::-webkit-scrollbar { display: none; }
  .poster { flex: 0 0 62%; scroll-snap-align: start; }
}
.poster { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: grid; }
.poster-img { position: relative; aspect-ratio: 2 / 3; background: linear-gradient(160deg, #3b0a0f, #0c0e15 70%); }
.poster-img img { width: 100%; height: 100%; object-fit: cover; }
.poster-ph { position: absolute; inset: auto 14px 16px 14px; font-weight: 800; font-size: 19px; line-height: 1.2; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .6); }
.poster-badge { position: absolute; top: 10px; left: 10px; background: #e50914; color: #fff; font-size: 11.5px; font-weight: 800; padding: 3px 9px; border-radius: 6px; }
.poster-body { padding: 12px 14px 14px; display: grid; gap: 4px; }
.poster-body small { color: var(--muted); font-size: 12px; font-weight: 600; }
.poster-body b { font-size: 15px; line-height: 1.3; }
.poster-body p { color: var(--muted); font-size: 13px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------------------- Combo em destaque ---------------------- */
.combo {
  display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 34px; align-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 16%, var(--surface)), var(--surface) 60%);
  border: 1px solid color-mix(in srgb, var(--brand) 45%, transparent); border-radius: 26px; padding: 30px; box-shadow: var(--shadow);
}
@media (max-width: 860px) { .combo { grid-template-columns: 1fr; gap: 20px; padding: 20px; } }
.combo-img { background: #fff; border-radius: 20px; aspect-ratio: 1 / 1; display: grid; place-items: center; position: relative; overflow: hidden; max-height: 380px; }
.combo-img img { position: absolute; inset: 8%; width: 84%; height: 84%; object-fit: contain; }
@media (max-width: 860px) { .combo-img { aspect-ratio: 16 / 10; } }
.combo-body { display: grid; gap: 14px; }
.combo-body h2 { font-size: clamp(24px, 3.4vw, 34px); line-height: 1.15; letter-spacing: -.02em; }
.combo-body > p { color: var(--muted); }
.combo-list { list-style: none; display: grid; gap: 8px; }
.combo-list li { display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center; font-size: 15px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, .04); }
.combo-list li svg { color: var(--brand-2); }
.combo-list li b { font-variant-numeric: tabular-nums; }
.combo-total { display: grid; gap: 2px; }
.combo-total span { color: var(--muted); font-size: 14px; }
.combo-total b { font-size: 38px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.combo-total small { color: var(--muted); font-size: 13px; }
/* sem pôster: faixa com o título (não repete o nome embaixo) */
.poster.no-img .poster-img { aspect-ratio: 16 / 9; background: linear-gradient(135deg, #e50914 -40%, #3b0a0f 45%, #0c0e15 100%); }
.poster.no-img .poster-body b { display: none; }

/* =====================================================================
   Topo com mais movimento: TV com capas, Fire TV Stick, contadores e letreiros
   ===================================================================== */
.region-pill {
  display: inline-flex; align-items: center; gap: 7px; margin: 0 0 14px;
  padding: 7px 14px 7px 10px; border-radius: 999px; font-size: 13px; font-weight: 700;
  color: #fff; background: rgba(255, 255, 255, .06); border: 1px solid var(--border-strong);
  transition: border-color .2s, transform .2s;
}
.region-pill svg { color: var(--brand-2); }
.region-pill:hover { border-color: var(--brand); transform: translateY(-1px); }
.hero-copy .eyebrow { margin-right: 8px; }

/* contadores */
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 26px; }
.hero-stats .stat {
  padding: 12px 12px 11px; border-radius: 14px; background: rgba(255, 255, 255, .035);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.hero-stats .stat::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s ease .2s;
}
.hero-stats.counted .stat::after { transform: scaleX(1); }
.hero-stats b { display: block; font-size: clamp(20px, 2.4vw, 27px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.hero-stats .stat > span { display: block; color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.3; margin-top: 3px; }

/* palco: TV + cartões flutuando */
.hero-stage { position: relative; padding: 26px 10px 44px; }
.stage-glow {
  position: absolute; inset: 6% 4%; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--brand) 60%, transparent), transparent),
              radial-gradient(closest-side at 70% 60%, rgba(229, 9, 20, .45), transparent);
  animation: glow 8s ease-in-out infinite alternate;
}
@keyframes glow { to { transform: scale(1.08) translate(3%, -2%); opacity: .75; } }
.tv { position: relative; z-index: 1; transform: perspective(1400px) rotateY(-9deg) rotateX(3deg); transition: transform .6s ease; }
.hero-stage:hover .tv { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.tv-screen {
  position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: #000;
  border: 7px solid #15171f; outline: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 0, 0, .6) inset;
}
.tv-screen::after { /* reflexo de vidro */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .12), transparent 32%, transparent 70%, rgba(255, 255, 255, .04));
}
.tv-foot { width: 34%; height: 12px; margin: 0 auto; border-radius: 0 0 12px 12px; background: linear-gradient(#1b1e28, #0d0f15); }
.tv-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.1s ease; }
.tv-slide.on { opacity: 1; }
.tv-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.tv-slide.on img { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12) translate(-1.5%, -1%); } }
.tv-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 26px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  transform: translateY(8px); opacity: 0; transition: all .7s ease .35s;
}
.tv-slide.on figcaption { transform: none; opacity: 1; }
.tv-slide figcaption small { display: block; color: #ff3d47; font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.tv-slide figcaption b { font-size: clamp(15px, 2vw, 21px); font-weight: 800; }
.tv-ui { position: absolute; left: 12px; right: 12px; top: 10px; bottom: 10px; pointer-events: none; }
.tv-live {
  position: absolute; top: 0; left: 0; display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px; border-radius: 6px; background: rgba(0, 0, 0, .55);
  font-size: 10.5px; font-weight: 800; letter-spacing: .08em;
}
.tv-live i { width: 7px; height: 7px; border-radius: 50%; background: #ff3b30; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }
.tv-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .22); overflow: hidden; }
.tv-bar i { display: block; height: 100%; width: 100%; background: #e50914; transform-origin: left; transform: scaleX(0); }
.tv-bar i.run { animation: tvbar var(--slide, 5s) linear forwards; }
@keyframes tvbar { to { transform: scaleX(1); } }
.tv-logos { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 18px; background: #0b0d13; }
.tv-logos span { display: grid; place-items: center; border-radius: 10px; background: #fff; padding: 8px; }
.tv-logos img { max-height: 38px; object-fit: contain; }

.float-card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: 10px 13px; border-radius: 16px; color: var(--text);
  background: rgba(18, 20, 29, .86); border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .9);
  animation: bob 6s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(-8px); } }
.float-card b { display: block; font-size: 13.5px; line-height: 1.2; }
.float-card small { display: block; color: var(--muted); font-size: 11.5px; line-height: 1.3; }
.fc-live { top: 0; right: -4px; flex-direction: column; align-items: flex-start; gap: 7px; animation-delay: -2s; }
.fc-kicker { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; }
.fc-kicker .live-dot { width: 7px; height: 7px; box-shadow: none; }
.fc-logos { display: flex; gap: 6px; }
.fc-logos span { width: 40px; height: 28px; border-radius: 7px; background: #fff; display: grid; place-items: center; padding: 3px; }
.fc-logos img { max-height: 20px; object-fit: contain; }
.fc-stick { left: -6px; bottom: 6px; max-width: 250px; }
.fc-stick img { width: 56px; height: 56px; object-fit: contain; border-radius: 10px; background: #fff; padding: 4px; flex: 0 0 auto; }
.fc-stick:hover { border-color: var(--brand); }
.fc-region { right: 4px; bottom: 0; animation-delay: -4s; }
.fc-region svg { color: var(--brand-2); flex: 0 0 auto; }

/* letreiros */
.hero-marquees { margin-top: 30px; display: grid; gap: 12px; }
.marquee {
  display: flex; overflow: hidden; user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { flex: 0 0 auto; display: flex; gap: 12px; padding-right: 12px; animation: mq var(--dur, 40s) linear infinite; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-100%); } }
.mq-logo { width: 96px; height: 54px; flex: 0 0 auto; border-radius: 12px; background: #fff; display: grid; place-items: center; padding: 8px 12px; }
.mq-logo img { max-height: 36px; object-fit: contain; }
.mq-cover { position: relative; width: 190px; aspect-ratio: 16 / 9; flex: 0 0 auto; border-radius: 10px; overflow: hidden; background: #111; }
.mq-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.mq-cover:hover img { transform: scale(1.07); }
.mq-cover b {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 9px 6px; font-size: 11.5px; font-weight: 700;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 980px) {
  .hero-stage { max-width: 600px; margin: 0 auto; width: 100%; }
}
@media (max-width: 620px) {
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 20px; }
  .hero-stage { padding: 20px 0 58px; }
  .tv { transform: none; }
  .hero-stage:hover .tv { transform: none; }
  .tv-screen { border-width: 5px; border-radius: 12px; }
  .fc-live { top: 0; right: 0; padding: 7px 9px; }
  .fc-logos span { width: 32px; height: 22px; }
  .fc-stick { left: 0; bottom: 0; max-width: 64%; padding: 7px 9px; gap: 8px; }
  .fc-stick img { width: 42px; height: 42px; }
  .fc-region { display: none; }
  .float-card b { font-size: 12.5px; }
  .mq-logo { width: 78px; height: 46px; padding: 7px 9px; }
  .mq-cover { width: 150px; }
  .hero-marquees { margin-top: 18px; gap: 10px; }
}

/* =====================================================================
   Netflix: fileiras que deslizam, capas deitadas
   ===================================================================== */
.nf-shelf { margin-top: 26px; }
.sec-head + .nf-shelf { margin-top: 8px; }
.nf-shelf-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.nf-shelf-head h3 { font-size: 19px; font-weight: 800; letter-spacing: -.01em; }
.nf-arrows { display: flex; gap: 6px; }
.nf-arrow {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 22px; line-height: 1;
  color: var(--text); background: rgba(255, 255, 255, .06); border: 1px solid var(--border-strong);
}
.nf-arrow:hover { border-color: #e50914; background: rgba(229, 9, 20, .18); }
.nf-row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 23%); gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 6px 2px 18px; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .2) transparent;
}
.nf-row:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; border-radius: 12px; }
.nf-card {
  scroll-snap-align: start; border-radius: 14px; overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); transition: transform .3s ease, border-color .3s, box-shadow .3s;
}
.nf-card:hover { transform: translateY(-5px); border-color: rgba(229, 9, 20, .55); box-shadow: 0 24px 40px -22px rgba(229, 9, 20, .55); }
.nf-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(140deg, #3b0a0f, #111); }
.nf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.nf-card:hover .nf-img img { transform: scale(1.08); }
.nf-ph { position: absolute; inset: 0; display: grid; place-items: center; padding: 14px; text-align: center; font-weight: 800; font-size: 17px; }
.nf-badge {
  position: absolute; top: 8px; left: 8px; padding: 3px 8px; border-radius: 6px;
  background: #e50914; color: #fff; font-size: 11px; font-weight: 800;
}
.nf-body { padding: 11px 13px 14px; }
.nf-body small { color: var(--muted); font-size: 12px; font-weight: 600; }
.nf-body b { display: block; font-size: 15.5px; margin: 1px 0 4px; }
.nf-body p {
  color: var(--muted); font-size: 13px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 980px) { .nf-row { grid-auto-columns: minmax(240px, 40%); } }
@media (max-width: 620px) {
  .nf-row { grid-auto-columns: 78%; gap: 10px; }
  .nf-arrows { display: none; }
  .nf-shelf-head h3 { font-size: 17px; }
}

/* =====================================================================
   Área de atendimento
   ===================================================================== */
.region { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 44px; align-items: center; }
.region-copy h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.12; letter-spacing: -.02em; margin-bottom: 12px; }
.region-copy > p { color: var(--muted); margin-bottom: 20px; max-width: 52ch; }
.region-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.region-chips li {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, .045); border: 1px solid var(--border); font-weight: 700; font-size: 14px;
  transition: border-color .2s, transform .2s;
}
.region-chips li:hover { border-color: var(--brand); transform: translateY(-2px); }
.region-chips li svg { color: var(--brand-2); }
.region-chips li small { color: var(--muted); font-weight: 600; font-size: 11.5px; }
.region-chips li.base { background: linear-gradient(120deg, color-mix(in srgb, var(--brand) 30%, transparent), color-mix(in srgb, var(--brand-2) 20%, transparent)); border-color: color-mix(in srgb, var(--brand) 60%, transparent); }
.region-chips li.base small { color: #fff; opacity: .85; }
.region-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.region-map {
  position: relative; aspect-ratio: 1; width: 100%; max-width: 440px; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--brand) 14%, transparent), transparent);
}
.region-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.region-map line { stroke: color-mix(in srgb, var(--brand) 55%, transparent); stroke-width: .35; stroke-dasharray: 1.2 1.2; animation: dash 3s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -4.8; } }
.region-map .ring { position: absolute; left: 50%; top: 50%; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent); transform: translate(-50%, -50%); }
.region-map .r1 { width: 30%; height: 30%; }
.region-map .r2 { width: 62%; height: 62%; border-style: dashed; opacity: .7; }
.region-map .r3 { width: 92%; height: 92%; opacity: .45; }
.region-map .ring.r1::after {
  content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 2px solid var(--brand);
  animation: ping 2.6s ease-out infinite;
}
@keyframes ping { from { transform: scale(1); opacity: .9; } to { transform: scale(3); opacity: 0; } }
.rbase {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2;
  display: grid; justify-items: center; gap: 4px; text-align: center;
}
.rbase svg { width: 38px; height: 38px; padding: 8px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 0 0 6px color-mix(in srgb, var(--brand) 25%, transparent); }
.rbase b { font-size: 13px; font-weight: 800; white-space: nowrap; padding: 2px 8px; border-radius: 6px; background: rgba(7, 8, 13, .75); }
.rdot { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); display: grid; justify-items: center; gap: 3px; z-index: 1; }
.rdot i { width: 11px; height: 11px; border-radius: 50%; background: var(--brand-2); animation: dotpulse 2.4s ease-out infinite; animation-delay: var(--d); }
@keyframes dotpulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-2) 70%, transparent); } 80%, 100% { box-shadow: 0 0 0 12px transparent; } }
.rdot b { font-size: 11.5px; font-weight: 700; white-space: nowrap; color: var(--text); padding: 1px 6px; border-radius: 5px; background: rgba(7, 8, 13, .7); }
@media (max-width: 860px) { .region { grid-template-columns: minmax(0, 1fr); gap: 20px; } .region-map { max-width: 360px; } }
@media (max-width: 620px) {
  .region-cta .btn { flex: 1 1 100%; }
  .region-map { max-width: 300px; }
  .rdot b { font-size: 10px; }
}

/* quem pediu menos movimento: tudo parado, letreiros viram rolagem manual */
@media (prefers-reduced-motion: reduce) {
  .stage-glow, .float-card, .tv-slide.on img, .region-map line, .region-map .ring.r1::after, .rdot i, .tv-live i { animation: none; }
  .tv, .hero-stage:hover .tv { transform: none; }
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
  .marquee-track[aria-hidden] { display: none; }
  .hero-stats .stat::after { transition: none; }
}

/* celular/tablet: a TV sobe para logo depois do título (primeira coisa visual ao abrir) */
@media (max-width: 980px) {
  .hero-grid { display: flex; flex-direction: column; gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy > .region-pill { order: 1; align-self: flex-start; }
  .hero-copy > .eyebrow { order: 2; align-self: flex-start; }
  .hero-copy > h1 { order: 3; }
  .hero-grid > .hero-stage { order: 4; margin-bottom: 18px; }
  .hero-copy > .sub { order: 5; }
  .hero-copy > .hero-cta { order: 6; }
  .hero-copy > .trust { order: 7; }
  .hero-copy > .hero-stats { order: 8; }
}
@media (max-width: 620px) {
  .region-pill { font-size: 12px; padding: 6px 12px 6px 9px; margin-bottom: 10px; }
  .hero-stage { padding-top: 6px; }
}

/* mapa da região: nome da sede embaixo do alfinete */
.rbase { display: flex; flex-direction: column; align-items: center; }
.rbase svg { display: block; }
@media (max-width: 620px) { .region-map { max-width: 290px; margin-top: 8px; } }
@media (max-width: 620px) {
  .region-chips { gap: 6px; }
  .region-chips li { font-size: 13px; padding: 6px 11px; }
}

/* =====================================================================
   Site em páginas: transição entre elas, menu com a página atual,
   cabeçalho animado das páginas internas e cartões "Conheça"
   ===================================================================== */

/* troca de página suave (Chrome/Edge/Safari novos; nos outros abre normal) */
@view-transition { navigation: auto; }
header.nav { view-transition-name: site-header; }
.wa-fab { view-transition-name: wa-fab; }
::view-transition-old(root) { animation: vt-out .25s ease both; }
::view-transition-new(root) { animation: vt-in .5s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-14px) scale(.985); filter: blur(4px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(22px); filter: blur(6px); } }

/* barra de progresso da rolagem */
.scroll-bar {
  position: fixed; left: 0; right: 0; top: 0; height: 3px; z-index: 60; pointer-events: none;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(var(--p, 0)); transform-origin: left;
  box-shadow: 0 0 12px var(--brand);
}

/* menu: página atual sublinhada, sublinhado corre no hover */
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
}
.nav-links a:hover::after, .nav-links a.on::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.on { color: #fff; font-weight: 700; }
.nav-links { gap: 22px; }
@media (max-width: 1100px) { .nav-links { gap: 16px; } .nav-links a { font-size: 14.5px; } }
@media (max-width: 900px) {
  header.nav.menu-open .nav-links a::after { display: none; }
  header.nav.menu-open .nav-links a.on { color: var(--brand-2); }
}

/* brilho que passa no botão principal */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 45%; z-index: -1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn-primary:hover::before { left: 120%; }

/* ---------- cabeçalho das páginas internas ---------- */
.page-hero { position: relative; overflow: hidden; padding: 46px 0 40px; border-bottom: 1px solid var(--border); }
.ph-bg { position: absolute; inset: 0; z-index: -1; }
.ph-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.ph-orb.o1 { width: 460px; height: 460px; left: -120px; top: -200px; background: var(--brand); animation: orb 14s ease-in-out infinite alternate; }
.ph-orb.o2 { width: 420px; height: 420px; right: -140px; top: -120px; background: var(--brand-2); opacity: .32; animation: orb 18s ease-in-out infinite alternate-reverse; }
.page-hero[data-page="streaming"] .ph-orb.o2 { background: #e50914; opacity: .38; }
@keyframes orb { to { transform: translate(90px, 60px) scale(1.15); } }
.ph-grid {
  position: absolute; inset: 0; opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse at 50% 0%, #000, transparent 70%);
  animation: gridmove 20s linear infinite;
}
@keyframes gridmove { to { background-position: 44px 44px; } }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }
.crumbs b { color: var(--text); font-weight: 600; }
.page-hero h1 { max-width: 20ch; }
.page-hero h1 { background: linear-gradient(100deg, #fff 30%, color-mix(in srgb, var(--brand-2) 70%, #fff) 50%, #fff 70%); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shine 6s ease-in-out infinite; }
@keyframes shine { 0%, 100% { background-position: 100% 0; } 50% { background-position: 0 0; } }
.page-hero .sub { color: var(--muted); font-size: clamp(16px, 2vw, 19px); max-width: 56ch; margin-bottom: 24px; }
.ph-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.ph-in { opacity: 0; transform: translateY(16px); animation: phin .7s cubic-bezier(.2, .7, .2, 1) forwards; animation-delay: var(--d, 0s); }
@keyframes phin { to { opacity: 1; transform: none; } }
.ph-visual { margin-top: 30px; }
.ph-visual .hero-marquees { margin-top: 0; }
.ph-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.ph-chips li {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  background: rgba(255, 255, 255, .05); border: 1px solid var(--border-strong);
  opacity: 0; transform: scale(.8); animation: pop .45s cubic-bezier(.3, 1.4, .5, 1) forwards; animation-delay: calc(.45s + var(--i) * .06s);
}
.ph-chips li:first-child { background: linear-gradient(120deg, color-mix(in srgb, var(--brand) 35%, transparent), color-mix(in srgb, var(--brand-2) 22%, transparent)); border-color: var(--brand); }
.ph-chips li svg { color: var(--brand-2); }
@keyframes pop { to { opacity: 1; transform: none; } }
@media (max-width: 620px) {
  .page-hero { padding: 26px 0 28px; }
  .ph-cta .btn { flex: 1 1 100%; }
  .ph-visual { margin-top: 22px; }
  .ph-chips li { font-size: 12.5px; padding: 6px 10px; }
}

/* ---------- cartões "Conheça" ---------- */
.explore .sec-head { margin-bottom: 30px; }
.ex-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.ex-card {
  --mx: 50%; --my: 50%;
  position: relative; display: flex; flex-direction: column; border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), border-color .3s, box-shadow .35s;
}
.ex-card::before { /* luz que segue o mouse */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(260px circle at var(--mx) var(--my), color-mix(in srgb, var(--brand-2) 22%, transparent), transparent 60%);
}
.ex-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand) 60%, transparent); box-shadow: 0 28px 50px -26px color-mix(in srgb, var(--brand) 70%, transparent); }
.ex-card:hover::before { opacity: 1; }
.ex-card[data-page="streaming"]:hover { border-color: rgba(229, 9, 20, .6); box-shadow: 0 28px 50px -26px rgba(229, 9, 20, .6); }
.ex-art { position: relative; height: 128px; overflow: hidden; display: grid; place-items: center; background: radial-gradient(circle at 50% 120%, color-mix(in srgb, var(--brand) 25%, transparent), transparent 70%); }
.ex-body { padding: 14px 16px 18px; display: grid; gap: 3px; }
.ex-body small { color: var(--brand); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ex-body b { font-size: 19px; letter-spacing: -.01em; }
.ex-body span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.ex-go {
  position: absolute; right: 14px; bottom: 16px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--border-strong); font-weight: 700; transition: transform .3s, background .3s;
}
.ex-card:hover .ex-go { transform: translateX(4px); background: linear-gradient(120deg, var(--brand), var(--brand-2)); border-color: transparent; }
.ex-card .ex-body { padding-right: 56px; }

.ex-logos { display: grid; grid-template-columns: repeat(3, 58px); gap: 8px; transform: rotate(-6deg); transition: transform .5s ease; }
.ex-logos span { height: 38px; border-radius: 9px; background: #fff; display: grid; place-items: center; padding: 5px; box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .8); }
.ex-logos img { max-height: 26px; object-fit: contain; }
.ex-card:hover .ex-logos { transform: rotate(0) scale(1.06); }
.ex-covers { position: relative; width: 190px; height: 100px; }
.ex-covers img {
  position: absolute; left: 50%; top: 50%; width: 140px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 9px;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, .9); transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.ex-covers img:nth-child(1) { transform: translate(-50%, -50%) translate(-34px, 6px) rotate(-9deg); }
.ex-covers img:nth-child(2) { transform: translate(-50%, -50%) translate(34px, 6px) rotate(9deg); }
.ex-covers img:nth-child(3) { transform: translate(-50%, -50%) translateY(-4px); z-index: 1; }
.ex-card:hover .ex-covers img:nth-child(1) { transform: translate(-50%, -50%) translate(-58px, 10px) rotate(-14deg); }
.ex-card:hover .ex-covers img:nth-child(2) { transform: translate(-50%, -50%) translate(58px, 10px) rotate(14deg); }
.ex-card:hover .ex-covers img:nth-child(3) { transform: translate(-50%, -50%) translateY(-10px) scale(1.08); }
.ex-map { position: relative; display: grid; justify-items: center; gap: 6px; color: #fff; }
.ex-map svg { width: 46px; height: 46px; padding: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); position: relative; z-index: 1; transition: transform .4s; }
.ex-map b { font-size: 13px; padding: 2px 9px; border-radius: 99px; background: rgba(0, 0, 0, .45); }
.ex-ping { position: absolute; top: 0; left: 50%; width: 46px; height: 46px; margin-left: -23px; border-radius: 50%; border: 2px solid var(--brand); animation: ping 2.4s ease-out infinite; }
.ex-card:hover .ex-map svg { transform: translateY(-6px); }
.ex-help { font-size: 64px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; transition: transform .5s; }
.ex-card:hover .ex-help { transform: rotate(-12deg) scale(1.12); }
.ex-stick img { height: 104px; width: auto; object-fit: contain; filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .7)); background: #fff; border-radius: 14px; padding: 8px; transition: transform .5s; }
.ex-card:hover .ex-stick img { transform: translateY(-6px) rotate(-6deg); }
@media (max-width: 620px) {
  .ex-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .ex-art { height: 96px; }
  .ex-logos { grid-template-columns: repeat(3, 40px); gap: 5px; }
  .ex-logos span { height: 28px; }
  .ex-logos img { max-height: 18px; }
  .ex-covers { width: 130px; height: 80px; }
  .ex-covers img { width: 96px; }
  .ex-body { padding: 10px 12px 14px; }
  .ex-card .ex-body { padding-right: 12px; }
  .ex-body b { font-size: 16px; }
  .ex-body span { font-size: 12.5px; }
  .ex-go { display: none; }
  .ex-stick img { height: 78px; }
  .ex-help { font-size: 48px; }
}

/* entrada em cascata dos cartões (o atraso vem do site.js) */
.reveal { transition-delay: var(--rd, 0s); }

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
  .ph-orb, .ph-grid, .page-hero h1, .ex-ping { animation: none; }
  .ph-in, .ph-chips li { animation: none; opacity: 1; transform: none; }
  .btn-primary::before { display: none; }
}
/* título das páginas internas: entrada + brilho no mesmo elemento */
.page-hero h1.ph-in { animation: phin .7s cubic-bezier(.2, .7, .2, 1) var(--d, 0s) forwards, shine 6s ease-in-out 1s infinite; }
@media (prefers-reduced-motion: reduce) { .page-hero h1.ph-in { animation: none; opacity: 1; transform: none; } }

/* =====================================================================
   Streamings: abas com a logo de cada plataforma
   ===================================================================== */
.st-tabs {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 14px; margin-bottom: 6px;
  scrollbar-width: none; scroll-snap-type: x proximity;
}
.st-tabs::-webkit-scrollbar { display: none; }
.st-tab {
  flex: 0 0 auto; scroll-snap-align: start; cursor: pointer;
  display: grid; place-items: center; width: 132px; height: 58px; padding: 10px 16px; border-radius: 14px;
  background: #fff; border: 2px solid transparent; opacity: .55; filter: grayscale(.6);
  transition: opacity .25s, filter .25s, transform .25s, box-shadow .25s, border-color .25s;
}
.st-tab img { max-height: 30px; max-width: 100%; object-fit: contain; }
.st-tab b { color: #111; font-size: 15px; }
.st-tab:hover { opacity: .9; filter: none; transform: translateY(-2px); }
.st-tab.on {
  opacity: 1; filter: none; transform: translateY(-3px);
  border-color: var(--st); box-shadow: 0 14px 30px -12px var(--st), 0 0 0 4px color-mix(in srgb, var(--st) 25%, transparent);
}
.st-panel { display: none; }
.st-panel.on { display: block; animation: stin .45s cubic-bezier(.2, .7, .2, 1); }
@keyframes stin { from { opacity: 0; transform: translateY(12px); } }
.st-panel .nf-card:hover { border-color: color-mix(in srgb, var(--st) 70%, transparent); box-shadow: 0 24px 40px -22px color-mix(in srgb, var(--st) 85%, transparent); }
.st-panel .nf-badge { background: var(--st); }
.st-panel .nf-arrow:hover { border-color: var(--st); background: color-mix(in srgb, var(--st) 22%, transparent); }
.st-panel .nf-shelf:first-child { margin-top: 10px; }
@media (max-width: 620px) {
  .st-tab { width: 104px; height: 48px; padding: 8px 12px; }
  .st-tab img { max-height: 24px; }
}

/* logos das plataformas no cabeçalho da página Streaming */
.ph-brands { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.ph-brands span {
  display: grid; place-items: center; width: 112px; height: 50px; padding: 9px 14px; border-radius: 12px; background: #fff;
  opacity: 0; transform: translateY(10px) scale(.9); animation: pop .5s cubic-bezier(.3, 1.4, .5, 1) forwards;
  animation-delay: calc(.45s + var(--i) * .07s); transition: transform .25s;
}
.ph-brands span:hover { transform: translateY(-3px) scale(1.04); }
.ph-brands img { max-height: 26px; max-width: 100%; object-fit: contain; }
@media (max-width: 620px) {
  .ph-brands { gap: 7px; }
  .ph-brands span { width: calc(25% - 6px); height: 40px; padding: 7px 8px; }
  .ph-brands img { max-height: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .st-panel.on { animation: none; }
  .ph-brands span { animation: none; opacity: 1; transform: none; }
}

/* pedido com Pix do SyncPay: aguardando / confirmado */
.pay-wait {
  display: flex; align-items: center; gap: 12px; margin-top: 16px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border-strong);
}
.pay-wait b { display: block; font-size: 15px; }
.pay-wait small { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; }
.pay-spin {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--brand) 25%, transparent); border-top-color: var(--brand);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pay-wait.done { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 14%, transparent); }
.pay-ok-ic {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-weight: 800;
  animation: pop .45s cubic-bezier(.3, 1.4, .5, 1);
}
@media (prefers-reduced-motion: reduce) { .pay-spin { animation-duration: 3s; } }

/* =====================================================================
   Planos com aparelho (Simples, Completo, Top)
   ===================================================================== */
.tiers { display: grid; gap: 18px; align-items: stretch; }
.tiers-1 { grid-template-columns: minmax(0, 420px); justify-content: center; }
.tiers-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin: 0 auto; }
.tiers-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tiers-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tier {
  position: relative; display: flex; flex-direction: column; padding: 22px 20px 20px; border-radius: 22px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), border-color .3s, box-shadow .35s;
}
.tier:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.tier.pop {
  border: 2px solid transparent;
  background: linear-gradient(180deg, var(--surface-2), var(--surface)) padding-box,
              linear-gradient(140deg, var(--brand), var(--brand-2)) border-box;
  box-shadow: 0 30px 60px -30px var(--brand);
}
@media (min-width: 981px) { .tier.pop { transform: translateY(-10px); } .tier.pop:hover { transform: translateY(-16px); } }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 20px -8px var(--brand);
}
.tier-head { text-align: center; }
.tier-head small { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tier-head h3 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.tier.pop .tier-head h3 { background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tier-img {
  height: 150px; margin: 14px 0 10px; border-radius: 16px; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 50% 40%, #fff, #e9edf2);
}
.tier-img img { max-height: 132px; max-width: 86%; object-fit: contain; transition: transform .5s ease; }
.tier:hover .tier-img img { transform: scale(1.07) rotate(-3deg); }
.tier-device { text-align: center; font-weight: 700; font-size: 14.5px; color: var(--muted); margin-bottom: 12px; }
.tier-price { text-align: center; display: grid; gap: 1px; margin-bottom: 12px; }
.tier-price s { color: var(--muted); font-size: 14px; }
.tier-price b { font-size: 34px; font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.tier-price span { color: var(--muted); font-size: 13px; }
.tier-price em { font-style: normal; color: var(--brand-2); font-weight: 700; font-size: 13.5px; }
.tier-promo {
  display: flex; align-items: center; justify-content: center; gap: 6px; text-align: center;
  margin: 0 0 12px; padding: 8px 10px; border-radius: 12px; font-size: 13px; font-weight: 700;
  color: #fff; background: color-mix(in srgb, var(--brand) 18%, transparent); border: 1px dashed color-mix(in srgb, var(--brand) 60%, transparent);
}
.tier-promo svg { color: var(--brand-2); flex: 0 0 auto; }
.tier-feats { list-style: none; display: grid; gap: 8px; margin: 0 0 18px; flex: 1; }
.tier-feats li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; line-height: 1.35; }
.tier-feats svg { color: var(--brand); flex: 0 0 auto; margin-top: 1px; }
.tier-other { display: block; text-align: center; margin-top: 10px; font-size: 13px; color: var(--muted); }
.tier-other:hover { color: #fff; text-decoration: underline; }
@media (max-width: 1080px) { .tiers-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 26px; } }
@media (max-width: 980px) {
  .tiers-3 { grid-template-columns: minmax(0, 1fr); max-width: 440px; margin: 0 auto; row-gap: 24px; }
  .tier.pop { order: -1; }
}
@media (max-width: 620px) {
  .tiers-2, .tiers-4 { grid-template-columns: minmax(0, 1fr); row-gap: 24px; }
  .tier-img { height: 124px; }
  .tier-price b { font-size: 30px; }
}

/* checkout: pacote com a promoção do combo */
.pick.promo { border-color: color-mix(in srgb, var(--brand) 55%, transparent); }
.pick-price s { display: block; color: var(--muted); font-size: 12px; font-weight: 500; }

/* faixa: garantia de 1 ano + instalação grátis + consulte no WhatsApp */
.offer-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 22px;
  margin: 26px auto 0; padding: 14px 18px; max-width: 900px; border-radius: 16px;
  background: color-mix(in srgb, var(--brand) 10%, var(--surface)); border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent);
  font-size: 14.5px; font-weight: 700;
}
.offer-note > span { display: inline-flex; align-items: center; gap: 8px; }
.offer-note > span svg { color: var(--brand-2); flex: 0 0 auto; }
.offer-wa {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: var(--wa); color: #062d16; font-size: 13.5px; transition: transform .2s, box-shadow .2s;
}
.offer-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--wa); }
.offer-wa svg { flex: 0 0 auto; }
.offer-note.compact { justify-content: flex-start; margin: 18px 0 0; padding: 12px 14px; font-size: 13.5px; }
.install-wa { margin-top: 10px; }
.prod-conf small { color: var(--muted); font-weight: 500; }
.tier-feats b { font-weight: 700; }
@media (max-width: 620px) {
  .offer-note { flex-direction: column; align-items: stretch; text-align: left; gap: 10px; }
  .offer-wa { justify-content: center; }
}
/* instalação: colunas nunca passam da tela (a faixa de garantia empurrava no celular) */
.install > * { min-width: 0; }
@media (max-width: 860px) { .install { grid-template-columns: minmax(0, 1fr); } }
.city-row { grid-template-columns: minmax(0, 1fr) 92px auto; }
.city-check.compact .city-row { grid-template-columns: minmax(0, 1fr) 92px; }
@media (max-width: 520px) { .city-row { grid-template-columns: minmax(0, 1fr) 86px; } }
.city-row .field, .city-row input { min-width: 0; }
.install-box { grid-template-columns: minmax(0, 1fr); }
.install-wa { white-space: normal; text-align: center; line-height: 1.25; }

/* =====================================================================
   Checkout da assinatura: "Só o plano" ou "Aparelho + Plano"
   ===================================================================== */
.co-mode { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.co-mode-btn {
  display: flex; align-items: center; gap: 12px; text-align: left; cursor: pointer; color: var(--text);
  padding: 14px 16px; border-radius: 16px; background: rgba(255, 255, 255, .03); border: 2px solid var(--border-strong);
  transition: border-color .2s, background .2s, transform .2s;
}
.co-mode-btn svg { flex: 0 0 auto; color: var(--muted); }
.co-mode-btn b { display: block; font-size: 15.5px; }
.co-mode-btn small { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.3; }
.co-mode-btn:hover { transform: translateY(-1px); border-color: rgba(255, 255, 255, .3); }
.co-mode-btn.on { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, transparent); }
.co-mode-btn.on svg { color: var(--brand-2); }
.co-sub-title { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 4px 0 10px; }

.co-devices { margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--border-strong); animation: stin .4s ease; }
.co-devices-head { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; margin-bottom: 12px; }
.co-devices-head svg { color: var(--brand-2); }
.co-devices-head small { color: var(--muted); font-size: 13px; width: 100%; }
.dev-picks { display: grid; gap: 10px; }
.dev-pick {
  position: relative; display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; align-items: center; gap: 12px;
  padding: 10px 14px 10px 10px; border-radius: 14px; cursor: pointer;
  background: rgba(255, 255, 255, .03); border: 2px solid var(--border); transition: border-color .2s, background .2s;
}
.dev-pick input { position: absolute; opacity: 0; pointer-events: none; }
.dev-pick:hover { border-color: var(--border-strong); }
.dev-pick.on { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); }
.dev-pick:focus-within { outline: 2px solid var(--brand-2); outline-offset: 2px; }
.dev-img { width: 64px; height: 64px; border-radius: 12px; background: #fff; display: grid; place-items: center; overflow: hidden; }
.dev-img img { max-width: 54px; max-height: 54px; object-fit: contain; }
.dev-main { min-width: 0; display: grid; gap: 1px; }
.dev-main small { color: var(--brand-2); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.dev-main b { font-size: 14.5px; line-height: 1.25; }
.dev-main em { font-style: normal; font-size: 12.5px; font-weight: 700; color: #34d399; }
.dev-main em.none { color: var(--muted); font-weight: 500; }
.dev-price { font-weight: 800; font-size: 15px; white-space: nowrap; }
.dev-pick .pick-badge { top: -9px; right: 12px; }
.co-devices-foot { display: flex; align-items: center; gap: 7px; margin-top: 12px; color: var(--muted); font-size: 13px; }
.co-devices-foot svg { color: var(--brand-2); flex: 0 0 auto; }
.co-ref select { margin-bottom: 8px; }
@media (max-width: 560px) {
  .co-mode { grid-template-columns: minmax(0, 1fr); }
  .dev-pick { grid-template-columns: 54px minmax(0, 1fr); }
  .dev-img { width: 54px; height: 54px; }
  .dev-img img { max-width: 46px; max-height: 46px; }
  .dev-price { grid-column: 2; }
}

/* =====================================================================
   Comparativo de aparelhos
   ===================================================================== */
.compare-box { margin-top: 26px; border-radius: 18px; border: 1px solid var(--border-strong); background: var(--surface); overflow: hidden; }
.co-devices .compare-box { margin-top: 14px; }
.compare-box > summary {
  display: flex; align-items: center; gap: 9px; padding: 15px 18px; cursor: pointer; list-style: none;
  font-weight: 800; font-size: 15.5px;
}
.compare-box > summary::-webkit-details-marker { display: none; }
.compare-box > summary::after { content: "▾"; margin-left: auto; color: var(--muted); transition: transform .25s; }
.compare-box[open] > summary::after { transform: rotate(180deg); }
.compare-box > summary svg { color: var(--brand-2); }
.cmp-scroll { overflow-x: auto; border-top: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
.cmp { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 13.5px; }
.cmp th, .cmp td { padding: 11px 12px; text-align: center; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp thead th { font-weight: 700; vertical-align: bottom; }
.cmp thead th img { display: block; margin: 0 auto 8px; width: 58px; height: 58px; object-fit: contain; background: #fff; border-radius: 12px; padding: 4px; }
.cmp thead th small { display: block; color: var(--brand-2); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.cmp thead th span { display: block; font-size: 13px; line-height: 1.3; }
.cmp tbody th {
  text-align: left; color: var(--muted); font-weight: 600; white-space: nowrap;
  position: sticky; left: 0; background: var(--surface); z-index: 1;
}
.cmp thead th:first-child { position: sticky; left: 0; background: var(--surface); z-index: 1; }
.cmp .pop { background: color-mix(in srgb, var(--brand) 9%, var(--surface)); }
.cmp small { display: block; color: var(--muted); font-size: 11.5px; }
.cmp .cmp-total { font-size: 15px; }
.cmp .cmp-promo { color: #34d399; font-weight: 700; }
.cmp-none { color: var(--muted); opacity: .6; }
.store .compare-box { margin-top: 30px; }
.cmp-hint { display: none; margin: 0; padding: 0 18px 10px; color: var(--muted); font-size: 12.5px; }
@media (max-width: 700px) { .cmp-hint { display: block; } }

/* =====================================================================
   Logo maior no topo; encolhe quando a pessoa rola a página
   ===================================================================== */
.nav-inner { height: 100px; transition: height .35s ease; }
.logo img { height: 84px; transition: height .35s ease, filter .35s ease; filter: drop-shadow(0 6px 18px color-mix(in srgb, var(--brand) 35%, transparent)); }
header.nav.scrolled .nav-inner { height: 70px; }
header.nav.scrolled .logo img { height: 52px; filter: none; }
@media (max-width: 620px) {
  .nav-inner { height: 82px; }
  .logo img { height: 66px; }
  header.nav.scrolled .nav-inner { height: 64px; }
  header.nav.scrolled .logo img { height: 46px; }
}
@media (prefers-reduced-motion: reduce) { .nav-inner, .logo img { transition: none; } }

/* menu: "Aparelho + Plano" em destaque */
.nav-links a.nav-combo {
  color: #fff; font-weight: 700; padding: 6px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 22%, transparent); border: 1px solid color-mix(in srgb, var(--brand) 55%, transparent);
}
.nav-links a.nav-combo::after { display: none; }
.nav-links a.nav-combo:hover { background: color-mix(in srgb, var(--brand) 35%, transparent); }
@media (max-width: 900px) {
  header.nav.menu-open .nav-links a.nav-combo { border-radius: 10px; margin: 8px 0; text-align: center; border-bottom: 1px solid color-mix(in srgb, var(--brand) 55%, transparent); }
}

/* =====================================================================
   Checkout: quantas telas
   ===================================================================== */
.co-screens { margin-top: 18px; }
.co-screens-note { color: var(--muted); font-size: 13px; margin: -4px 0 10px; }
.scr-picks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.scr-pick {
  position: relative; display: grid; justify-items: center; gap: 1px; padding: 10px 6px 9px; border-radius: 14px; cursor: pointer; text-align: center;
  background: rgba(255, 255, 255, .03); border: 2px solid var(--border); transition: border-color .2s, background .2s;
}
.scr-pick input { position: absolute; opacity: 0; pointer-events: none; }
.scr-pick b { font-size: 22px; line-height: 1.1; }
.scr-pick span { font-size: 12px; color: var(--muted); }
.scr-pick em { font-style: normal; font-size: 11.5px; font-weight: 800; color: #34d399; min-height: 15px; }
.scr-pick:hover { border-color: var(--border-strong); }
.scr-pick.on { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, transparent); }
.scr-pick:focus-within { outline: 2px solid var(--brand-2); outline-offset: 2px; }

.plans-screens {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 8px; text-align: center;
  margin: 18px auto 0; max-width: 760px; color: var(--muted); font-size: 14px;
}
.plans-screens svg { color: var(--brand-2); flex: 0 0 auto; }
.plans-screens a { color: var(--brand-2); font-weight: 700; }

/* =====================================================================
   Checkout: barra fixa embaixo (total + finalizar)
   ===================================================================== */
.co-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(10, 12, 18, .94); border-top: 1px solid var(--border-strong);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -18px 40px -20px rgba(0, 0, 0, .9);
  padding-bottom: env(safe-area-inset-bottom);
  animation: barin .45s cubic-bezier(.2, .7, .2, 1);
}
@keyframes barin { from { transform: translateY(100%); } }
.co-bar-inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.co-bar-sum { min-width: 0; display: grid; }
.co-bar-sum small { color: var(--muted); font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.co-bar-sum b { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.co-bar .btn { flex: 0 0 auto; padding: 14px 22px; }
body.has-co-bar { padding-bottom: 84px; }
body.has-co-bar .wa-fab { bottom: 96px; }
@media (max-width: 620px) {
  .co-bar-inner { padding: 9px 14px; }
  .co-bar-sum b { font-size: 19px; }
  .co-bar .btn { padding: 13px 16px; font-size: 15px; }
}

/* =====================================================================
   Checkout mais claro (principalmente no celular)
   ===================================================================== */
/* telas: preço de cada opção e quanto economiza */
.scr-pick strong { font-size: 13px; font-weight: 800; color: var(--text); margin-top: 3px; }
.scr-pick em { font-size: 11.5px; font-weight: 800; color: #34d399; min-height: 15px; }
.scr-explain {
  margin: 10px 0 0; padding: 10px 12px; border-radius: 12px; font-size: 13.5px; line-height: 1.45;
  background: color-mix(in srgb, var(--brand) 10%, transparent); border: 1px dashed color-mix(in srgb, var(--brand) 50%, transparent);
}
.scr-explain s { color: var(--muted); }
.scr-explain b { color: #fff; }
.scr-explain em { font-style: normal; font-weight: 800; color: #34d399; }

/* resumo */
.co-sum-eco {
  display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 12px; padding: 10px 12px; border-radius: 12px;
  background: rgba(52, 211, 153, .12); border: 1px solid rgba(52, 211, 153, .35); color: #b7f5dc; font-size: 14px;
}
.co-sum-eco b { color: #34d399; font-size: 16px; }
.co-sum-eco svg { color: #34d399; }
.co-sum-month { margin-top: 8px; text-align: center; color: var(--muted); font-size: 12.5px; }
.co-sum-month b { color: var(--text); }

/* aparelhos: os de fora dos planos aparecem com "Ver mais" */
.dev-pick.dev-more { display: none; }
[data-devices].show-all .dev-pick.dev-more { display: grid; }
.dev-more-btn {
  width: 100%; margin-top: 10px; padding: 11px; border-radius: 12px; cursor: pointer; font-weight: 700; font-size: 14px;
  color: var(--text); background: rgba(255, 255, 255, .04); border: 1px dashed var(--border-strong);
}
.dev-more-btn:hover { border-color: var(--brand); }

/* barra fixa: economia */
.co-bar-eco {
  display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 999px; vertical-align: middle;
  font-style: normal; font-size: 11.5px; font-weight: 800; color: #062d16; background: #34d399;
}

@media (max-width: 620px) {
  /* passos mais compactos */
  .checkout .co-step { padding: 18px 14px; }
  .checkout .co-step h3 { font-size: 18px; margin-bottom: 14px; }
  .co-mode-btn { padding: 11px 12px; }
  .co-mode-btn b { font-size: 15px; }

  /* pacotes em 2 colunas: dá para ver os 4 sem rolar */
  .co-step .picks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .co-step .picks .pick { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2px; padding: 14px 10px 10px; text-align: center; }
  .co-step .picks .pick input { position: absolute; opacity: 0; pointer-events: none; }
  .co-step .picks .pick .pick-main b { font-size: 16px; }
  .co-step .picks .pick .pick-main small { font-size: 12px; }
  .co-step .picks .pick .pick-price { font-size: 17px; justify-self: center; text-align: center; }
  .co-step .picks .pick .pick-price em { display: block; }
  .co-step .picks .pick .pick-badge { left: 50%; right: auto; transform: translateX(-50%); white-space: nowrap; font-size: 10.5px; }
  .co-step .picks .pick.on { box-shadow: 0 0 0 2px var(--brand) inset; }

  /* telas */
  .scr-picks { gap: 6px; }
  .scr-pick { padding: 9px 2px 8px; border-radius: 12px; }
  .scr-pick b { font-size: 20px; }
  .scr-pick strong { font-size: 12px; }
  .scr-pick em { font-size: 10.5px; }

  /* aparelhos mais baixos */
  .dev-pick { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 10px; padding: 9px 10px 9px 8px; }
  .dev-img { width: 48px; height: 48px; }
  .dev-img img { max-width: 42px; max-height: 42px; }
  .dev-main b { font-size: 13.5px; }
  .dev-price { grid-column: auto; font-size: 14px; }

  .co-bar-eco { display: block; width: max-content; margin: 2px 0 0; }
}
@media (max-width: 620px) { .co-step .picks .pick::before { display: none; } }
.co-sum-line { gap: 12px; }
.co-sum-line > span:first-child { min-width: 0; }
.co-sum-line > b { white-space: nowrap; }

/* =====================================================================
   Páginas com formulário: Teste grátis e Indique um amigo
   ===================================================================== */
.fp-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 40px; align-items: center; }
.fp-copy h1 { max-width: 16ch; }
.fp-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-strong);
  border-radius: 22px; padding: 24px; box-shadow: var(--shadow);
}
.fp-form, .fp-result { display: grid; gap: 12px; }
.fp-form h2, .fp-result h2 { font-size: 20px; font-weight: 800; }
.fp-form .field { display: grid; gap: 6px; }
.fp-form .field span { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.fp-form .field small { font-weight: 500; opacity: .8; }
.fp-form input:not([type="checkbox"]) {
  width: 100%; padding: 13px 14px; border-radius: 12px; font: inherit; font-size: 16px; color: var(--text);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border-strong); outline: none; transition: border-color .2s, box-shadow .2s;
}
.fp-form input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 25%, transparent); }
.fp-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.fp-consent input { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--brand); flex: 0 0 auto; }
.fp-consent a { color: var(--text); text-decoration: underline; }
.fp-msg { min-height: 18px; font-size: 13.5px; color: #ff8a9b; }
.fp-msg.ok { color: #34d399; font-weight: 700; }
.fp-steps { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.fp-steps li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.fp-steps li span {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; font-size: 14px; font-weight: 800; color: #fff;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
}
.fp-perks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 8px; }
.fp-perks div { padding: 14px 12px; border-radius: 16px; background: rgba(255, 255, 255, .04); border: 1px solid var(--border); }
.fp-perks b { display: block; font-size: 26px; font-weight: 800; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fp-perks span { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
.fp-result { text-align: center; }
.fp-ok { width: 54px; height: 54px; margin: 0 auto; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); animation: pop .45s cubic-bezier(.3, 1.4, .5, 1); }
.fp-ok svg { width: 26px; height: 26px; }
.fp-code {
  font-size: 32px; font-weight: 800; letter-spacing: .08em; padding: 12px; border-radius: 14px;
  border: 2px dashed var(--brand); background: color-mix(in srgb, var(--brand) 10%, transparent); user-select: all;
}
.fp-result p { color: var(--muted); font-size: 14px; }
.fp-result p b { color: var(--text); }
.pay-indique {
  display: flex; align-items: center; gap: 12px; margin-top: 14px; padding: 14px 16px; border-radius: 14px; text-align: left;
  background: color-mix(in srgb, var(--brand) 12%, transparent); border: 1px solid color-mix(in srgb, var(--brand) 45%, transparent);
}
.pay-indique svg { color: var(--brand-2); flex: 0 0 auto; }
.pay-indique b { display: block; }
.pay-indique small { color: var(--muted); }
@media (max-width: 900px) { .fp-grid { grid-template-columns: minmax(0, 1fr); gap: 22px; } }
@media (max-width: 620px) {
  .fp-card { padding: 18px 16px; border-radius: 18px; }
  .fp-perks { grid-template-columns: minmax(0, 1fr); }
  .fp-perks div { display: flex; align-items: center; gap: 12px; }
  .fp-perks b { font-size: 22px; min-width: 64px; }
}

/* checkout: sugestões de rua */
.has-sug { position: relative; }
.street-sug { position: absolute; left: 0; right: 0; top: 100%; z-index: 30; margin-top: 4px; list-style: none; max-height: 280px; overflow-y: auto; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.street-sug li { display: grid; gap: 1px; padding: 10px 12px; cursor: pointer; border-bottom: 1px solid var(--border); }
.street-sug li:last-child { border-bottom: 0; }
.street-sug li:hover, .street-sug li.on { background: color-mix(in srgb, var(--brand) 14%, transparent); }
.street-sug b { font-size: 14px; }
.street-sug small { color: var(--muted); font-size: 12px; }

/* convite do app (instalar / notificações) */
.app-card { position: fixed; left: 50%; bottom: 18px; z-index: 80; width: min(420px, calc(100% - 24px)); transform: translate(-50%, 140%); display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 18px; background: rgba(18, 20, 29, .97); border: 1px solid var(--border-strong); box-shadow: 0 24px 50px -20px rgba(0, 0, 0, .9); backdrop-filter: blur(12px); transition: transform .35s cubic-bezier(.2, .7, .2, 1); }
.app-card.show { transform: translate(-50%, 0); }
.app-card img { border-radius: 12px; flex: 0 0 auto; }
.app-card-txt { display: grid; gap: 3px; min-width: 0; }
.app-card-txt b { font-size: 15px; }
.app-card-txt small { color: var(--muted); font-size: 13px; line-height: 1.4; }
.app-card-actions { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.ios-share { display: inline-block; width: 14px; height: 16px; vertical-align: -2px; border: 2px solid currentColor; border-top: 0; border-radius: 0 0 3px 3px; position: relative; }
body:has(.app-card.show) .wa-fab { opacity: 0; pointer-events: none; }

/* aviso de saída */
.exit-pop { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 16px; background: rgba(3, 4, 8, .72); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s; }
.exit-pop.show { opacity: 1; }
.exit-box { position: relative; width: min(420px, 100%); padding: 30px 24px 22px; border-radius: 22px; text-align: center; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-strong); box-shadow: var(--shadow); transform: translateY(18px) scale(.96); transition: transform .35s cubic-bezier(.2, .9, .3, 1.2); }
.exit-pop.show .exit-box { transform: none; }
.exit-x { position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--muted); font-size: 26px; line-height: 1; cursor: pointer; }
.exit-x:hover { background: rgba(255, 255, 255, .06); color: var(--text); }
.exit-gift { font-size: 46px; animation: exitGift 1.6s ease-in-out infinite; }
@keyframes exitGift { 0%, 100% { transform: rotate(0); } 20% { transform: rotate(-10deg) scale(1.08); } 40% { transform: rotate(8deg); } }
.exit-box h3 { margin: 8px 0 8px; font-size: 22px; letter-spacing: -.02em; }
.exit-box p { margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.exit-code { display: block; width: 100%; margin: 0 0 16px; padding: 12px; border-radius: 14px; border: 2px dashed var(--brand); background: rgba(255, 255, 255, .03); color: var(--text); font-family: inherit; font-size: 24px; font-weight: 800; line-height: 1.1; letter-spacing: .08em; cursor: pointer; }
.exit-code small { display: block; margin-top: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0; color: var(--muted); }
.exit-actions { display: grid; gap: 10px; }
.exit-actions .btn { width: 100%; justify-content: center; }
.exit-wa { font-size: 13.5px; color: var(--muted); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) { .exit-gift { animation: none; } .exit-box { transition: none; } }

/* depoimento: estrelas e agradecimento */
.star-pick { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-pick input { position: absolute; opacity: 0; pointer-events: none; }
.star-pick label { font-size: 34px; line-height: 1; color: rgba(255, 255, 255, .18); cursor: pointer; transition: color .15s, transform .15s; }
.star-pick label:hover, .star-pick label:hover ~ label, .star-pick input:checked ~ label { color: #fbbf24; }
.star-pick label:active { transform: scale(.9); }
.star-pick input:focus-visible + label { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
.fp-thanks { text-align: center; padding: 28px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.fp-thanks-ic { font-size: 44px; }
.fp-thanks h2 { font-size: 20px; margin: 10px 0 18px; line-height: 1.35; }
