/* ═══════════════════════════════════════════════
       1. DESIGN TOKENS
       ═══════════════════════════════════════════════ */
:root {
  /* Paleta — briefing §5: azul escuro, branco, dourado, cinza */
  --navy: #0a1828;
  --navy-2: #112236;
  --navy-3: #1a3350;
  --gold: #c4973f;
  --gold-lt: #ddb96a;
  --gold-dim: rgba(196, 151, 63, 0.18);
  --white: #ffffff;
  --smoke: #f4f3f0;
  --mist: #e8e6e1;
  --body: #2c3a47;
  --muted: #6b7785;
  --rule: rgba(255, 255, 255, 0.09);
  --wa: #25d366;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Escala tipográfica fluida — elimina saltos entre breakpoints */
  --t-xs: clamp(0.66rem, 0.63rem + 0.12vw, 0.72rem);
  --t-sm: clamp(0.78rem, 0.75rem + 0.16vw, 0.86rem);
  --t-base: clamp(0.92rem, 0.89rem + 0.18vw, 1rem);
  --t-md: clamp(1rem, 0.96rem + 0.24vw, 1.12rem);
  --t-lg: clamp(1.18rem, 1.08rem + 0.5vw, 1.5rem);
  --t-xl: clamp(1.5rem, 1.28rem + 1.1vw, 2.25rem);
  --t-2xl: clamp(1.95rem, 1.5rem + 2.2vw, 3.4rem);

  /* Ritmo vertical fluido */
  --sp-sec: clamp(56px, 7.5vw, 108px);
  --sp-gut: clamp(18px, 4vw, 40px);
  --gap: clamp(14px, 2.4vw, 26px);

  --hdr: 60px;
  --maxw: 1240px;
  --r: 4px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 18px 48px -18px rgba(10, 24, 40, 0.28);
}

/* ═══════════════════════════════════════════════
       2. RESET + BASE
       ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Trava de scroll ao abrir o drawer — compensa a scrollbar
       para a página não "pular" lateralmente. */
body.is-locked {
  overflow: hidden;
  padding-right: var(--sbw, 0px);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

/* Âncoras não param debaixo do header fixo */
[id] {
  scroll-margin-top: calc(var(--hdr) + 14px);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  font-size: var(--t-sm);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--r);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

section {
  padding-block: var(--sp-sec);
}

/* ═══════════════════════════════════════════════
       3. TIPOGRAFIA DE SEÇÃO
       ═══════════════════════════════════════════════ */
.sec-label {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 22ch;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin-block: 20px 26px;
}

.sec-intro {
  color: var(--muted);
  font-size: var(--t-base);
  max-width: 62ch;
}

.on-dark .sec-title,
.on-dark h2,
.on-dark h3 {
  color: var(--white);
}

.on-dark .sec-intro {
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════════
       4. BOTÕES (CTV — sempre com o "porquê")
       ═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  /* alvo de toque WCAG 2.1 AA */
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--navy);
  box-shadow: 0 10px 26px -10px rgba(196, 151, 63, 0.7);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(196, 151, 63, 0.85);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(10, 24, 40, 0.22);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.on-dark .btn-outline,
.hero .btn-outline {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
}

.on-dark .btn-outline:hover,
.hero .btn-outline:hover {
  color: var(--gold-lt);
  border-color: var(--gold);
}

.btn-block {
  width: 100%;
}

/* Microcopy do CTV: a razão embaixo da ação */
.cta-why {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: 14px;
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: var(--muted);
}

.cta-why span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cta-why svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.on-dark .cta-why {
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════
       5. HEADER + NAVEGAÇÃO
       ═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(10, 24, 40, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 24, 40, 0.98);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--hdr);
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-gut);
}

.logo-mark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: auto;
  min-width: 0;
}

.logo-mark strong {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.85rem + 0.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--white);
  white-space: nowrap;
  /* Em telas estreitas o nome trunca em vez de invadir o CTA */
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-mark small {
  display: none;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.58);
  padding: 8px 11px;
  border-radius: var(--r);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--gold-lt);
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

/* CTA do header — visível em TODOS os breakpoints (regra nº1 do framework) */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--navy);
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(196, 151, 63, 0.8);
}

.btn-wa svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Abaixo de 480px o CTA encurta para "Agendar" e libera espaço
       para o nome do médico — mas nunca desaparece. */
.btn-wa .wa-long {
  display: none;
}

@media (min-width: 480px) {
  .btn-wa .wa-long {
    display: inline;
  }
}

/* ── Hamburger ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r);
  flex-shrink: 0;
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: rgba(196, 151, 63, 0.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Scrim ── */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(6, 14, 24, 0.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  /* visibility troca em 0s, mas o "esconder" espera o fade terminar */
  transition:
    opacity 0.35s var(--ease),
    visibility 0s linear 0.35s;
}

.nav-scrim.open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.35s var(--ease),
    visibility 0s linear 0s;
}

/* ── Drawer off-canvas ──
       Nunca alterna `display` (isso mataria a transição):
       usa transform + visibility. */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  display: flex;
  flex-direction: column;
  width: min(87vw, 370px);
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  border-left: 1px solid var(--gold-dim);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateX(102%);
  visibility: hidden;
  /* visibility:visible entra em 0s ao abrir (senão .focus() é ignorado
         no elemento invisível) e só volta a hidden depois do slide de saída. */
  transition:
    transform 0.38s var(--ease),
    visibility 0s linear 0.38s;
  overscroll-behavior: contain;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition:
    transform 0.38s var(--ease),
    visibility 0s linear 0s;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--hdr);
  padding: 14px var(--sp-gut);
  border-bottom: 1px solid var(--rule);
}

.drawer-head p {
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  border-radius: var(--r);
  color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}

.drawer-close:hover {
  color: var(--gold-lt);
  background: rgba(196, 151, 63, 0.1);
}

.drawer-close svg {
  width: 22px;
  height: 22px;
}

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px var(--sp-gut) 20px;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 14px 2px;
  font-size: var(--t-md);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition:
    color 0.2s var(--ease),
    padding-left 0.25s var(--ease);
}

.drawer-nav a:last-child {
  border-bottom: 0;
}

.drawer-nav a svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  color: var(--gold-lt);
  padding-left: 8px;
}

.drawer-nav a:hover svg,
.drawer-nav a:focus-visible svg {
  opacity: 1;
  transform: translateX(0);
}

/* Entrada escalonada dos links */
.nav-drawer .drawer-nav a,
.nav-drawer .drawer-foot {
  opacity: 0;
  transform: translateX(18px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    color 0.2s var(--ease),
    padding-left 0.25s var(--ease);
}

.nav-drawer.open .drawer-nav a,
.nav-drawer.open .drawer-foot {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(90ms + var(--i, 0) * 45ms);
}

.drawer-foot {
  padding: 18px var(--sp-gut) calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--rule);
  background: rgba(0, 0, 0, 0.18);
}

.drawer-foot .btn {
  width: 100%;
}

.drawer-meta {
  margin-top: 12px;
  font-size: var(--t-xs);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

/* ═══════════════════════════════════════════════
       6. HERO
       ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: relative;
  order: -1;
  min-height: min(112vw, 460px);
  padding-top: var(--hdr);
}

.hero-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--navy) 2%,
    rgba(10, 24, 40, 0.18) 58%,
    rgba(10, 24, 40, 0.35) 100%
  );
}

/* Placa de nome + credenciais */
.hero-plate {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 46px var(--sp-gut) 16px;
  background: linear-gradient(to top, var(--navy) 22%, transparent 100%);
}

.hero-plate strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--white);
}

.hero-plate span {
  display: block;
  margin-top: 3px;
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Cartão do Instagram */
.hero-ig {
  position: absolute;
  left: var(--sp-gut);
  bottom: 88px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 6px;
  border-radius: 40px;
  background: rgba(10, 24, 40, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.hero-ig:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.hero-ig img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.hero-ig b {
  display: block;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--white);
}

.hero-ig small {
  display: block;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-ig > svg {
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.75);
}

/* Selo de nota, flutuando sobre a foto */
.hero-score {
  position: absolute;
  top: calc(var(--hdr) + 12px);
  right: var(--sp-gut);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: var(--r);
  background: rgba(10, 24, 40, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-score b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.hero-score i {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: #f5b942;
  line-height: 1;
}

.hero-score small {
  display: block;
  margin-top: 3px;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 6vw, 44px) var(--sp-gut) clamp(44px, 8vw, 64px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 17ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

/* A objeção tratada de frente, logo no H1 */
.hero h1 .objection {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: var(--t-md);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34ch;
}

.hero .cta-why {
  color: rgba(255, 255, 255, 0.5);
}

.hero-sub {
  margin-top: 20px;
  font-size: var(--t-base);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
}

.hero-sub b {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 30px;
}

.hero-modes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
}

.mode-pill svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}

.cred-item {
  padding: 4px 0;
}

.cred-item dt {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.cred-item dd {
  margin-top: 5px;
  font-size: var(--t-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.cred-item dd span {
  color: var(--gold);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════
       7. FAIXA DE PROVA SOCIAL (framework: logo abaixo do hero)
       ═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--smoke);
  border-bottom: 1px solid var(--mist);
  padding: 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--maxw);
  margin-inline: auto;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px var(--sp-gut);
  border-bottom: 1px solid var(--mist);
}

.tb-item:last-child {
  border-bottom: 0;
}

.tb-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
}

.tb-icon svg {
  width: 17px;
  height: 17px;
}

.tb-text strong {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.tb-text span {
  display: block;
  font-size: var(--t-xs);
  color: var(--muted);
  line-height: 1.4;
}

.tb-item.tb-score .tb-icon {
  background: #1b7391;
  color: #fff;
}

.tb-item.tb-score strong i {
  font-style: normal;
  color: #f5b942;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
       8. PAS — Problema · Agitação · Solução
       ═══════════════════════════════════════════════ */
.pain {
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
  gap: var(--gap);
  margin-top: 34px;
}

.pain-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 20px 20px 18px;
  background: var(--smoke);
  border-left: 2px solid var(--mist);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--body);
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.pain-item:hover {
  border-left-color: var(--gold);
  transform: translateX(3px);
  box-shadow: var(--shadow);
}

.pain-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

/* Agitação — o custo de continuar adiando */
.pain-agitate {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  border-radius: var(--r);
  border-left: 3px solid var(--gold);
}

.pain-agitate p + p {
  margin-top: 14px;
}

.pain-agitate strong {
  color: var(--white);
  font-weight: 600;
}

.pain-agitate .lead {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-style: italic;
  line-height: 1.4;
  color: var(--gold-lt);
}

/* Ponte para a solução */
.pain-bridge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
  padding: 20px 22px;
  border: 1px solid var(--mist);
  border-radius: var(--r);
  background: var(--white);
}

.pain-bridge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

.pain-bridge p {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: var(--body);
}

.pain-bridge strong {
  color: var(--navy);
}

/* ═══════════════════════════════════════════════
       9. AUTORIDADE + STATS
       ═══════════════════════════════════════════════ */
.authority {
  background: var(--smoke);
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.auth-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

.auth-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.auth-plate {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 22px 18px;
  background: linear-gradient(
    to top,
    rgba(10, 24, 40, 0.96) 30%,
    transparent 100%
  );
  color: var(--white);
}

.auth-plate h3 {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 700;
}

.auth-plate p {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.auth-plate small {
  display: block;
  margin-top: 6px;
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, 0.55);
}

.auth-seals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 10px;
  margin-top: 16px;
}

.seal {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r);
}

.seal svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--gold);
}

.seal strong {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.seal span {
  display: block;
  font-size: var(--t-xs);
  color: var(--muted);
  line-height: 1.4;
}

.auth-text p {
  color: var(--body);
  line-height: 1.8;
  max-width: 62ch;
}

.auth-text p + p {
  margin-top: 16px;
}

/* Faixa de números — "add numbers to reinforce credibility" */
/* 2×2 por padrão: auto-fit deixaria um órfão feio na 2ª linha */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: var(--r);
  overflow: hidden;
}

.stat {
  background: var(--white);
  padding: 20px 16px;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.3rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.stat b i {
  font-style: normal;
  font-size: 0.55em;
}

.stat span {
  display: block;
  margin-top: 7px;
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
       10. BENEFÍCIOS (features tell, benefits sell)
       ═══════════════════════════════════════════════ */
.benefits {
  background: var(--navy);
  background-image: radial-gradient(
    ellipse 70% 50% at 15% 0%,
    rgba(26, 51, 80, 0.8) 0%,
    transparent 70%
  );
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: var(--gap);
  margin-top: 34px;
}

.benefit-card {
  position: relative;
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-dim);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card .ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--r);
  background: var(--gold-dim);
  color: var(--gold-lt);
}

.benefit-card .ico svg {
  width: 20px;
  height: 20px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 9px;
}

.benefit-card p {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.58);
}

/* CTV de meio de página */
.mid-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: 40px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--gold-dim);
  border-radius: var(--r);
  background: linear-gradient(
    135deg,
    rgba(196, 151, 63, 0.1) 0%,
    rgba(196, 151, 63, 0.02) 100%
  );
}

.mid-cta h3 {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--white);
  max-width: 24ch;
}

.mid-cta p {
  margin-top: 8px;
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.6);
  max-width: 48ch;
}

/* ═══════════════════════════════════════════════
       11. PROCEDIMENTOS & TECNOLOGIA
       ═══════════════════════════════════════════════ */
.procedures {
  background: var(--white);
}

.proc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.proc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 2px;
  margin-block: 24px;
}

.proc-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--mist);
  font-size: var(--t-sm);
  color: var(--body);
}

.proc-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.proc-note {
  font-size: var(--t-sm);
  color: var(--muted);
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  max-width: 58ch;
}

.proc-visual {
  padding: clamp(26px, 4vw, 38px);
  background: var(--navy);
  border-radius: var(--r);
  color: var(--white);
  box-shadow: var(--shadow);
}

.proc-visual h3 {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  font-weight: 600;
  margin-bottom: 12px;
}

.proc-visual p {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.proc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr));
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.proc-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.proc-stats span {
  display: block;
  margin-top: 6px;
  font-size: var(--t-xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════
       12. WHY US — discrição e naturalidade
       ═══════════════════════════════════════════════ */
.whyus {
  background: var(--smoke);
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}

.whyus-text p {
  line-height: 1.8;
  color: var(--body);
  max-width: 60ch;
}

.whyus-text p + p {
  margin-top: 16px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--gap);
}

.pillar {
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}

.pillar .ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: var(--r);
  background: var(--gold-dim);
  color: var(--gold);
}

.pillar .ico svg {
  width: 19px;
  height: 19px;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.pillar p {
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
       13. COMO FUNCIONA — 5 passos
       ═══════════════════════════════════════════════ */
.how {
  background: var(--white);
}

.steps {
  position: relative;
  margin-top: 38px;
  display: grid;
  gap: 0;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-bottom: 30px;
}

/* Linha conectora entre os passos */
.step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), var(--mist));
}

.step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 1;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.06);
}

.step h3 {
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  padding-top: 10px;
}

.step p {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
}

/* ═══════════════════════════════════════════════
       14. DEPOIMENTOS (framework: logo antes do CTV final)
       ═══════════════════════════════════════════════ */
.testimonials {
  background: var(--smoke);
}

.reviews-head {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.rating-block:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.rb-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: var(--r);
  background: #1b7391;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.rb-logo svg {
  width: 13px;
  height: 13px;
}

.rb-score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}

.rb-stars {
  display: block;
  color: #f5b942;
  font-size: 0.82rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.rb-count {
  display: block;
  font-size: var(--t-xs);
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: var(--gap);
  margin-top: 34px;
}

.review-card {
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--r);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dim);
  box-shadow: var(--shadow);
}

.rv-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.rv-stars {
  color: #f5b942;
  font-size: 0.88rem;
  letter-spacing: 2px;
}

.rv-src {
  padding: 2px 7px;
  border-radius: 3px;
  background: #1b7391;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rv-text {
  flex: 1;
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--body);
  font-style: italic;
}

.rv-foot {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--mist);
}

.rv-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: var(--t-sm);
  font-weight: 700;
}

.rv-name {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.rv-date {
  display: block;
  font-size: var(--t-xs);
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
       15. FAQ
       ═══════════════════════════════════════════════ */
.faq {
  background: var(--white);
}

.faq-list {
  margin-top: 34px;
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--mist);
}

.faq-item:first-child {
  border-top: 1px solid var(--mist);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 56px;
  padding: 20px 2px;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s var(--ease);
}

.faq-btn:hover {
  color: var(--gold);
}

.faq-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--mist);
  color: var(--gold);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.faq-ico svg {
  width: 14px;
  height: 14px;
}

.faq-btn[aria-expanded="true"] .faq-ico {
  transform: rotate(180deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Acordeão com grid-template-rows: anima a altura REAL,
       sem max-height chutado que corta ou atrasa o conteúdo. */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-btn[aria-expanded="true"] + .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  padding: 0 2px 22px;
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--muted);
  max-width: 68ch;
}

/* ═══════════════════════════════════════════════
       16. CTV FINAL
       ═══════════════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--navy);
  background-image: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(26, 51, 80, 0.9) 0%,
    transparent 70%
  );
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 600;
  color: var(--white);
  max-width: 26ch;
  margin-inline: auto;
}

.cta-final > .container > p {
  margin: 20px auto 0;
  font-size: var(--t-base);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 58ch;
}

.cta-final .btn {
  margin-top: 30px;
}

.cta-final .cta-why {
  justify-content: center;
}

.cta-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════
       17. FOOTER
       ═══════════════════════════════════════════════ */
footer {
  background: #060f19;
  color: rgba(255, 255, 255, 0.45);
  padding-block: 44px;
  padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--sp-gut);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: var(--t-xs);
  line-height: 1.7;
}

.footer-addr {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 7px;
}

.footer-addr svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  font-size: var(--t-xs);
  letter-spacing: 0.04em;
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-lt);
}

.footer-links svg {
  width: 14px;
  height: 14px;
}

.footer-legal {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.22);
  font-size: var(--t-xs);
}

/* ═══════════════════════════════════════════════
       18. CTA FIXO NO MOBILE
       ═══════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 190;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px var(--sp-gut) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 24, 40, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-dim);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta.show {
  transform: translateY(0);
}

.sticky-cta .sc-text {
  flex: 1;
  min-width: 0;
}

.sticky-cta .sc-text strong {
  display: block;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.sticky-cta .sc-text span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

.sticky-cta .btn {
  min-height: 44px;
  padding: 11px 20px;
  flex-shrink: 0;
}

/* Espaço para a barra fixa não cobrir o rodapé */
body.has-sticky footer {
  padding-bottom: calc(44px + 74px + env(safe-area-inset-bottom, 0px));
}

/* ═══════════════════════════════════════════════
       19. REVEAL AO ROLAR
       ═══════════════════════════════════════════════ */
/* O estado escondido só existe sob .js-anim, marcado por um script inline
       no topo do <body>. Se o JS falhar ou for bloqueado, o conteúdo continua
       visível — nenhuma seção pode depender de JS para ser lida. */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-d="1"] {
  transition-delay: 0.1s;
}

.reveal[data-d="2"] {
  transition-delay: 0.2s;
}

.reveal[data-d="3"] {
  transition-delay: 0.3s;
}

.reveal[data-d="4"] {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════
       20. BREAKPOINTS (mobile-first, min-width)
       ═══════════════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-actions .btn {
    flex: 0 1 auto;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .tb-item {
    border-right: 1px solid var(--mist);
  }

  .tb-item:nth-child(2n) {
    border-right: 0;
  }

  .tb-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .reviews-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .mid-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .mid-cta .btn {
    flex-shrink: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}

@media (min-width: 900px) {
  :root {
    --hdr: 76px;
  }

  /* ── A troca que faltava: navbar desktop ↔ hamburger ── */
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .logo-mark small {
    display: block;
  }

  .btn-wa {
    min-height: 44px;
    padding: 11px 20px;
    margin-left: 14px;
  }

  /* Hero em duas colunas */
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 92vh;
    align-items: stretch;
  }

  .hero-media {
    order: 2;
    min-height: 100%;
    padding-top: 0;
  }

  .hero-media::after {
    background: linear-gradient(
      to right,
      var(--navy) 0%,
      rgba(10, 24, 40, 0.35) 34%,
      transparent 68%
    );
  }

  .hero-plate {
    padding: 60px 32px 30px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--hdr) + 40px) 20px 60px
      max(var(--sp-gut), calc((100vw - var(--maxw)) / 2 + var(--sp-gut)));
  }

  .hero-creds {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .tb-item {
    border-bottom: 0;
    justify-content: center;
  }

  .tb-item:nth-child(2n) {
    border-right: 1px solid var(--mist);
  }

  .tb-item:last-child {
    border-right: 0;
  }

  .authority-grid {
    grid-template-columns: 0.85fr 1fr;
  }

  .proc-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .whyus-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .step {
    grid-template-columns: 56px 1fr;
    gap: 24px;
  }

  .step:not(:last-child)::before {
    left: 27px;
    top: 56px;
  }

  .step-num {
    width: 56px;
    height: 56px;
    font-size: 1.45rem;
  }

  /* Fora do mobile, a barra fixa some */
  .sticky-cta {
    display: none;
  }

  body.has-sticky footer {
    padding-bottom: 44px;
  }
}

@media (min-width: 1200px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 {
    max-width: 15ch;
  }

  .sec-title {
    max-width: 24ch;
  }
}

/* ═══════════════════════════════════════════════
       21. MOVIMENTO REDUZIDO
       ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .nav-drawer .drawer-nav a,
  .nav-drawer .drawer-foot {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .nav-drawer,
  .nav-scrim,
  .sticky-cta {
    display: none !important;
  }
}
