/* =========================================================
   Gloriosos Web · v3
   Linguagem visual inspirada na análise do design system BMW
   (getdesign.md/bmw): canvas claro, faixas escuras azul-marinho,
   uma única cor de ação, cantos retos, contraste 700/300,
   profundidade por superfície e não por sombra.
   ========================================================= */

:root {
  /* Marca */
  --blue: #1c69d4;          /* única cor de ação */
  --blue-press: #0653b6;
  --blue-deep: #0066b1;
  --gold: #f0b429;          /* herança da marca, só na faixa-assinatura */
  --disabled: #d6d6d6;

  /* Superfícies */
  --canvas: #ffffff;
  --soft: #f7f7f7;
  --card: #fafafa;
  --dark: #1a2129;
  --dark-2: #262e38;
  --dark-line: #333c47;
  --hair: #e6e6e6;
  --hair-strong: #8e8e8e;

  /* Texto */
  --ink: #262626;
  --body: #3c3c3c;
  --muted: #6b6b6b;
  --on-dark: #ffffff;
  --on-dark-soft: #bbbbbb;

  /* Semânticas (contrastes verificados, WCAG AA) */
  --accent-on-dark: #6ea5ff;  /* ícones, links e foco sobre faixas escuras: 6,6:1 */
  --star: #a8710f;            /* estrelas sobre fundo claro: 3,9:1 (não-texto ≥ 3) */
  --star-on-dark: var(--gold);
  --error: #c4271b;           /* 5,75:1 sobre branco */
  --success: #1f7a3a;         /* 5,38:1 sobre branco */
  --focus: var(--blue);

  /* Movimento: um ritmo só para o site todo */
  --dur-1: 150ms;             /* hover, press, micro */
  --dur-2: 250ms;             /* mudança de estado */
  --dur-3: 450ms;             /* entrada e expansão */
  --ease-out: cubic-bezier(.2, .7, .2, 1);   /* chegando: desacelera */
  --ease-in: cubic-bezier(.4, 0, 1, 1);      /* saindo: acelera */

  /* Camadas */
  --z-base: 1; --z-raised: 2; --z-float: 40; --z-menu: 49; --z-header: 50; --z-skip: 100;

  /* Espaçamento */
  --s-xxs: 4px; --s-xs: 8px; --s-sm: 12px; --s-md: 16px;
  --s-lg: 24px; --s-xl: 32px; --s-xxl: 48px; --s-sec: 80px;

  --gutter: 24px;
  --max: 1440px;
  --header-h: 64px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: var(--ease-out);
}

@media (min-width: 1024px) { :root { --gutter: 48px; --s-sec: 112px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); scroll-padding-bottom: 88px; /* foco não fica sob o botão flutuante */ }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;   /* corpo em Regular; o Light (300) fica só nos tamanhos ≥ 18px */
  line-height: 1.6;
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
svg { flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 700; letter-spacing: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong, b { font-weight: 700; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
.dark, .hero, .band-dark, .plan.featured, .case-next, .option { --focus: var(--accent-on-dark); }

[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: var(--z-skip); background: var(--ink); color: #fff; padding: 12px 16px; font-weight: 700; font-size: 14px; }
.skip:focus { top: 12px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.num { font-variant-numeric: tabular-nums; }

/* ---------- Escala tipográfica ---------- */
.display-xl { font-size: clamp(40px, 6vw, 64px); line-height: 1.05; font-weight: 700; }
.display-lg { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.1; font-weight: 700; }
.display-md { font-size: clamp(26px, 3vw, 32px); line-height: 1.15; font-weight: 700; }
.display-sm { font-size: 24px; line-height: 1.25; font-weight: 700; }
.title-lg { font-size: 20px; line-height: 1.3; font-weight: 700; }
.title-md { font-size: 18px; line-height: 1.4; font-weight: 700; }
.body-lg { font-size: 18px; line-height: 1.55; font-weight: 300; }
.body-sm { font-size: 14px; line-height: 1.55; font-weight: 400; }
.caption { font-size: 12px; line-height: 1.4; font-weight: 400; letter-spacing: .5px; color: var(--muted); }
.label {
  font-size: 13px; line-height: 1.3; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ---------- Botões: sempre retangulares ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 28px;
  font-size: 14px; font-weight: 700; line-height: 1; letter-spacing: .5px;
  border: 1px solid transparent; border-radius: 0;
  transition: background-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-press); }
.btn-primary:active { background: var(--blue-press); }
.btn-primary[disabled] { background: var(--disabled); color: #fff; cursor: not-allowed; }
.btn-secondary { background: var(--canvas); color: var(--ink); border-color: var(--hair-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: 0 20px; }

/* Link de texto: MAIÚSCULAS + chevron */
.link-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink);
}
.link-cta svg { width: 14px; height: 14px; color: var(--blue); transition: transform var(--dur-1) var(--ease); }
.link-cta:hover svg { transform: translateX(3px); }
.on-dark .link-cta, .link-cta.on-dark { color: #fff; }
.on-dark .link-cta svg { color: #fff; }
.text-link { color: var(--blue); font-weight: 400; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.text-link:hover { color: var(--blue-press); }

/* Faixa-assinatura (equivalente à M stripe): só em contexto premium */
.stripe { display: block; height: 4px; background: linear-gradient(90deg, var(--blue-deep) 0 33.33%, var(--blue) 33.33% 66.66%, var(--gold) 66.66% 100%); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--canvas);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-1);
}
.site-header.scrolled { border-bottom-color: var(--hair); }
.site-header .container { display: flex; align-items: center; height: var(--header-h); gap: var(--s-xl); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -.1px; }
.logo span { font-weight: 300; }
.logo-mark { width: 28px; height: 28px; }
.nav { display: flex; align-items: center; gap: var(--s-lg); margin-left: auto; }
.nav a:not(.btn) { font-size: 14px; font-weight: 400; letter-spacing: .3px; color: var(--ink); padding: 8px 0; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-2) var(--ease); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav .nav-wa { display: inline-flex; align-items: center; gap: 6px; }
.nav .nav-wa svg { width: 16px; height: 16px; }
.nav-sep { width: 1px; height: 20px; background: var(--hair); }
.nav-toggle { display: none; }

@media (max-width: 1023px) {
  .nav { gap: var(--s-md); }
  .nav .hide-md { display: none; }
}
@media (max-width: 767px) {
  .nav-toggle { display: grid; place-items: center; width: 48px; height: 48px; margin-left: auto; margin-right: -12px; }
  .nav-toggle span:first-child, .nav-toggle span:first-child::before, .nav-toggle span:first-child::after {
    display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: transform var(--dur-2) var(--ease), background-color var(--dur-1);
  }
  .nav-toggle span:first-child::before, .nav-toggle span:first-child::after { content: ""; position: absolute; left: 0; }
  .nav-toggle span:first-child::before { top: -7px; }
  .nav-toggle span:first-child::after { top: 7px; }
  .nav-open .nav-toggle span:first-child { background: transparent; }
  .nav-open .nav-toggle span:first-child::before { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:first-child::after { transform: translateY(-7px) rotate(-45deg); }

  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: var(--z-menu);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--canvas); padding: var(--s-md) var(--gutter) var(--s-xl);
    border-top: 1px solid var(--hair);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity var(--dur-1), transform var(--dur-1) var(--ease), visibility 0s var(--dur-1);
    overflow-y: auto;
  }
  .nav-open .nav { visibility: visible; opacity: 1; transform: none; transition: opacity var(--dur-1), transform var(--dur-1) var(--ease); }
  .nav-open { overflow: hidden; }
  .nav a:not(.btn) { font-size: 20px; font-weight: 700; padding: 16px 0; border-bottom: 1px solid var(--hair); }
  .nav a:not(.btn)::after { display: none; }
  .nav .hide-md { display: flex; }
  .nav-sep { display: none; }
  .nav .btn { margin-top: var(--s-lg); min-height: 52px; }
}

/* ---------- Seções ---------- */
.section { padding: var(--s-sec) 0; }
.section.soft { background: var(--soft); }
.section.dark, .band-dark { background: var(--dark); color: var(--on-dark-soft); }
.dark h1, .dark h2, .dark h3, .dark h4, .band-dark h1, .band-dark h2, .band-dark h3 { color: #fff; }

.sec-head { max-width: 760px; margin-bottom: var(--s-xxl); }
.sec-head .label { display: flex; align-items: center; gap: 12px; color: var(--muted); margin-bottom: var(--s-md); }
.sec-head .label i { font-style: normal; color: var(--blue); }
.dark .sec-head .label { color: var(--on-dark-soft); }
.dark .sec-head .label i { color: var(--accent-on-dark); }
.sec-head p.body-lg { margin-top: var(--s-md); color: var(--body); }
.dark .sec-head p.body-lg { color: var(--on-dark-soft); }
.sec-row { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-lg); flex-wrap: wrap; margin-bottom: var(--s-xxl); }
.sec-row .sec-head { margin-bottom: 0; }

/* ---------- Hero (faixa escura) ---------- */
.hero { position: relative; background: var(--dark); color: var(--on-dark-soft); overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 520px at 78% 38%, rgba(28,105,212,.28), transparent 62%),
    radial-gradient(700px 400px at 100% 100%, rgba(0,102,177,.18), transparent 70%),
    linear-gradient(180deg, #1a2129 0%, #161c23 100%);
}
.hero::after { /* grade técnica discreta */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 30%, #000 75%);
  -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 75%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--s-xxl); padding-top: 72px; padding-bottom: 72px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); padding-top: 96px; padding-bottom: 104px; } }
.hero .label { color: var(--on-dark-soft); display: flex; align-items: center; gap: 12px; }
.hero .label::before { content: ""; width: 24px; height: 2px; background: var(--blue); }
.hero h1 { color: #fff; }
/* O rótulo fica dentro do H1 (palavra-chave para SEO), mas mantém o visual de rótulo */
.hero h1 .label { margin-bottom: var(--s-lg); }
.hero h1 .hl { color: #fff; display: block; font-weight: 300; }
.hero-lead { margin-top: var(--s-lg); max-width: 540px; color: var(--on-dark-soft); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-md); margin-top: var(--s-xl); }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; margin-top: var(--s-xl); font-size: 14px; }
.hero-meta .rating { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; }
.hero-meta .rating small { font-weight: 400; color: var(--on-dark-soft); font-size: 14px; }
.stars { color: var(--gold); letter-spacing: 1px; }
.hero-meta .sep { width: 1px; height: 16px; background: var(--dark-line); }
.hero-meta .g { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--accent-on-dark); }

/* Composição de produto (substitui a fotografia) */
.shot { position: relative; aspect-ratio: 16 / 11.5; max-width: 720px; width: 100%; justify-self: center; }
.shot-desk {
  position: absolute; left: 0; top: 4%; width: 88%;
  background: #fff; border: 1px solid var(--dark-line);
  box-shadow: 0 0 0 8px var(--dark-2), 0 0 0 9px var(--dark-line);
}
.sd-bar { display: flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px; background: #eef0f2; border-bottom: 1px solid var(--hair); }
.sd-bar i { width: 8px; height: 8px; background: #cfd3d8; }
.sd-bar span { margin-left: 10px; flex: 1; max-width: 260px; height: 18px; display: flex; align-items: center; gap: 6px; padding: 0 8px; background: #fff; font-size: 10px; color: var(--muted); letter-spacing: .2px; }
.sd-bar span svg { width: 10px; height: 10px; color: #2e7d32; }
.sd-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--hair); font-size: 11px; color: var(--ink); }
.sd-nav b { font-size: 12px; }
.sd-nav span { display: flex; gap: 14px; color: var(--muted); font-weight: 400; }
.sd-nav em { font-style: normal; background: var(--vet, #2f6b5a); color: #fff; padding: 6px 10px; font-weight: 700; font-size: 10px; }
.sd-hero { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 45%; }
.sd-hero > div:first-child { padding: 22px 18px; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.sd-hero small { font-size: 9px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #2f6b5a; }
.sd-hero strong { font-size: clamp(14px, 2vw, 22px); line-height: 1.1; color: var(--ink); }
.sd-hero p { font-size: 10px; color: var(--muted); line-height: 1.4; }
.sd-hero .sd-btn { align-self: flex-start; background: #2f6b5a; color: #fff; font-size: 10px; font-weight: 700; padding: 8px 12px; display: inline-flex; gap: 6px; align-items: center; }
.sd-hero .sd-btn svg { width: 11px; height: 11px; }
.sd-img { background: linear-gradient(145deg, #3c7563, #1f3b34); display: grid; place-items: center; color: rgba(255,255,255,.9); position: relative; overflow: hidden; }
.sd-img svg { width: 34%; height: auto; }
.sd-img::after { content: ""; position: absolute; inset: auto -20% -40% auto; width: 80%; aspect-ratio: 1; background: rgba(255,255,255,.07); transform: rotate(45deg); }
.sd-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border-top: 1px solid var(--hair); }
.sd-cards div { background: var(--card); padding: 12px 14px; font-size: 10px; color: var(--ink); font-weight: 700; display: flex; flex-direction: column; gap: 6px; }
.sd-cards div i { display: block; height: 4px; width: 70%; background: var(--hair); }
.sd-cards div i + i { width: 45%; }

.shot-phone {
  position: absolute; right: 0; bottom: 0; width: 27%;
  background: #0f1419; padding: 7px; border: 1px solid var(--dark-line);
}
.sp-screen { background: #fff; aspect-ratio: 9 / 18.5; display: flex; flex-direction: column; overflow: hidden; }
.sp-screen .sp-top { height: 14%; background: linear-gradient(145deg, #3c7563, #1f3b34); display: flex; align-items: flex-end; padding: 6px; color: #fff; font-size: 8px; font-weight: 700; }
.sp-screen .sp-body { padding: 8px 7px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.sp-screen .sp-body b { font-size: 9px; line-height: 1.15; color: var(--ink); }
.sp-screen .sp-body i { display: block; height: 3px; background: var(--hair); }
.sp-screen .sp-body i.s { width: 60%; }
.sp-screen .sp-map { margin-top: 4px; flex: 1; background: #e9eef2; position: relative; overflow: hidden; }
.sp-screen .sp-map::before, .sp-screen .sp-map::after { content: ""; position: absolute; background: #fff; }
.sp-screen .sp-map::before { left: 0; right: 0; top: 45%; height: 4px; }
.sp-screen .sp-map::after { top: 0; bottom: 0; left: 55%; width: 4px; }
.sp-screen .sp-map svg { position: absolute; left: 50%; top: 32%; width: 16px; height: 16px; color: #e22718; z-index: 1; }
.sp-screen .sp-wa { margin: 7px; background: #25d366; color: #fff; font-size: 8px; font-weight: 700; text-align: center; padding: 6px 0; }

.shot-serp {
  position: absolute; left: 6%; bottom: 0; width: 54%;
  background: #fff; border: 1px solid var(--hair); color: var(--ink);
}
.shot-serp .q { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-bottom: 1px solid var(--hair); font-size: 11px; color: var(--muted); font-weight: 400; }
.shot-serp .q svg { width: 12px; height: 12px; }
.shot-serp .r { display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: center; padding: 10px 12px; font-size: 11px; }
.shot-serp .r + .r { border-top: 1px solid var(--hair); opacity: .55; }
.shot-serp .r .n { width: 22px; height: 22px; display: grid; place-items: center; background: var(--blue); color: #fff; font-weight: 700; font-size: 11px; }
.shot-serp .r + .r .n { background: var(--soft); color: var(--muted); }
.shot-serp .r b { display: block; font-size: 12px; }
.shot-serp .r small { color: var(--muted); font-size: 10px; }
.shot-serp .r .stars { font-size: 10px; }
.shot-serp .r em { font-style: normal; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); }
.shot-cap { position: absolute; right: 0; top: 0; font-size: 12px; color: var(--on-dark-soft); letter-spacing: .5px; display: none; }

@media (max-width: 599px) {
  .shot { aspect-ratio: 16 / 13; }
  .shot-serp { width: 64%; left: 0; }
  .shot-serp .r + .r { display: none; }
}

/* Especificações técnicas (spec cells) */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--dark-line); }
.specs > div { padding: 24px 20px 28px 0; border-bottom: 1px solid var(--dark-line); }
.specs > div:nth-child(odd) { border-right: 1px solid var(--dark-line); }
.specs > div:nth-child(even) { padding-left: 20px; }
@media (min-width: 768px) {
  .specs { grid-template-columns: repeat(3, 1fr); }
  .specs > div { padding: 28px 24px 32px; border-right: 1px solid var(--dark-line); }
  .specs > div:nth-child(even) { padding-left: 24px; }
  .specs > div:nth-child(3n) { border-right: 0; }
  .specs > div:nth-child(3n+1) { padding-left: 0; }
}
@media (min-width: 1200px) {
  .specs { grid-template-columns: repeat(6, 1fr); }
  .specs > div { border-bottom: 0; }
  .specs > div:nth-child(3n) { border-right: 1px solid var(--dark-line); }
  .specs > div:nth-child(3n+1) { padding-left: 24px; }
  .specs > div:first-child { padding-left: 0; }
  .specs > div:last-child { border-right: 0; }
}
.spec-v { display: block; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.15; font-weight: 700; color: #fff; }
.spec-v small { font-size: .5em; font-weight: 300; margin-left: 2px; color: var(--on-dark-soft); }
.spec-k { display: block; margin-top: 6px; font-size: 14px; color: var(--on-dark-soft); }

/* Versão clara das specs */
.specs.light { border-top-color: var(--hair); }
.specs.light > div { border-color: var(--hair); }
.specs.light .spec-v { color: var(--ink); }
.specs.light .spec-k { color: var(--muted); }

/* ---------- Barra de prova ---------- */
.proof { background: var(--soft); border-bottom: 1px solid var(--hair); }
.proof .container { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-lg) var(--s-xxl); padding-top: 28px; padding-bottom: 28px; }
.g-score { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.g-score .g { width: 28px; height: 28px; }
.g-score b { font-size: 28px; line-height: 1; }
.g-score span { display: flex; flex-direction: column; font-size: 13px; line-height: 1.3; }
.g-score small { color: var(--muted); font-size: 13px; }
.proof .p-item { display: flex; flex-direction: column; font-size: 13px; color: var(--muted); line-height: 1.35; }
.proof .p-item b { color: var(--ink); font-size: 20px; }
.proof .v-sep { width: 1px; align-self: stretch; background: var(--hair); }
.proof .logos { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 32px; margin-left: auto; }
.proof .logos .caption { width: 100%; }
.proof .logos span:not(.caption) { font-size: 15px; font-weight: 700; color: #9a9a9a; letter-spacing: .5px; }
@media (max-width: 1023px) { .proof .logos { margin-left: 0; width: 100%; } .proof .v-sep { display: none; } }

/* ---------- Cartões flexíveis de nicho ----------
   Porte do "expanding flex cards" (SCSS + jQuery) para CSS puro.
   O cartão ativo cresce e mostra o texto; os outros viram faixas.
   Foto: style="background-image:url(...)" no span .option-img (caminho
   relativo ao index.html). Sem foto, fica o
   degradê do nicho com o ícone como marca-d'água. */
.options {
  --ease-card: cubic-bezier(.05, .61, .41, .95);
  display: flex; flex-direction: row; align-items: stretch; gap: 12px;
  height: 480px;
}
.option {
  position: relative; overflow: hidden;
  flex: 1 1 0; min-width: 72px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--nc) 78%, #fff), var(--nc) 45%, color-mix(in srgb, var(--nc) 60%, #000));
  transition: flex-grow var(--dur-3) var(--ease-card);
}
.option.is-active { flex-grow: 6; }

/* Camadas: marca-d'água < foto < sombra < conteúdo */
.option-mark { position: absolute; left: 50%; top: 44%; width: 42%; max-width: 220px; min-width: 56px; height: auto; transform: translate(-50%, -50%); color: rgba(255,255,255,.12); transition: transform var(--dur-3) var(--ease-card); }
.option-img {
  position: absolute; inset: 0;
  background: center / cover no-repeat;
  transform: scale(1.2); /* o original usa background-size 120% → 100% */
  transition: transform var(--dur-3) var(--ease-card);
}
.option.is-active .option-img { transform: scale(1); }
.option-shadow {
  position: absolute; left: 0; right: 0; bottom: -40px; height: 60%;
  background: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.35) 45%, transparent);
  opacity: .6;
  transition: bottom var(--dur-3) var(--ease-card), opacity var(--dur-3) var(--ease-card);
}
.option.is-active .option-shadow { bottom: 0; opacity: 1; }

/* Área clicável: o cartão inteiro */
.option-hit { position: absolute; inset: 0; z-index: 1; cursor: pointer; }
.option.is-active .option-hit { cursor: default; }
.option-hit:focus-visible { outline: 2px solid #fff; outline-offset: -6px; }

.option-label {
  position: absolute; z-index: 2; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 14px;
  pointer-events: none;
  transition: left var(--dur-3) var(--ease-card), bottom var(--dur-3) var(--ease-card);
}
.option.is-active .option-label { left: 32px; bottom: 32px; }
.option-icon {
  display: grid; place-items: center; flex: 0 0 40px; height: 40px;
  border-radius: 50%; /* único elemento redondo: ícone circular */
  background: #fff; color: var(--nc);
}
.option-icon svg { width: 20px; height: 20px; }
.option-info { min-width: 0; color: #fff; white-space: nowrap; }
.option-info > * { position: relative; left: 20px; opacity: 0; transition: left var(--dur-3) var(--ease-card), opacity var(--dur-3) ease-out; }
.option-info .main { font-size: 24px; line-height: 1.25; font-weight: 700; color: #fff; }
.option-info .sub { margin-top: 2px; font-size: 15px; font-weight: 400; color: rgba(255,255,255,.85); transition-delay: .1s; }
.option.is-active .option-info > * { left: 0; opacity: 1; }

.option-more {
  position: absolute; z-index: 2; top: 28px; right: 32px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur-3) ease-out var(--dur-1), transform var(--dur-3) var(--ease-card) var(--dur-1), visibility 0s var(--dur-3);
}
.option.is-active .option-more { opacity: 1; visibility: visible; transform: none; transition: opacity var(--dur-3) ease-out var(--dur-1), transform var(--dur-3) var(--ease-card) var(--dur-1), visibility 0s; }
.option.is-active .option-mark { transform: translate(-50%, -50%) scale(1.15); }
.option-more svg { color: #fff; }

/* Celular: empilhado, o ativo abre na vertical */
@media (max-width: 767px) {
  .options { flex-direction: column; height: auto; gap: 8px; }
  .option { flex: none; height: 76px; min-width: 0; transition: height var(--dur-3) var(--ease-card); }
  .option.is-active { height: 380px; }
  .option-mark { top: 42%; width: 34%; }
  .option-label, .option.is-active .option-label { left: 18px; right: 18px; bottom: 18px; }
  .option-info { white-space: normal; }
  .option-info .main { font-size: 20px; }
  .option-more { top: 20px; right: 20px; }
  /* no celular o nome aparece também no cartão fechado */
  .option:not(.is-active) .option-info .main { left: 0; opacity: 1; font-size: 17px; }
  .option:not(.is-active) .option-info .sub { display: none; }
  .option:not(.is-active) .option-mark { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .option, .option * { transition: none !important; } }

.models-foot { margin-top: var(--s-xxl); padding-top: var(--s-lg); border-top: 1px solid var(--hair); display: flex; flex-wrap: wrap; gap: var(--s-md); justify-content: space-between; align-items: center; font-size: 16px; }

/* ---------- Tudo incluso ---------- */
.inc { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--hair); }
@media (min-width: 600px) { .inc { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .inc { grid-template-columns: repeat(3, 1fr); } }
.inc > div { padding: var(--s-xl) var(--s-lg) var(--s-xl) 0; border-bottom: 1px solid var(--hair); }
@media (min-width: 600px) {
  .inc > div { padding-left: var(--s-lg); border-right: 1px solid var(--hair); }
  .inc > div:nth-child(2n) { border-right: 0; }
  .inc > div:nth-child(2n+1) { padding-left: 0; }
}
@media (min-width: 1024px) {
  .inc > div:nth-child(2n) { border-right: 1px solid var(--hair); }
  .inc > div:nth-child(2n+1) { padding-left: var(--s-lg); }
  .inc > div:nth-child(3n) { border-right: 0; }
  .inc > div:nth-child(3n+1) { padding-left: 0; }
}
.inc svg { width: 28px; height: 28px; color: var(--blue); margin-bottom: var(--s-md); }
.inc h3 { font-size: 18px; line-height: 1.4; }
.inc p { margin-top: 6px; font-size: 15px; }

/* ---------- Planos ---------- */
.config { display: flex; flex-wrap: wrap; gap: var(--s-sm); margin-bottom: var(--s-xl); }
.config-opt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-width: 180px; padding: 14px 18px; background: var(--canvas);
  border: 1px solid var(--hair); text-align: left; transition: border-color var(--dur-1);
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.config-opt small { font-size: 13px; font-weight: 400; color: var(--muted); }
.config-opt:hover { border-color: var(--hair-strong); }
.config-opt[aria-checked="true"] { border: 2px solid var(--blue); padding: 13px 17px; }

.plans { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 1024px) { .plans { grid-template-columns: repeat(3, 1fr); gap: 0; } }
.plan { position: relative; display: flex; flex-direction: column; background: var(--canvas); border: 1px solid var(--hair); padding: var(--s-xl) var(--s-lg); }
@media (min-width: 1024px) {
  .plan { padding: 40px 32px; }
  .plan + .plan { border-left: 0; }
}
.plan.featured { background: var(--dark); border-color: var(--dark); color: var(--on-dark-soft); }
.plan.featured h3, .plan.featured .price .val { color: #fff; }
.plan.featured .stripe { position: absolute; left: 0; right: 0; top: 0; }
.plan .tag { position: absolute; top: 20px; right: 24px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; background: var(--blue); padding: 6px 10px; }
.plan h3 { font-size: 24px; line-height: 1.25; }
.plan .for { margin-top: 8px; font-size: 15px; min-height: 48px; }
.price { margin: var(--s-lg) 0; padding: var(--s-lg) 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.plan.featured .price { border-color: var(--dark-line); }
.price .val { display: block; font-size: 48px; line-height: 1.05; font-weight: 700; color: var(--ink); }
.price .val sup { font-size: 18px; font-weight: 700; vertical-align: top; position: relative; top: 8px; margin-right: 4px; }
.price .val .x { font-size: 18px; font-weight: 300; margin-right: 6px; }
.price .val small { font-size: 18px; font-weight: 300; }
.price .mo { display: block; margin-top: 8px; font-size: 14px; }
.price .zero { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--blue); color: var(--blue); padding: 2px 6px; margin-right: 6px; }
.plan .fine { display: flex; align-items: center; gap: 8px; margin-top: var(--s-md); font-size: 13px; color: var(--muted); }
.plan.featured .fine { color: var(--on-dark-soft); }
.plan .fine svg { width: 16px; height: 16px; }
.feat { margin-top: var(--s-lg); }
.feat h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin: var(--s-lg) 0 var(--s-sm); }
.plan.featured .feat h4 { color: var(--on-dark-soft); }
.feat h4:first-child { margin-top: 0; }
.checks li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 15px; }
.checks svg { width: 18px; height: 18px; margin-top: 2px; color: var(--blue); }
.plan.featured .checks svg { color: var(--accent-on-dark); }
.checks li.off { color: #a3a3a3; }
.checks li.off svg { color: #c4c4c4; }
.plans-foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-md); margin-top: var(--s-xl); font-size: 15px; }
.trust { display: flex; flex-wrap: wrap; gap: var(--s-sm) var(--s-xl); margin-bottom: var(--s-xl); font-size: 14px; color: var(--body); }
.trust li { display: flex; align-items: center; gap: 8px; }
.trust svg { width: 18px; height: 18px; color: var(--blue); }

/* ---------- Comparativo ---------- */
.compare-wrap { border-top: 2px solid var(--ink); }
.compare { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { text-align: left; padding: 18px 16px; border-bottom: 1px solid var(--hair); vertical-align: top; }
.compare thead th { font-size: 16px; font-weight: 700; color: var(--ink); padding-top: 20px; }
.compare thead th small { display: block; font-size: 13px; font-weight: 400; color: var(--muted); margin-top: 2px; }
.compare tbody th { font-weight: 700; color: var(--ink); width: 24%; }
.compare th:first-child { padding-left: 0; }
.compare .us { background: var(--canvas); color: var(--ink); font-weight: 400; }
.compare thead .us { color: var(--blue); }
.compare thead .us { box-shadow: inset 0 3px 0 var(--blue); }
.compare td.no { color: var(--muted); }
@media (max-width: 767px) {
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare td, .compare th { display: block; width: 100%; }
  .compare tr { padding: 16px 0; border-bottom: 1px solid var(--hair); }
  .compare tbody th { padding: 0 0 8px; border: 0; width: 100%; }
  .compare td { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border: 0; }
  .compare td::before { content: attr(data-label); color: var(--muted); font-weight: 400; }
  .compare td.us { padding: 10px 12px; margin-top: 4px; }
  .compare td.us::before { color: var(--blue); font-weight: 700; }
  .compare td { text-align: right; }
}

/* ---------- Abas de categoria ---------- */
.cat-tabs { display: flex; gap: var(--s-lg); border-bottom: 1px solid var(--hair); margin-bottom: var(--s-xl); overflow-x: auto; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tabs button { position: relative; padding: 12px 0 14px; font-size: 14px; font-weight: 400; letter-spacing: .3px; color: var(--muted); white-space: nowrap; }
.cat-tabs button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform var(--dur-2) var(--ease); }
.cat-tabs button:hover { color: var(--ink); }
.cat-tabs button[aria-pressed="true"] { color: var(--ink); font-weight: 700; }
.cat-tabs button[aria-pressed="true"]::after { transform: scaleX(1); }

/* ---------- Cases (cards de inventário) ---------- */
.cases { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 768px) { .cases { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases { grid-template-columns: repeat(3, 1fr); } }
.case { display: flex; flex-direction: column; border: 1px solid var(--hair); background: var(--canvas); }
.case[hidden] { display: none; }
.case-plate { aspect-ratio: 16 / 10; background: linear-gradient(150deg, var(--c2), var(--c1)); position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.case-plate .tag { position: absolute; top: 16px; left: 16px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; }
.case-plate .site { width: 72%; background: #fff; transform: translateY(12%); transition: transform var(--dur-3) var(--ease); }
.case:hover .case-plate .site { transform: translateY(6%); }
.case-plate .site .b { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-bottom: 1px solid var(--hair); font-size: 10px; font-weight: 700; color: var(--ink); }
.case-plate .site .b em { width: 36px; height: 10px; background: var(--c2); }
.case-plate .site .h { padding: 14px 10px 30px; display: flex; flex-direction: column; gap: 6px; }
.case-plate .site .h i { display: block; height: 6px; width: 78%; background: var(--ink); opacity: .85; }
.case-plate .site .h i.s { width: 52%; height: 4px; opacity: .25; }
.case-plate .site .h span { display: block; width: 64px; height: 14px; background: var(--c2); margin-top: 6px; }
.case-body { padding: var(--s-lg); display: flex; flex-direction: column; flex: 1; }
.case-body .caption { margin-bottom: 6px; }
.case-body h3 { font-size: 18px; line-height: 1.4; }
.case-body p { margin-top: 6px; font-size: 15px; flex: 1; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: var(--s-lg); border-top: 1px solid var(--hair); }
.metrics div { padding: 14px 12px 0 0; }
.metrics div + div { padding-left: 12px; border-left: 1px solid var(--hair); }
.metrics b { display: block; font-size: 22px; line-height: 1.15; color: var(--ink); }
.metrics small { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; letter-spacing: .3px; }

/* ---------- Garantia ---------- */
.guarantee { display: grid; grid-template-columns: 1fr; gap: var(--s-xxl); align-items: center; }
@media (min-width: 1024px) { .guarantee { grid-template-columns: 5fr 7fr; gap: 96px; } }
.g-big { border-left: 4px solid; border-image: linear-gradient(180deg, var(--blue-deep) 0 33.33%, var(--blue) 33.33% 66.66%, var(--gold) 66.66% 100%) 1; padding-left: var(--s-xl); }
.g-big b { display: block; font-size: clamp(96px, 14vw, 180px); line-height: .9; color: #fff; font-weight: 700; letter-spacing: -2px; }
.g-big span { display: block; margin-top: var(--s-sm); font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--on-dark-soft); }
.guarantee h2 em { font-style: normal; font-weight: 300; }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: 1fr; counter-reset: s; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: var(--s-lg) var(--s-lg) var(--s-xl) 0; border-top: 1px solid var(--hair); }
.step::before { content: ""; position: absolute; left: 0; top: -1px; height: 3px; width: 48px; background: var(--blue); }
.step .n { display: block; font-size: 48px; line-height: 1; font-weight: 700; color: var(--ink); }
.step .when { display: block; margin-top: var(--s-md); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); }
.step h3 { margin-top: 6px; font-size: 18px; line-height: 1.4; }
.step p { margin-top: 6px; font-size: 15px; }
.after { display: flex; gap: var(--s-md); align-items: flex-start; margin-top: var(--s-xl); padding: var(--s-lg); background: var(--soft); font-size: 15px; }
.after svg { width: 22px; height: 22px; color: var(--blue); margin-top: 1px; }
.after b { color: var(--ink); }

/* ---------- Depoimentos ---------- */
.reviews { display: grid; grid-template-columns: 1fr; gap: var(--s-lg); }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review { margin: 0; background: var(--canvas); border: 1px solid var(--hair); padding: var(--s-xl) var(--s-lg); display: flex; flex-direction: column; }
.review blockquote { margin: var(--s-md) 0 0; font-size: 18px; line-height: 1.5; font-weight: 300; color: var(--ink); flex: 1; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: var(--s-lg); padding-top: var(--s-md); border-top: 1px solid var(--hair); }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; background: var(--dark-2); }
.review figcaption b { display: block; color: var(--ink); font-size: 15px; }
.review figcaption small { font-size: 13px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-xxl); }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 4fr 7fr; gap: 96px; } .faq-grid .sec-head { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; } }
.faq-grid .sec-head .btn { margin-top: var(--s-xl); }
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--s-lg);
  padding: 22px 0; font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 14px; height: 14px; flex-shrink: 0;
  background: linear-gradient(currentColor, currentColor) center / 14px 2px no-repeat, linear-gradient(currentColor, currentColor) center / 2px 14px no-repeat;
  transition: transform var(--dur-2) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--blue); }
.faq .ans { padding: 0 48px 24px 0; font-size: 16px; }
.faq .ans strong { color: var(--ink); }

/* ---------- CTA final + formulário ---------- */
.final .cta-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-xxl); align-items: start; }
@media (min-width: 1024px) { .final .cta-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }
.final h2 em { font-style: normal; font-weight: 300; display: block; }
.final .body-lg { margin-top: var(--s-lg); color: var(--on-dark-soft); }
.cta-list { margin-top: var(--s-xl); border-top: 1px solid var(--dark-line); }
.cta-list li { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--dark-line); color: #fff; font-weight: 400; }
.cta-list svg { width: 20px; height: 20px; color: var(--accent-on-dark); margin-top: 2px; }

.form-card { background: var(--canvas); color: var(--body); padding: var(--s-xl) var(--s-lg); position: relative; }
@media (min-width: 600px) { .form-card { padding: 40px; } }
.form-card .stripe { position: absolute; left: 0; right: 0; top: 0; }
.form-card h3 { font-size: 24px; line-height: 1.25; }
.form-card > p { margin-top: 6px; font-size: 15px; color: var(--muted); }
.fields { display: grid; gap: var(--s-md); margin-top: var(--s-lg); }
.fields-2 { display: grid; gap: var(--s-md); }
@media (min-width: 600px) { .fields-2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: .2px; }
.field label span { font-weight: 400; color: var(--muted); }
.field input, .field select {
  width: 100%; height: 48px; padding: 0 14px;
  background: var(--canvas); border: 1px solid var(--hair); border-radius: 0;
  font-size: 16px; font-weight: 400; color: var(--ink);
  transition: border-color var(--dur-1), box-shadow var(--dur-1);
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23262626' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.field input::placeholder { color: #a3a3a3; }
.field input:hover, .field select:hover { border-color: var(--hair-strong); }
.field input:focus, .field select:focus { outline: none; border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #e22718; box-shadow: inset 0 0 0 1px #e22718; }
.form-card .btn { margin-top: var(--s-lg); min-height: 52px; }
.form-foot { display: flex; align-items: center; gap: 8px; margin-top: var(--s-md); font-size: 13px; color: var(--muted); }
.form-foot svg { width: 14px; height: 14px; }

/* ---------- Rodapé ---------- */
.site-footer { background: var(--soft); border-top: 1px solid var(--hair); padding: 64px 0 32px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-xl); }
@media (min-width: 600px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; } }
.foot-about p { margin-top: var(--s-md); max-width: 340px; color: var(--muted); }
.site-footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: var(--s-md); }
.site-footer li { padding: 4px 0; color: var(--muted); }
.site-footer a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-sm); margin-top: var(--s-xxl); padding-top: var(--s-lg); border-top: 1px solid var(--hair); color: var(--muted); font-size: 13px; }

/* Botão flutuante: único elemento circular (ícone) */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: var(--z-float);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  transition: transform var(--dur-1) var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 599px) { .wa-float { right: 16px; bottom: 16px; } }

/* ---------- Animação de entrada ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-3) var(--ease), transform var(--dur-3) var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- ?revisar: destaca dados provisórios ---------- */
.revisar [data-ph] { outline: 2px dashed #e22718 !important; outline-offset: 2px; background-color: rgba(226, 39, 24, .08) !important; }

/* Card-convite ao fim da grade de cases */
.case-next { position: relative; background: var(--dark); border-color: var(--dark); color: var(--on-dark-soft); padding: var(--s-xl) var(--s-lg); justify-content: flex-end; gap: var(--s-md); min-height: 320px; }
.case-next .stripe { position: absolute; left: 0; right: 0; top: 0; }
.case-next .label { color: var(--on-dark-soft); margin-bottom: auto; }
.case-next strong { font-size: 32px; line-height: 1.15; color: #fff; }
.case-next .link-cta { color: #fff; margin-top: var(--s-sm); }
.case-next .link-cta svg { color: var(--accent-on-dark); }
.case-next:hover .link-cta svg { transform: translateX(3px); }

/* Correções */
.hero-grid > *, .guarantee > *, .cta-grid > *, .faq-grid > * { min-width: 0; }
.final .form-card h3 { color: var(--ink); }
.sd-nav span { white-space: nowrap; overflow: hidden; }
@media (max-width: 599px) {
  .sd-nav span { display: none; }
  .hero-ctas .btn { width: 100%; }
}
@media (max-width: 767px) {
  .shot { aspect-ratio: auto; margin: 0 8px; }
  .shot-desk { position: static; width: 100%; }
  .shot-phone, .shot-serp { display: none; }
  .hero-meta .sep { display: none; }
}

/* =========================================================
   Glow card: porte em CSS puro do componente React "GlowCard"
   (spotlight-card.tsx). Um holofote radial segue o cursor pela
   tela inteira e acende a borda dos cards por onde passa. O tom
   varia com a posição horizontal do cursor; aqui fica restrito aos
   azuis da marca. Adaptado à linguagem do site: cantos retos.
   O main.js grava em cada card --x/--y (cursor relativo ao card)
   e --xp (0 a 1 na largura da janela), no lugar do
   background-attachment: fixed do original.
   ========================================================= */
.glow-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--s-md); margin-top: 64px; }
@media (min-width: 768px) { .glow-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-lg); } }

.glow-card {
  --base: 215;   /* original: 220 */
  --spread: 20;  /* original: 200 (arco-íris azul→roxo→vermelho→amarelo) */
  --radius: 0;
  --border: 2;
  --size: 220;
  --outer: 1;
  --backdrop: hsl(0 0% 60% / .08);
  --backup-border: hsl(0 0% 100% / .1);
  --border-size: calc(var(--border) * 1px);
  --spotlight-size: calc(var(--size) * 1px);
  --hue: calc(var(--base) + (var(--xp, 0) * var(--spread)));

  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: var(--s-xxl);
  min-height: 240px;
  padding: var(--s-xl) var(--s-lg);
  border: var(--border-size) solid var(--backup-border);
  border-radius: calc(var(--radius) * 1px);
  background-color: var(--backdrop);
  background-image: radial-gradient(
    var(--spotlight-size) var(--spotlight-size) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    hsl(var(--hue) 100% 70% / .1), transparent
  );
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

/* Borda acesa (::before colorido, ::after núcleo branco) */
.glow-card::before, .glow-card::after,
.glow-outer::before, .glow-outer::after {
  pointer-events: none;
  content: "";
  position: absolute;
  inset: calc(var(--border-size) * -1);
  padding: var(--border-size); /* a faixa visível é o padding */
  border-radius: calc(var(--radius) * 1px);
  background-repeat: no-repeat;
  /* mostra só o anel entre o content-box e a borda externa */
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}
.glow-card::before, .glow-outer::before {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * .75) calc(var(--spotlight-size) * .75) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    hsl(var(--hue) 100% 50% / 1), transparent 100%
  );
  filter: brightness(2);
}
.glow-card::after, .glow-outer::after {
  background-image: radial-gradient(
    calc(var(--spotlight-size) * .5) calc(var(--spotlight-size) * .5) at calc(var(--x, -9999) * 1px) calc(var(--y, -9999) * 1px),
    hsl(0 100% 100% / 1), transparent 100%
  );
}

/* Halo externo desfocado */
.glow-outer {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: var(--outer);
  border-radius: calc(var(--radius) * 1px);
  filter: blur(calc(var(--border-size) * 10));
  will-change: filter;
}
.glow-outer::before { inset: -10px; padding: 10px; }

/* Conteúdo do card */
.gc-top { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.gc-n { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--on-dark-soft); }
.gc-top svg { width: 28px; height: 28px; color: var(--accent-on-dark); }
.gc-body { position: relative; font-size: 15px; color: var(--on-dark-soft); }
.gc-body b { display: block; font-size: 20px; line-height: 1.3; color: #fff; margin-bottom: 8px; }

/* Toque: sem cursor para seguir, fica a borda estática */
@media (hover: none) {
  .glow-card::before, .glow-card::after, .glow-outer { display: none; }
  .glow-card { background-image: none; border-color: hsl(0 0% 100% / .14); }
}

/* Foto de fundo das placas de case, tingida com a cor do nicho */
.case-photo { position: absolute; inset: 0; background: center / cover no-repeat; transition: transform var(--dur-3) var(--ease); }
.case-plate::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, color-mix(in srgb, var(--c1) 35%, transparent), color-mix(in srgb, var(--c1) 85%, transparent)); }
.case-plate .tag, .case-plate .site { z-index: 2; }
.case-plate .site { position: relative; }
.case:hover .case-photo { transform: scale(1.04); }

/* =========================================================
   Revisão UI/UX · regras da skill ui-ux-pro-max
   (acessibilidade, toque, desempenho, tipografia, movimento,
   formulários e navegação). Medido por auditoria automática.
   ========================================================= */

/* Tipografia: quebra equilibrada e medida de leitura (heading-line-balance, line-length) */
h1, h2, h3, .display-xl, .display-lg, .display-md { text-wrap: balance; }
p, li, blockquote, summary { text-wrap: pretty; }
.sec-head p.body-lg { max-width: 62ch; }

/* Contraste: estrelas, "logos" e itens não inclusos (color-contrast, color-not-only) */
.stars { color: var(--star); }
.hero-meta .stars, .dark .stars { color: var(--star-on-dark); }
.proof .logos span:not(.caption) { color: var(--muted); }
.checks li.off { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--hair-strong); }
.checks li.off svg { color: var(--muted); }

/* Texto mínimo de 12px nos selos */
.plan .tag, .price .zero, .case-plate .tag { font-size: 12px; }

/* Alvos de clique: ≥ 24px no desktop (WCAG 2.2) e ≥ 44px no celular */
.link-cta { min-height: 32px; }
.site-footer li a, .foot-bottom a { display: inline-flex; align-items: center; min-height: 28px; }
@media (max-width: 767px) {
  .link-cta, .logo, .g-score, .site-footer li a, .foot-bottom a { min-height: 44px; }
  .site-footer li { padding: 0; }
  .site-footer li a, .foot-bottom a { min-width: 44px; }
}

/* Toque: sem atraso de 300ms e com retorno visual ao pressionar (tap-delay, press-feedback) */
a, button, summary, label, select, input { touch-action: manipulation; }
.btn, .config-opt, .cat-tabs button, .link-cta { transition-property: background-color, color, border-color, transform; }
.btn:active, .config-opt:active { transform: scale(.98); transition-duration: var(--dur-1); }

/* Navegação: seção atual destacada no menu (nav-state-active) */
.nav a[aria-current="true"] { color: var(--blue); }
.nav a[aria-current="true"]::after { transform: scaleX(1); }

/* Fotos como <img> nativo: lazy load e espaço reservado (image-dimension, lazy-load-below-fold) */
.option-img, .case-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* Formulário: obrigatórios, erro junto ao campo e status do envio */
.req { color: var(--error); font-weight: 700; }
.form-note { margin-top: var(--s-md); font-size: 14px; color: var(--muted); }
.field-error { display: flex; align-items: flex-start; gap: 8px; margin-top: 6px; font-size: 14px; line-height: 1.4; color: var(--error); }
.field-error::before {
  content: "!"; flex: 0 0 16px; height: 16px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--error); color: #fff; font-size: 11px; font-weight: 700; line-height: 1;
}
.form-status { margin-top: var(--s-md); font-size: 15px; font-weight: 700; }
.form-status:empty { display: none; }
.form-status.is-ok { color: var(--success); }
.form-status.is-erro { color: var(--error); }
.form-card .btn[aria-busy="true"] { opacity: .7; cursor: progress; }

/* Movimento: entrada escalonada (stagger-sequence) e menor deslocamento */
.js .reveal { transform: translateY(12px); transition-duration: var(--dur-3); transition-delay: var(--stagger, 0ms); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn:active, .config-opt:active { transform: none; }
}
