/* =========================================================
   DecolaCerto — site-simples
   Página de vendas enxuta: tokens/base/botões/badge/hero vêm
   de site-v3 (hero do handoff da Claude Design, com a estratégia
   de fonte fora do crítico); os componentes de seção (method,
   steps, compare, cat-grid/modal, plans, footer, cta-bar,
   páginas institucionais) vêm de site-anual/styles.css. Sem
   carrossel de prova social, FAQ, WhatsApp flutuante, demo
   animada nem botão deslizante — esta página não tem essas
   seções/interações.
   ========================================================= */

/* ===================== FONTES ===================== */
/* Fonte única do site: Raleway (variável, peso 100-900 — cobre a escala
   inteira, diferente de Manrope/Bricolage Grotesque, testadas antes
   nesta mesma página, que paravam em 800). Pedido explícito do founder
   em 2026-08-17. O @font-face de verdade (rede, ~47 KB) vive em
   fonts.css, fora do crítico — ver o comentário lá para o porquê. Este
   aqui fica NO crítico de propósito: é só um alias local (sem fetch
   nenhum) para o Arial/Helvetica/Roboto do sistema, com métricas
   ajustadas para bater com a Raleway (calculado com a mesma metodologia
   capsize/Fontaine já usada no resto do repo para a Inter Fallback — ver
   www.npmjs.com/package/@capsizecss/metrics). Precisa estar disponível já
   no primeiro paint — se ele também for adiado para fonts.css, o texto
   nasce com a fonte genérica do navegador e troca pra esta métrica
   corrigida assim que fonts.css aplica, causando layout shift. Não mover
   os dois juntos. */
@font-face {
  font-family: "Raleway Fallback";
  src: local("Arial"), local("Helvetica Neue"), local("Roboto");
  size-adjust: 103.86%;
  ascent-override: 90.51%;
  descent-override: 22.53%;
  line-gap-override: 0%;
}

/* ===================== DESIGN TOKENS ===================== */
:root {
  --navy-900: #070b15;
  --navy-800: #0a0e1a;
  --navy-700: #0b1220;
  --navy-600: #111a2e;
  --navy-500: #16213a;

  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --blue: #1668ff;
  --blue-bright: #2e7dff;
  --blue-soft: rgba(46, 125, 255, 0.14);
  --gold: #e3b04b;

  --text: #e8edf7;
  --text-dim: #aab3c5;
  --text-muted: #8a93a6;

  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --space: clamp(64px, 9vw, 112px);

  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* ===================== RESET / BASE ===================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
ul { list-style: none; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; overflow-x: hidden; }
body {
  font-family: "Raleway", "Raleway Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

section[id] { scroll-margin-top: 24px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; margin: 0; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.muted { color: var(--text-muted); font-weight: 600; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; border-radius: 999px;
  padding: 13px 26px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  color: #fff; box-shadow: 0 10px 26px rgba(22, 104, 255, 0.4);
}
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
@media (hover: hover) {
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(22, 104, 255, 0.55); }
  .btn--ghost:hover { border-color: var(--blue-bright); color: #fff; background: var(--blue-soft); }
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ===================== BRAND ===================== */
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 700; }
.brand__logo { height: 30px; width: auto; border-radius: 0; }

/* ===================== SECTION SHELL ===================== */
.section { padding-block: var(--space); }
.section--alt { background: var(--navy-700); border-block: 1px solid var(--line); }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__lead { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: 14px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-bright); background: var(--blue-soft);
  border: 1px solid rgba(46, 125, 255, 0.3); padding: 7px 14px; border-radius: 999px;
  white-space: nowrap;
}
.microcopy { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; }
.microcopy--center { text-align: center; margin-top: 28px; }

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--navy-800); overflow: hidden; }

.hero__bg { position: absolute; inset: 0; background-size: cover; opacity: 1; }
.hero__bg--desktop { background-image: url('/assets/hero-bg.png'); background-position: center 42%; }
.hero__bg--mobile { display: none; background-image: url('/assets/hero-bg-mobile.png'); background-position: center top; }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 78%, rgba(5, 8, 15, 0.55) 92%, rgba(5, 8, 15, 0.72) 100%);
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 520px at 76% -8%, rgba(46, 125, 255, 0.22), transparent 62%),
    radial-gradient(760px 500px at -6% 108%, rgba(227, 176, 75, 0.10), transparent 62%);
  animation: dcGlow 9s ease-in-out infinite;
}
@keyframes dcGlow { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.9; } }

.hero__brand { position: relative; z-index: 3; display: flex; justify-content: center; padding: 26px 20px 0; }
.hero__brand .brand__logo { height: 36px; width: auto; }

.hero__content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: var(--maxw); margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) 20px clamp(72px, 10vw, 132px);
}

.hero__title {
  font-size: clamp(2.1rem, 5.6vw, 4rem); font-weight: 900; line-height: 1.08;
  letter-spacing: -0.028em; margin-top: 18px; max-width: 19ch; text-wrap: balance; color: #fff;
}
.hero__title-accent { color: var(--blue-bright); }

.hero__sub { font-size: clamp(0.92rem, 1.3vw, 1.02rem); color: var(--text-dim); max-width: 62ch; margin-top: 14px; text-wrap: pretty; }
.hero__sub strong { color: var(--text); font-weight: 700; }

.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.hero__microcopy { font-size: 0.9rem; color: var(--text-muted); margin-top: 18px; }

.hero__proofs { display: flex; justify-content: center; margin-top: clamp(48px, 7vw, 72px); }

/* ----- Painel de prova social ("relatório") ----- */
.proof-panel {
  display: flex; flex-direction: column; width: 100%; max-width: 420px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(6, 10, 20, 0.7));
  backdrop-filter: blur(60px) saturate(180%); -webkit-backdrop-filter: blur(60px) saturate(180%);
  border: 1px solid rgba(46, 125, 255, 0.32); border-radius: 24px; padding: 26px 20px 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(46, 125, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.proof-panel__eyebrow { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.proof-panel__hero { display: flex; flex-direction: column; align-items: center; text-align: center; }
.proof-panel__badge { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.proof-panel__badge-dash { width: 22px; height: 1px; background: linear-gradient(90deg, transparent, rgba(46, 125, 255, 0.55)); }
.proof-panel__badge-dash--right { background: linear-gradient(90deg, rgba(46, 125, 255, 0.55), transparent); }
.proof-panel__badge-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 42px; color: var(--blue-bright); }
.proof-panel__badge-icon svg { filter: drop-shadow(0 0 8px rgba(46, 125, 255, 0.55)); width: 100%; height: 100%; }
.proof-panel__stat { position: relative; width: 100%; min-height: 108px; display: flex; align-items: center; justify-content: center; margin: 4px 0; }
.proof-panel__stat-trend { position: absolute; inset: 0; width: 100%; height: 100%; }
.proof-panel__stat-trend-line { stroke: var(--blue-bright); opacity: 0.75; }
.proof-panel__stat-trend-glow { fill: var(--blue-bright); opacity: 0.22; }
.proof-panel__stat-trend-dot { fill: #fff; filter: drop-shadow(0 0 6px rgba(46, 125, 255, 0.9)); }
.proof-panel__stat-value { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.proof-panel__stat-plus { font-size: clamp(1.6rem, 7vw, 2.1rem); font-weight: 800; color: var(--blue-bright); line-height: 1; margin-bottom: 0.55em; }
.proof-panel__stat-number { font-size: clamp(3.6rem, 19vw, 5.2rem); font-weight: 900; color: #fff; line-height: 0.82; letter-spacing: -0.02em; text-shadow: 0 0 34px rgba(46, 125, 255, 0.3); }
.proof-panel__stat-unit { font-size: clamp(0.85rem, 3vw, 1.05rem); font-weight: 700; color: var(--text-dim); margin-bottom: 0.65em; margin-left: 0.15em; }
.proof-panel__caption { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.proof-panel__divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent); margin: 20px 0 16px; }
.proof-panel__section-head { display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 14px; }
.proof-panel__target-icon { display: flex; color: var(--blue-bright); }
.proof-panel__section-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }
.proof-panel__section-title strong { color: var(--blue-bright); font-weight: 800; }
.proof-panel__compare { display: flex; align-items: center; justify-content: center; gap: 10px; }
.proof-panel__compare-box { flex: 1; max-width: 150px; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 8px; border-radius: 16px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); }
.proof-panel__compare-box--active { border-color: rgba(46, 125, 255, 0.55); background: rgba(46, 125, 255, 0.09); box-shadow: 0 0 26px rgba(46, 125, 255, 0.22); }
.proof-panel__compare-label { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.proof-panel__compare-box--active .proof-panel__compare-label { color: var(--blue-bright); }
.proof-panel__compare-value { font-size: clamp(1.4rem, 7vw, 1.9rem); font-weight: 900; color: #fff; line-height: 1; }
.proof-panel__compare-dots { display: flex; gap: 4px; margin-top: 2px; }
.proof-panel__compare-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); }
.proof-panel__compare-dots span.is-active { background: var(--blue-bright); box-shadow: 0 0 6px rgba(46, 125, 255, 0.85); }
.proof-panel__compare-arrow { color: var(--blue-bright); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.proof-panel__footer { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.proof-panel__footer-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; border: 1px solid rgba(46, 125, 255, 0.4); background: rgba(46, 125, 255, 0.08); color: var(--blue-bright); }
.proof-panel__footer-text { font-size: 0.76rem; color: var(--text-muted); line-height: 1.35; }

.hero__divider { position: relative; z-index: 3; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent); }

@media (max-width: 900px) {
  .hero__bg--desktop { display: none; }
  .hero__bg--mobile { display: block; }
  .proof-panel { padding: 20px 14px 16px; }
  .proof-panel__compare { gap: 8px; }
}

/* Entrada em cascata — só nos filhos diretos da hero */
@keyframes dcRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero__badge, .hero__title, .hero__sub, .hero__cta, .hero__proofs { animation: dcRise 0.6s ease both; }
.hero__title { animation-delay: 0.06s; }
.hero__sub { animation-delay: 0.12s; }
.hero__cta { animation-delay: 0.18s; }
.hero__proofs { animation-delay: 0.24s; }

.hero__badge { font-size: 0.68rem; padding: 5px 12px; gap: 6px; }
.hero__badge .badge__dot { width: 6px; height: 6px; animation: dcBadgeDotBlink 2.2s ease-in-out infinite; }
@keyframes dcBadgeDotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 4px rgba(46, 125, 255, 0.22); }

@media (prefers-reduced-motion: reduce) {
  .hero__badge, .hero__title, .hero__sub, .hero__cta, .hero__proofs, .hero__glow { animation: none; opacity: 1; transform: none; }
  .hero__badge .badge__dot { animation: none; opacity: 1; }
}

/* ===================== CHECKLIST ===================== */
.checklist { display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 32px; color: var(--text-dim); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 800; color: #fff;
  background: var(--blue); border-radius: 50%;
}

/* ===================== STEPS (como funciona) ===================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; background: var(--navy-600); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; }
.step__num {
  display: inline-block; font-size: 1.1rem; font-weight: 900;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  width: 46px; height: 46px; line-height: 46px; text-align: center;
  border-radius: 12px; margin-bottom: 18px; color: #fff;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.96rem; }

/* ===================== SCREENSHOT FRAME (janela macOS) ===================== */
.shot { margin: 40px auto 0; max-width: 760px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--navy-700); box-shadow: var(--shadow); overflow: hidden; }
.shot img { width: 100%; height: auto; display: block; }
.shot__bar { display: flex; align-items: center; gap: 8px; height: 38px; padding: 0 16px; background: var(--navy-600); border-bottom: 1px solid var(--line); }
.shot__dot { width: 12px; height: 12px; border-radius: 50%; }
.shot__dot--red { background: #ff5f57; }
.shot__dot--yellow { background: #febc2e; }
.shot__dot--green { background: #28c840; }

/* ===================== O QUE É (dor + método) ===================== */
.method { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; max-width: 1000px; margin-inline: auto; }
.method__copy h2 { margin-bottom: 16px; }
.method__copy > p { color: var(--text-dim); margin-bottom: 22px; max-width: 52ch; }
.method__copy > p strong { color: var(--text); }
.method .checklist { margin-bottom: 28px; }
.method__shot { margin: 0; }
.method__shot figcaption { color: var(--text-muted); font-size: 0.85rem; text-align: center; margin-top: 12px; }

/* ===================== COMPANY LOGOS ===================== */
.company-logos__heading {
  text-align: center; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800;
  color: var(--text); max-width: 640px; margin: 44px auto 24px;
}
.company-logos__lead {
  text-align: center; color: var(--text-dim); font-size: 1rem;
  max-width: 560px; margin: 0 auto 24px;
}
.company-logos__list {
  max-width: 420px; margin: 0 auto 36px; text-align: left;
}
.company-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 6vw, 64px); }
.company-logo { height: 58px; border-radius: 12px; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35); transition: transform 0.2s ease; }
.company-logo:hover { transform: translateY(-3px); }
.company-logo--fill { width: 188px; object-fit: cover; }
.company-logo--card { width: 188px; object-fit: contain; background: #fff; padding: 9px 16px; }
.company-logo--emirates { width: 188px; object-fit: contain; background: #d71a21; }

/* ===================== GRID DE CATEGORIAS + MODAL ===================== */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 720px; margin-inline: auto; }
.cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--navy-600); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 14px; cursor: pointer; color: inherit; font: inherit;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.cat-card:hover { border-color: var(--blue-bright); transform: translateY(-4px); }
.cat-card:active { transform: translateY(-1px) scale(0.99); }
.cat-card__tag {
  display: inline-grid; place-items: center; min-width: 56px; height: 44px; padding: 0 12px;
  font-weight: 900; font-size: 1.2rem; color: var(--blue-bright);
  background: var(--blue-soft); border-radius: 12px;
}
.cat-card__name { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.cat-card__hint { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }
.cat-note { text-align: center; color: var(--text-muted); font-size: 0.86rem; margin-top: 18px; }

.cat-modal { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; }
.cat-modal[hidden] { display: none; }
.cat-modal__backdrop { position: absolute; inset: 0; background: rgba(7, 11, 21, 0.86); backdrop-filter: blur(6px); }
.cat-modal__dialog {
  position: relative; z-index: 1; width: min(440px, 100%);
  background: var(--navy-600); border: 1px solid var(--line-strong);
  border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow);
}
.cat-modal__tag {
  display: inline-grid; place-items: center; min-width: 56px; height: 44px; padding: 0 14px;
  font-weight: 900; font-size: 1.2rem; color: var(--blue-bright);
  background: var(--blue-soft); border-radius: 12px; margin-bottom: 16px;
}
.cat-modal__title { font-size: 1.35rem; margin-bottom: 12px; }
.cat-modal__text { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 18px; }
.cat-modal__list { display: grid; gap: 10px; margin-bottom: 26px; }
.cat-modal__list li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: 0.92rem; }
.cat-modal__list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #fff;
  background: var(--blue); border-radius: 50%;
}
.cat-modal__close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border: 0; border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1;
  background: rgba(255, 255, 255, 0.06); color: var(--text-dim);
}
.cat-modal__close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* ===================== DIFERENÇA (compare) ===================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 920px; margin-inline: auto; }
.compare__col { border-radius: var(--radius); padding: 30px 28px; border: 1px solid var(--line); }
.compare__col h3 { font-size: 1.2rem; margin-bottom: 18px; }
.compare__col ul { display: grid; gap: 12px; }
.compare__col li { padding-left: 26px; position: relative; color: var(--text-dim); }
.compare__col--bad { background: rgba(255, 90, 90, 0.05); border-color: rgba(255, 90, 90, 0.18); }
.compare__col--bad li::before { content: "✕"; position: absolute; left: 0; color: #ff7a7a; font-weight: 800; }
.compare__col--good { background: rgba(46, 125, 255, 0.07); border-color: rgba(46, 125, 255, 0.28); }
.compare__col--good li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-bright); font-weight: 800; }

/* ===================== PLANOS ===================== */
#escolha-plano { scroll-margin-top: 18px; }
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 820px; margin-inline: auto; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: var(--navy-600); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.plan--featured {
  border-color: var(--blue-bright);
  background: linear-gradient(180deg, rgba(46, 125, 255, 0.1), var(--navy-600));
  box-shadow: 0 0 0 1px rgba(46, 125, 255, 0.3), var(--shadow);
}
.plan--secondary .plan__price span { font-size: clamp(1.5rem, 6vw, 1.8rem); color: var(--text); }
.plan__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy-900); background: var(--gold); padding: 6px 16px; border-radius: 999px;
  white-space: nowrap; max-width: calc(100% - 12px);
}
.plan__name { font-size: 1.3rem; margin-bottom: 6px; font-weight: 800; }
.plan__price { display: flex; align-items: baseline; flex-wrap: nowrap; white-space: nowrap; gap: 0 8px; margin-bottom: 4px; }
.plan__price span { font-size: clamp(1.9rem, 8vw, 2.4rem); font-weight: 900; color: #fff; }
.plan__price small { color: var(--text-muted); font-weight: 600; }
.plan__price-pre { font-size: clamp(1.2rem, 5vw, 1.5rem); font-weight: 800; color: #fff; }
.plan__equiv { font-size: 1rem; color: var(--text-dim); margin-bottom: 8px; }
.plan__equiv strong { color: #fff; font-weight: 900; font-size: 1.1rem; }
.plan__save { color: var(--text-dim); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; line-height: 1.45; }
.plan__save s { color: var(--text-muted); text-decoration-thickness: 2px; }
.plan__save strong { color: var(--gold); font-weight: 800; }
.plan__installment { color: var(--text-muted); font-size: 0.84rem; margin-bottom: 18px; }
.plan__guarantee {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 0.86rem; font-weight: 600; color: var(--text-dim);
  background: rgba(40, 200, 64, 0.08); border: 1px solid rgba(40, 200, 64, 0.24);
  border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 16px;
}
.plan__guarantee span { color: #42d65a; font-weight: 900; line-height: inherit; }
.plan .checklist { margin: 18px 0 26px; flex: 1; }
.plan .checklist li { font-size: 0.94rem; }

.plan.is-highlight { animation: planPulse 1.6s ease; }
@keyframes planPulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 125, 255, 0.55); }
  40% { box-shadow: 0 0 0 6px rgba(46, 125, 255, 0.18), var(--shadow); }
  100% { box-shadow: 0 0 0 0 rgba(46, 125, 255, 0); }
}
@media (prefers-reduced-motion: reduce) { .plan.is-highlight { animation: none; } }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy-900); border-top: 1px solid var(--line); padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__tagline { color: var(--text-muted); font-size: 0.92rem; margin: 16px 0 18px; max-width: 320px; }
.footer__social { display: flex; gap: 18px; margin-top: 4px; }
.footer__social a { color: var(--text-dim); font-size: 0.9rem; font-weight: 600; }
.footer__social a:hover { color: var(--blue-bright); }
.footer__col h4 { font-size: 0.95rem; margin-bottom: 16px; color: #fff; }
.footer__col a { display: block; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-block: 24px; color: var(--text-muted); font-size: 0.85rem;
}
.footer__bottom a { color: var(--text-muted); }
.footer__bottom a:hover { color: var(--text); }
.footer__seals { color: var(--text-muted); }

/* ===================== STICKY CTA (mobile) ===================== */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 14, 26, 0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-strong);
  transform: translateY(110%); transition: transform 0.28s ease;
}
.cta-bar.is-visible { transform: translateY(0); }
.cta-bar__price { display: block; line-height: 1; flex: none; }
.cta-bar__price strong { font-size: 1.25rem; font-weight: 900; color: #fff; white-space: nowrap; }
.cta-bar__price i { display: block; font-style: normal; font-size: 0.66rem; font-weight: 700; color: var(--gold); margin-top: 4px; white-space: nowrap; }
.cta-bar .btn { flex: 1; min-width: 0; max-width: 230px; padding-inline: 18px; }

/* ===================== PÁGINAS INSTITUCIONAIS ===================== */
.page-head { border-bottom: 1px solid var(--line); background: var(--navy-900); }
.page-head__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 18px; }
.page-head__back { color: var(--text-dim); font-size: 0.92rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.page-head__back:hover { color: var(--blue-bright); }

.page { padding-block: clamp(40px, 6vw, 72px); }
.page__head { max-width: 760px; margin: 0 auto 40px; }
.page__head h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); font-weight: 900; margin: 12px 0 14px; }
.page__head .page__lead { color: var(--text-dim); font-size: 1.05rem; }
.page__updated { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; }

.legal { max-width: 760px; margin-inline: auto; }
.legal h2 { font-size: 1.3rem; margin: 40px 0 14px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; color: var(--text); }
.legal p { color: var(--text-dim); margin-bottom: 14px; }
.legal p strong, .legal li strong { color: var(--text); }
.legal a { color: var(--blue-bright); }
.legal a:hover { text-decoration: underline; }
.legal ul { display: grid; gap: 10px; margin: 0 0 16px; }
.legal li { position: relative; padding-left: 20px; color: var(--text-dim); }
.legal li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); }
.legal__index { counter-reset: idx; }
.legal__index li { padding-left: 28px; }
.legal__index li::before {
  counter-increment: idx; content: counter(idx); top: 0;
  width: auto; height: auto; border-radius: 0; background: none;
  color: var(--blue-bright); font-weight: 800; font-size: 0.9rem;
}

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 920px; margin: 0 auto 24px; }
.contact-card { background: var(--navy-600); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 12px; }
.contact-card a.contact-card__mail { color: var(--blue-bright); font-weight: 700; word-break: break-word; }
.contact-card a.contact-card__mail:hover { text-decoration: underline; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto 24px; }
.contact-info .contact-card h3 { margin-bottom: 12px; }
.contact-social { max-width: 920px; margin-inline: auto; text-align: center; padding-top: 8px; }
.contact-social a { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-bright); font-weight: 700; }
.contact-social a:hover { text-decoration: underline; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .method { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-top: 8px; }
  .plan--featured { order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .cta-bar { display: flex; }
  body { padding-bottom: 76px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  /* Sem isto o grid de 3 colunas não cabe em telas de ~375px — os cards da
     3ª coluna (ex: "PC", "MMA", "DOV") ficam cortados fora da tela. */
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
