/* ─────────────────────────────────────────────────────────────
   Boopet — site institucional
   Paleta "Azul & Dourado", a mesma do app (src/theme/colors.ts).

   A regra que sustenta o par, e que vale aqui como vale no app:
     azul    #1668B4  carrega BRANCO       (5.72:1)
     dourado #D4AF37  carrega TINTA ESCURA (6.94:1) — nunca branco
   Onde o dourado precisa ser TEXTO sobre fundo claro, use --gold-ink.
   ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1668B4;
  --blue-light:  #2E86D9;
  --blue-dark:   #11528E;
  --blue-deep:   #0F2540;
  --blue-soft:   #E8F1FA;

  --gold:        #D4AF37;
  --gold-dark:   #B8942A;
  --gold-ink:    #886E1E;
  --gold-soft:   #FCF6E4;

  --bg:          #F8FAFC;
  --surface:     #FFFFFF;
  --surface-alt: #EEF3F9;

  --border:      #D3DDE9;
  --border-soft: #E4EAF2;

  --text:        #132A43;
  --muted:       #64748B;
  --faint:       #8192AB;

  --green:       #17843F;
  --green-soft:  #E3F5E9;
  --red:         #B51010;

  --grad-blue:   linear-gradient(135deg, #1668B4 0%, #11528E 100%);
  --grad-gold:   linear-gradient(135deg, #D4AF37 0%, #B8942A 100%);

  --shadow-sm:   0 2px 10px rgba(15, 37, 64, .08);
  --shadow-md:   0 6px 20px rgba(15, 37, 64, .10);
  --shadow-lg:   0 20px 50px rgba(15, 37, 64, .14);

  --radius:      18px;
  --radius-lg:   26px;
  --max:         1160px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }

::selection { background: var(--blue-soft); color: var(--blue-dark); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 0; font-weight: 800; text-decoration: none;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── Tipografia ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.015em; font-weight: 800; }

.grad-text {
  background: var(--grad-blue);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--blue);
}
.gold-text { color: var(--gold-ink); }

/* ── Navegação ──────────────────────────────────────────── */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px 24px; max-width: var(--max); margin: 0 auto;
  position: relative;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.08rem; color: var(--text); text-decoration: none;
  letter-spacing: -.02em;
}
.nav-logo img { width: 34px; height: 34px; border-radius: 10px; box-shadow: var(--shadow-sm); }
.nav-logo .suffix { color: var(--gold-ink); font-weight: 700; }

.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 600;
  transition: color .18s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue); }

.nav-toggle {
  display: none; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 7px 11px; cursor: pointer; color: var(--text);
  font-size: 1.1rem; line-height: 1;
}

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 50px; text-decoration: none;
  font-weight: 800; font-size: .95rem; border: 1.5px solid transparent;
  transition: transform .18s, box-shadow .18s, border-color .18s, background .18s;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-blue); color: #fff;
  box-shadow: 0 6px 20px rgba(22, 104, 180, .30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(22, 104, 180, .40); }

.btn-gold {
  background: var(--grad-gold); color: var(--text);
  box-shadow: 0 6px 20px rgba(184, 148, 42, .28);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184, 148, 42, .38); }

.btn-ghost {
  background: var(--surface); color: var(--text); border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--blue-light); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: .87rem; }
.btn[aria-disabled="true"] { opacity: .7; cursor: default; pointer-events: none; }

/* ── Pílulas e etiquetas ────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 15px; border-radius: 50px; font-size: .78rem; font-weight: 800;
}
.pill-blue { background: var(--blue-soft); color: var(--blue-dark); border: 1px solid rgba(22,104,180,.22); }
.pill-gold { background: var(--gold-soft); color: var(--gold-ink); border: 1px solid rgba(184,148,42,.30); }
.pill-green { background: var(--green-soft); color: var(--green); border: 1px solid rgba(23,132,63,.24); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.section-label {
  font-size: .74rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-ink); margin-bottom: 12px;
}

/* ── Seções ─────────────────────────────────────────────── */
section { padding: 84px 0; }
.section-title { font-size: clamp(1.75rem, 3.4vw, 2.6rem); margin-bottom: 14px; max-width: 660px; }
.section-sub { color: var(--muted); font-size: 1.03rem; max-width: 620px; margin-bottom: 46px; }
.bg-surface { background: var(--surface); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.bg-deep { background: var(--blue-deep); color: #fff; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 72px 0 86px; }
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero::before { width: 620px; height: 620px; top: -260px; left: -200px; background: rgba(22,104,180,.10); filter: blur(90px); }
.hero::after  { width: 520px; height: 520px; bottom: -240px; right: -160px; background: rgba(212,175,55,.16); filter: blur(90px); }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 22px 0 18px; }
.hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-note { font-size: .84rem; color: var(--faint); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

/* A moldura do aparelho no hero. O conteudo dela e um print real. */
.phone {
  position: relative; width: 264px; margin: 0 auto;
  border-radius: 42px; padding: 10px;
  background: linear-gradient(160deg, #F1F5FA 0%, #DDE7F1 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px var(--border);
}
/* Sem proporção fixa: a altura vem da imagem. Cada captura sai do aparelho com
   uma altura diferente, e um valor fixo aqui cortaria o rodapé de um print e
   deixaria borda vazia em outro. */
.phone-screen {
  border-radius: 34px; overflow: hidden; background: var(--bg); display: block;
}
.phone-screen img { width: 100%; height: auto; display: block; }

/* ── Faixa de confiança ─────────────────────────────────── */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 24px 0; }
.trust-item {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 16px 18px; background: var(--surface);
  border: 1px solid var(--border-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-item .ic { font-size: 1.1rem; line-height: 1.3; }
.trust-item b { display: block; font-size: .88rem; }
.trust-item span { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── Cards ──────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }

.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 26px 24px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }
.card .ic-box {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.25rem; margin-bottom: 16px; background: var(--blue-soft);
}
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: .91rem; color: var(--muted); }
.tag-soon {
  display: inline-block; margin-left: 8px; font-size: .62rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold-ink);
  background: var(--gold-soft); border: 1px solid rgba(184,148,42,.3);
  border-radius: 50px; padding: 2px 9px; vertical-align: middle;
}

/* ── Hubs ───────────────────────────────────────────────── */
.hubs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.hub {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-left: 5px solid var(--blue); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.hub.gold { border-left-color: var(--gold); }
.hub.green { border-left-color: var(--green); }
.hub h3 { font-size: 1.1rem; margin-bottom: 8px; }
.hub p { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.hub ul { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.hub li {
  font-size: .78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px;
  background: var(--surface-alt); color: var(--muted); border: 1px solid var(--border-soft);
}

/* ── Galeria de telas ───────────────────────────────────── */
/* Sobre o azul profundo de propósito: print de app é quase todo branco, e sobre
   fundo claro a moldura some junto com a borda da tela. */
.bg-deep .section-label { color: var(--gold); }
.bg-deep .section-title { color: #fff; }
.bg-deep .section-sub { color: rgba(255, 255, 255, .72); }

.screens-row {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2px 26px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.3) transparent;
}
.screens-row::-webkit-scrollbar { height: 8px; }
.screens-row::-webkit-scrollbar-track { background: rgba(255,255,255,.08); border-radius: 50px; }
.screens-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 50px; }

.screen-item { flex: 0 0 196px; scroll-snap-align: start; }

.screen-frame {
  border-radius: 30px; padding: 7px;
  background: linear-gradient(160deg, #F1F5FA 0%, #C9D8E6 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .30);
  transition: transform .25s;
}
.screen-item:hover .screen-frame { transform: translateY(-6px); }
.screen-frame img { width: 100%; height: auto; display: block; border-radius: 24px; }

.screen-cap { margin-top: 16px; padding: 0 4px; }
.screen-cap b { display: block; font-size: .95rem; color: #fff; }
.screen-cap span { font-size: .82rem; color: rgba(255, 255, 255, .62); line-height: 1.5; }

.screens-hint {
  margin-top: 10px; font-size: .82rem; color: rgba(255, 255, 255, .55);
}

/* ── Passos ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.step .n {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-gold); color: var(--text); font-weight: 900; margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(184,148,42,.28);
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--muted); }

/* ── Planos ─────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.plan {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm);
}
.plan.featured { border-color: var(--gold); box-shadow: var(--shadow-md), 0 0 0 3px var(--gold-soft); }
.plan h3 { font-size: 1.35rem; margin: 14px 0 6px; }
.plan .price { font-size: .93rem; color: var(--muted); margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.plan li { display: flex; gap: 11px; font-size: .93rem; align-items: flex-start; }
.check {
  flex: none; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-soft); margin-top: 2px;
}
.check svg { width: 12px; height: 12px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.check.gold { background: var(--gold-soft); }
.check.gold svg { stroke: var(--gold-ink); }
.plan li small { color: var(--faint); font-size: .82rem; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 16px; padding: 2px 20px; box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--border); }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 800; font-size: .98rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--blue); font-size: 1.4rem; font-weight: 700; line-height: 1; flex: none;
}
.faq details[open] summary::after { content: '\2212'; }
.faq p { padding: 0 0 18px; color: var(--muted); font-size: .93rem; }

/* ── Faixa de CTA ───────────────────────────────────────── */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 540px; margin: 0 auto 30px; }
.cta-band .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); box-shadow: none; }
.cta-band .btn-ghost:hover { border-color: #fff; }

/* ── Páginas legais ─────────────────────────────────────── */
.page-head {
  background: var(--grad-blue); color: #fff; padding: 62px 0 78px;
  position: relative; overflow: hidden;
}
.page-head::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  right: -140px; top: -180px; background: rgba(212,175,55,.22); filter: blur(70px);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head .pill { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.32); }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin: 18px 0 12px; }
.page-head p { color: rgba(255,255,255,.84); max-width: 640px; font-size: 1rem; }
.page-head .meta { font-size: .84rem; margin-top: 16px; color: rgba(255,255,255,.72); }

.legal-layout {
  display: grid; grid-template-columns: 234px 1fr; gap: 44px;
  max-width: var(--max); margin: -36px auto 0; padding: 0 24px 90px;
  position: relative; z-index: 2;
}
.toc {
  position: sticky; top: 88px; align-self: start;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 20px 16px; box-shadow: var(--shadow-sm);
  max-height: calc(100vh - 120px); overflow-y: auto;
}
.toc strong {
  display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 12px; padding-left: 8px;
}
.toc ol { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc a {
  display: block; padding: 6px 9px; border-radius: 9px; font-size: .84rem;
  color: var(--muted); text-decoration: none; transition: background .16s, color .16s;
}
.toc a:hover, .toc a.active { background: var(--blue-soft); color: var(--blue-dark); font-weight: 700; }

.legal-body {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: 44px 46px; box-shadow: var(--shadow-sm); min-width: 0;
}
.legal-body section { padding: 0 0 34px; scroll-margin-top: 92px; }
.legal-body section:last-of-type { padding-bottom: 4px; }
.legal-body h2 {
  font-size: 1.26rem; margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--gold-soft); display: flex; align-items: baseline; gap: 10px;
}
.legal-body h2 .num { color: var(--gold-ink); font-size: .92rem; font-weight: 900; }
.legal-body h3 { font-size: 1rem; margin: 22px 0 8px; color: var(--blue-dark); }
.legal-body p { margin-bottom: 14px; color: #37485F; font-size: .96rem; }
.legal-body ul, .legal-body ol { margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 9px; }
.legal-body li { color: #37485F; font-size: .96rem; }
.legal-body strong { color: var(--text); font-weight: 800; }
.legal-body a { font-weight: 700; }
.legal-body .lead-in { font-size: 1.02rem; color: var(--muted); }

.note {
  background: var(--blue-soft); border-left: 4px solid var(--blue);
  border-radius: 0 12px 12px 0; padding: 14px 18px; margin: 4px 0 18px;
  font-size: .91rem; color: var(--blue-dark);
}
.note.gold { background: var(--gold-soft); border-left-color: var(--gold); color: var(--gold-ink); }
.note.red { background: #FDE6E6; border-left-color: var(--red); color: var(--red); }
.note.green { background: var(--green-soft); border-left-color: var(--green); color: var(--green); }
.note strong { color: inherit; }

.data-table { width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: .89rem; }
.data-table th, .data-table td {
  text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border-soft); vertical-align: top;
}
.data-table th {
  background: var(--surface-alt); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); font-weight: 800;
}
.data-table td { color: #37485F; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 18px; }
.table-scroll .data-table { margin-bottom: 0; min-width: 520px; }

.contact-box {
  background: var(--grad-blue); color: #fff; border-radius: var(--radius-lg);
  padding: 34px 36px; margin-top: 16px; box-shadow: var(--shadow-md);
}
.contact-box h2 { border: none; color: #fff; font-size: 1.3rem; margin-bottom: 10px; padding: 0; }
.contact-box p { color: rgba(255,255,255,.84); font-size: .95rem; }
.contact-box small { display: block; margin-top: 16px; font-size: .8rem; color: rgba(255,255,255,.7); }

/* Marcador do que ainda falta preencher antes de publicar. Aparecer é melhor
   do que virar um campo vazio que ninguém nota. */
.todo {
  display: inline-block; background: #FDE6E6; color: var(--red);
  border: 1px dashed rgba(181,16,16,.45); border-radius: 6px;
  padding: 0 7px; font-size: .84rem; font-weight: 800;
}

/* ── Rodapé ─────────────────────────────────────────────── */
footer.site { background: var(--blue-deep); color: rgba(255,255,255,.72); padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
.foot-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.05rem; margin-bottom: 12px; }
.foot-brand img { width: 32px; height: 32px; border-radius: 9px; }
.foot-grid p { font-size: .87rem; max-width: 290px; }
.foot-grid strong {
  display: block; color: #fff; font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-grid a { color: rgba(255,255,255,.72); text-decoration: none; font-size: .89rem; transition: color .18s; }
.foot-grid a:hover { color: var(--gold); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem;
}

/* ── 404 ────────────────────────────────────────────────── */
.center-page {
  min-height: 70vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 60px 24px;
}
.center-page .big { font-size: clamp(4rem, 12vw, 7rem); line-height: 1; margin-bottom: 8px; }

/* ── Responsivo ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-note { justify-content: center; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .toc { position: static; max-height: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 8px 20px 16px; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border-soft); }
  .nav-links li:last-child { border-bottom: none; padding-top: 12px; }
  .nav-links a { display: block; padding: 13px 2px; font-size: .96rem; }
  .nav-links .btn { display: inline-flex; }
  .nav-toggle { display: block; }
  .trust { grid-template-columns: 1fr; }
  .legal-body { padding: 30px 22px; }
  .foot-grid { grid-template-columns: 1fr; }
  .phone { width: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* Impressão: as páginas legais precisam sair em papel de vez em quando. */
@media print {
  header.nav, footer.site, .toc, .cta-band { display: none; }
  .page-head { background: none; color: var(--text); padding: 20px 0; }
  .page-head::after { display: none; }
  .page-head h1, .page-head p, .page-head .meta, .page-head .pill { color: var(--text); }
  .legal-layout { grid-template-columns: 1fr; margin: 0; padding-bottom: 0; }
  .legal-body { border: none; box-shadow: none; padding: 0; }
  .contact-box { background: none; color: var(--text); box-shadow: none; border: 1px solid var(--border); }
  .contact-box h2, .contact-box p, .contact-box small { color: var(--text); }
}
