:root {
  --ink: #101c2e;
  --ink-raised: #1a2b42;
  --ink-deep: #0a1322;
  --amber: #ffc53d;
  --amber-strong: #e9a519;
  --amber-deep: #8f6208;
  --sand: #f5f5f1;
  --sand-dark: #ecebe5;
  --paper: #fdfdfb;

  --text: #101c2e;
  --text-soft: #3f4b5c;
  --text-muted: #5b6675;
  --text-faint: #7d8797;
  --text-on-ink: #fdfdfb;
  --text-on-ink-soft: #b9c3d1;
  --text-on-ink-muted: #93a0b2;

  --hairline: #e2e1da;
  --hairline-strong: #d2d1c8;
  --hairline-ink: #24374f;
  --hairline-ink-strong: #354b66;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --sans: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Archivo carrega o eixo de largura. Títulos ligeiramente condensados dão
     densidade sem precisar gritar em caixa-alta. */
  --display-tight: "wdth" 86, "wght" 700;
  --display-soft: "wdth" 92, "wght" 600;

  --gutter: 20px;
  --measure: 1180px;
  --radius: 3px;
  --tap: 56px;
  --section-y: 56px;
}

@media (min-width: 640px) { :root { --gutter: 32px; --section-y: 72px; } }
@media (min-width: 900px) { :root { --gutter: 48px; --section-y: 88px; } }
@media (min-width: 1200px) { :root { --gutter: 64px; --section-y: 104px; } }

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
h1, h2, h3, h4 { font-weight: 400; text-wrap: balance; }
p { text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--amber); color: var(--ink); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 14px 20px; background: var(--amber); color: var(--ink); font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ── layout ───────────────────────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: calc(var(--measure) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--sand-dark { background: var(--sand-dark); border-top: 1px solid var(--hairline); }
.section--ink { background: var(--ink); color: var(--text-on-ink); }
.section--ink-raised { background: var(--ink-raised); color: var(--text-on-ink); }

.section--ink .eyebrow, .section--ink-raised .eyebrow { color: var(--amber); }
.section--ink p, .section--ink-raised p { color: var(--text-on-ink-soft); }

.glow { background-image: radial-gradient(115% 80% at 82% 6%, rgba(255, 197, 61, .12) 0%, rgba(16, 28, 46, 0) 60%); }

.stack { display: flex; flex-direction: column; }
.stack-16 { gap: 16px; } .stack-20 { gap: 20px; }
.stack-24 { gap: 24px; } .stack-32 { gap: 32px; }

.grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 640px) and (max-width: 899px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .split--wide-first { grid-template-columns: 1.15fr .85fr; }
  .split--wide-last { grid-template-columns: .85fr 1.15fr; }
  .split--top { align-items: start; }
}

/* ── tipografia ───────────────────────────────────────────────────────── */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.eyebrow--rule { display: flex; align-items: center; gap: 12px; }
.eyebrow--rule::before { content: ""; width: 28px; height: 3px; background: var(--amber); }

.display {
  font-family: var(--display);
  font-variation-settings: var(--display-tight);
  font-size: clamp(2.35rem, 1.5rem + 3.7vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.018em;
}

.headline {
  font-family: var(--display);
  font-variation-settings: var(--display-tight);
  font-size: clamp(1.85rem, 1.35rem + 2.2vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.014em;
}

.subhead {
  font-family: var(--display);
  font-variation-settings: var(--display-soft);
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -.008em;
}

/* A tarja amarela é o gesto de marca dele — vem direto das legendas dos
   vídeos. Aqui vira grifo de marca-texto atrás da palavra. */
.marker {
  background-image: linear-gradient(
    transparent 8%, var(--amber) 8%, var(--amber) 92%, transparent 92%
  );
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding-inline: .14em;
  color: var(--ink);
}

.lede { font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem); line-height: 1.62; color: var(--text-soft); }
.section--ink .lede, .section--ink-raised .lede { color: var(--text-on-ink-soft); }

.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); font-size: .875rem; }
.serif-quote { font-size: clamp(1.15rem, 1.05rem + .6vw, 1.375rem); line-height: 1.5; font-style: italic; }

.section-head { display: grid; gap: 20px; margin-bottom: 40px; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.4fr .8fr; align-items: end; gap: 56px; margin-bottom: 52px; }
}
.section-head--center { justify-items: center; text-align: center; max-width: 780px; margin-inline: auto; }

/* ── botões ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: var(--tap); padding: 0 26px;
  border: 2px solid transparent; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; text-align: center;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--block { width: 100%; }
.btn--gold { background: var(--amber); color: var(--ink); }
.btn--gold:hover { background: var(--amber-strong); }
.btn--ink { background: var(--ink); color: var(--text-on-ink); }
.btn--ink:hover { background: var(--ink-raised); }
.btn--outline { border-color: var(--hairline-strong); color: var(--text); font-weight: 600; }
.btn--outline:hover { border-color: var(--ink); }
.section--ink .btn--outline, .section--ink-raised .btn--outline {
  border-color: var(--hairline-ink-strong); color: #dbe3ed;
}
.section--ink .btn--outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 479px) { .btn-row .btn { width: 100%; } }

.text-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding-bottom: 4px; border-bottom: 3px solid var(--amber); font-weight: 700;
}
.text-link .icon { color: var(--amber-deep); }
.section--ink .text-link .icon { color: var(--amber); }

/* ── cabeçalho ────────────────────────────────────────────────────────── */

.topbar {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; padding: 8px var(--gutter);
  background: var(--ink-deep); color: var(--text-on-ink-muted);
  font-size: 12.5px; letter-spacing: .02em; text-align: center;
}
.topbar .icon { color: var(--amber); flex-shrink: 0; }

.header { position: sticky; top: 0; z-index: 40; background: var(--ink); border-bottom: 1px solid var(--hairline-ink); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; }
@media (min-width: 900px) { .header__inner { min-height: 86px; } }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid; place-items: center; width: 42px; height: 42px; flex-shrink: 0;
  background: var(--amber); border-radius: var(--radius);
  font-family: var(--display); font-variation-settings: "wdth" 86, "wght" 800;
  font-size: 15px; letter-spacing: .02em; color: var(--ink);
}
.brand__name {
  font-family: var(--display); font-variation-settings: "wdth" 88, "wght" 700;
  font-size: 16px; letter-spacing: .01em; color: var(--text-on-ink);
  line-height: 1.15; white-space: nowrap;
}
@media (min-width: 900px) { .brand__name { font-size: 19px; } }
.brand__tagline {
  margin-top: 3px; font-size: 9.5px; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--amber); white-space: nowrap;
}
@media (min-width: 900px) { .brand__tagline { font-size: 10px; } }

.nav-toggle {
  display: grid; place-items: center; width: 48px; height: 48px;
  background: none; border: 2px solid var(--hairline-ink-strong);
  border-radius: var(--radius); color: #dbe3ed;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 15px; font-weight: 600; color: #dbe3ed; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--amber); }

.header__cta { display: none; }
@media (min-width: 1024px) { .header__cta { display: inline-flex; min-height: 48px; padding: 0 22px; font-size: 14.5px; } }

@media (max-width: 1023px) {
  .nav {
    display: none; position: absolute; inset: 100% 0 auto;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 24px; background: var(--ink);
    border-bottom: 1px solid var(--hairline-ink);
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { display: flex; align-items: center; min-height: var(--tap); font-size: 1.0625rem; border-bottom: 1px solid var(--hairline-ink); }
  .nav .btn { margin-top: 16px; }
}
@media (min-width: 1024px) { .nav .btn { display: none; } }

/* ── hero ─────────────────────────────────────────────────────────────── */

.hero { padding-block: 48px 56px; }
@media (min-width: 900px) { .hero { padding-block: 76px 92px; } }
.hero__grid { display: grid; gap: 36px; align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.1fr .9fr; gap: 68px; } }
.hero h1 { color: var(--text-on-ink); }

.photo-frame {
  display: grid; place-items: end center; padding: 18px; aspect-ratio: 4 / 5;
  border: 1px solid var(--hairline-ink-strong); border-radius: var(--radius);
  background: linear-gradient(165deg, #22354f 0%, #16253a 55%, #101c2e 100%);
}
.photo-frame--light {
  border-color: var(--hairline-strong);
  background: linear-gradient(160deg, #e4e3dc 0%, #d3d2c9 100%);
}
.photo-frame--wide { aspect-ratio: 4 / 3; }
.photo-frame__label {
  padding: 8px 14px; background: rgba(10, 19, 34, .78);
  border: 1px solid var(--hairline-ink-strong);
  font-size: 11.5px; letter-spacing: .06em; color: var(--text-on-ink-muted); text-align: center;
}
.photo-frame--light .photo-frame__label {
  background: rgba(253, 253, 251, .9); border-color: var(--hairline-strong); color: var(--text-muted);
}

/* ── números ──────────────────────────────────────────────────────────── */

.metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: var(--ink-raised); }
@media (min-width: 900px) { .metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.metric {
  display: flex; flex-direction: column; gap: 6px; padding: 24px var(--gutter);
  border-bottom: 1px solid var(--hairline-ink); border-right: 1px solid var(--hairline-ink);
}
@media (min-width: 900px) { .metric { padding: 32px; border-bottom: 0; } }
.metric:last-child { border-right: 0; }
@media (max-width: 899px) { .metric:nth-child(2n) { border-right: 0; } }
.metric__value {
  font-family: var(--display); font-variation-settings: var(--display-tight);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.1rem); color: var(--amber);
}
.metric__label { font-size: 13.5px; line-height: 1.4; color: var(--text-on-ink-muted); }

/* ── cartões ──────────────────────────────────────────────────────────── */

.card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 30px 26px 32px; background: var(--paper);
  border: 1px solid var(--hairline); border-radius: var(--radius);
}
@media (min-width: 640px) { .card { padding: 34px 30px 36px; } }
.card--ink { background: var(--ink); border-color: var(--ink); color: var(--text-on-ink); }
.card--ink p { color: var(--text-on-ink-soft); }
.card--top-rule { border-top: 4px solid var(--amber); }
.card--left-rule { border-left: 4px solid var(--amber); }
a.card { transition: border-color .15s ease, box-shadow .15s ease; }
a.card:hover { border-color: var(--amber-strong); box-shadow: 0 2px 0 var(--amber-strong); }
.card .icon { color: var(--amber-deep); }
.card--ink .icon { color: var(--amber); }
.card__number {
  font-family: var(--display); font-variation-settings: var(--display-tight);
  font-size: 15px; letter-spacing: .1em; color: var(--amber-deep);
}
.card__step {
  font-family: var(--display); font-variation-settings: var(--display-tight);
  font-size: 2.25rem; line-height: 1; color: var(--hairline-strong);
}
.card p { font-size: .9375rem; line-height: 1.64; color: var(--text-muted); }
.card--ink p { color: var(--text-on-ink-soft); }

.outcome {
  padding: 12px 16px; background: #f4efe0; border-left: 4px solid var(--amber);
  font-size: .9375rem; line-height: 1.55; color: var(--text);
}

.stars { display: flex; gap: 3px; color: var(--amber-strong); }

/* ── listas ───────────────────────────────────────────────────────────── */

.rule-list { display: flex; flex-direction: column; gap: 1px; background: var(--hairline-strong); border: 1px solid var(--hairline-strong); }
.rule-list--ink { background: var(--hairline-ink); border-color: var(--hairline-ink); }
.rule-list__item { display: flex; align-items: center; gap: 16px; min-height: 68px; padding: 16px 20px; background: var(--paper); }
.rule-list--ink .rule-list__item { background: var(--ink-raised); color: var(--text-on-ink); }
.rule-list__item .icon { color: var(--amber-deep); flex-shrink: 0; }
.rule-list--ink .rule-list__item .icon { color: var(--amber); }
.rule-list__item > span { flex-grow: 1; font-size: 1rem; font-weight: 600; line-height: 1.35; }
.rule-list__item--current { background: var(--ink); color: var(--text-on-ink); }
.rule-list__item--current .icon { color: var(--amber); }

.numbered { display: flex; flex-direction: column; gap: 20px; }
.numbered__item { display: flex; gap: 16px; align-items: flex-start; }
.numbered__badge {
  display: grid; place-items: center; flex-shrink: 0; width: 32px; height: 32px;
  background: var(--amber); border-radius: var(--radius);
  font-family: var(--display); font-variation-settings: "wdth" 88, "wght" 700;
  font-size: 14px; color: var(--ink);
}
.numbered__item h3, .numbered__item h4 { font-size: 1.0625rem; font-weight: 700; color: var(--text-on-ink); }
.numbered__item p { font-size: 1rem; line-height: 1.6; color: var(--text-on-ink-soft); }

.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 1rem; line-height: 1.5; color: var(--text-soft); }
.check-list .icon { flex-shrink: 0; margin-top: 3px; color: var(--amber-deep); }
.card--ink .check-list li { color: #dbe3ed; }
.card--ink .check-list .icon { color: var(--amber); }

.fact-list { display: flex; flex-direction: column; gap: 14px; }
.fact-list__row { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 13px; border-bottom: 1px solid var(--hairline-ink); }
.fact-list__row:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-list__label { font-size: .875rem; color: var(--text-on-ink-muted); }
.fact-list__value { font-size: .9375rem; font-weight: 600; text-align: right; color: #dbe3ed; }

/* ── canais oficiais ──────────────────────────────────────────────────── */

.warning-band {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  padding: 20px 24px; background: var(--amber); color: var(--ink); border-radius: var(--radius);
}
.warning-band .icon { flex-shrink: 0; }
.warning-band p { font-size: 1rem; font-weight: 600; line-height: 1.5; flex: 1 1 260px; color: var(--ink) !important; }

/* ── faq ──────────────────────────────────────────────────────────────── */

.faq { border-top: 2px solid var(--hairline-strong); }
.faq details { border-bottom: 1px solid var(--hairline-strong); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: var(--tap); padding: 18px 4px;
  font-size: 1.0625rem; font-weight: 700; line-height: 1.35; list-style: none; cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { flex-shrink: 0; color: var(--text-faint); transition: transform .18s ease; }
.faq details[open] summary .icon { transform: rotate(180deg); color: var(--amber-deep); }
.faq__answer { padding: 0 4px 22px; font-size: 1rem; line-height: 1.7; color: var(--text-soft); max-width: 70ch; }
.faq__answer p + p { margin-top: 12px; }

/* ── formulário ───────────────────────────────────────────────────────── */

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-on-ink-muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: var(--tap); padding: 15px 16px;
  background: var(--ink-raised); border: 2px solid var(--hairline-ink-strong);
  border-radius: var(--radius); color: var(--text-on-ink);
  font-family: var(--sans); font-size: 1rem; line-height: 1.5;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f7d90; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); outline: none; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffc53d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9.5 12 16.5l7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 46px;
}
.field--error input, .field--error select, .field--error textarea { border-color: #f08c5a; }
.field__error { font-size: .875rem; font-weight: 600; color: #ffab7d; }

.consent { display: flex; align-items: flex-start; gap: 12px; }
.consent input { width: 24px; height: 24px; min-height: 0; margin-top: 2px; flex-shrink: 0; accent-color: var(--amber); }
.consent label { font-size: .875rem; font-weight: 400; line-height: 1.55; text-transform: none; letter-spacing: 0; color: var(--text-on-ink-muted); }
.consent a { color: var(--amber); border-bottom: 1px solid var(--hairline-ink-strong); }

.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.alert { padding: 14px 18px; border-left: 4px solid var(--amber); background: rgba(255, 197, 61, .12); font-size: .9375rem; }
.alert--error { border-color: #f08c5a; background: rgba(240, 140, 90, .14); }

/* ── contato ──────────────────────────────────────────────────────────── */

.contact-card {
  display: flex; align-items: center; gap: 18px; padding: 24px 26px;
  background: var(--ink-raised); border: 1px solid var(--hairline-ink-strong); border-radius: var(--radius);
}
.contact-card .icon { color: var(--amber); flex-shrink: 0; }
.contact-card__label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-on-ink-muted); }
.contact-card__value {
  font-family: var(--display); font-variation-settings: var(--display-soft);
  font-size: 1.4rem; color: var(--text-on-ink);
}
.contact-card--stacked { flex-direction: column; align-items: stretch; gap: 12px; }
.contact-card--stacked p { font-size: 1rem; line-height: 1.6; color: #dbe3ed; }
.contact-card__head { display: flex; align-items: center; gap: 10px; }

/* ── breadcrumbs ──────────────────────────────────────────────────────── */

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-muted); }
.breadcrumbs .icon { color: var(--text-faint); }
.breadcrumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ── blog ─────────────────────────────────────────────────────────────── */

.post-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.post-card:hover { border-color: var(--amber-strong); box-shadow: 0 2px 0 var(--amber-strong); }
.post-card__media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(150deg, #dcdbd3 0%, #c9c8bf 100%); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__tag {
  position: absolute; left: 16px; bottom: 16px; padding: 6px 11px;
  background: var(--amber); font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.post-card__body { display: flex; flex-direction: column; gap: 12px; padding: 24px 24px 28px; flex-grow: 1; }
.post-card__title {
  font-family: var(--display); font-variation-settings: var(--display-soft);
  font-size: 1.3125rem; line-height: 1.22; letter-spacing: -.01em;
}
.post-card__body p { font-size: .9375rem; line-height: 1.62; color: var(--text-muted); }
.post-card__meta { margin-top: auto; padding-top: 4px; font-size: .8125rem; color: var(--text-faint); }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border: 2px solid var(--hairline-strong); border-radius: 999px;
  font-size: .9375rem; font-weight: 600;
}
.chip:hover { border-color: var(--amber-strong); }
.chip--active { background: var(--ink); border-color: var(--ink); color: var(--text-on-ink); }

.search-form { display: flex; gap: 10px; flex-wrap: wrap; }
.search-form input {
  flex: 1 1 220px; min-height: var(--tap); padding: 0 16px;
  background: var(--paper); border: 2px solid var(--hairline-strong);
  border-radius: var(--radius); font-family: var(--sans); font-size: 1rem; color: var(--text);
}
.search-form input:focus { border-color: var(--amber-strong); outline: none; }

.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 48px; min-height: 48px; padding: 0 14px;
  border: 2px solid var(--hairline-strong); border-radius: var(--radius); font-size: .9375rem; font-weight: 600;
}
.pagination a:hover { border-color: var(--amber-strong); }
.pagination .is-current { background: var(--ink); border-color: var(--ink); color: var(--text-on-ink); }

.article { max-width: 72ch; margin-inline: auto; }
.article__hero { max-width: 72ch; margin-inline: auto; display: flex; flex-direction: column; gap: 20px; }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .875rem; color: var(--text-muted); }
.article__cover { margin-block: 40px; border-radius: var(--radius); overflow: hidden; }

.prose { font-size: 1.0625rem; line-height: 1.75; color: var(--text-soft); }
.prose > * + * { margin-top: 22px; }
.prose h2 {
  font-family: var(--display); font-variation-settings: var(--display-tight);
  font-size: clamp(1.55rem, 1.3rem + 1.1vw, 1.9rem); line-height: 1.14;
  letter-spacing: -.012em; color: var(--text); margin-top: 44px;
}
.prose h3 {
  font-family: var(--display); font-variation-settings: var(--display-soft);
  font-size: clamp(1.25rem, 1.1rem + .6vw, 1.45rem); line-height: 1.2; color: var(--text); margin-top: 34px;
}
.prose h4 { font-size: 1.0625rem; font-weight: 700; color: var(--text); margin-top: 28px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--text); border-bottom: 2px solid var(--amber); font-weight: 600; }
.prose a:hover { background: rgba(255, 197, 61, .25); }
.prose ul, .prose ol { display: flex; flex-direction: column; gap: 10px; padding-left: 22px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose blockquote {
  padding: 4px 0 4px 22px; border-left: 4px solid var(--amber);
  font-size: 1.1875rem; line-height: 1.5; font-weight: 600; color: var(--text);
}
.prose img { border-radius: var(--radius); }
.prose figure figcaption { margin-top: 10px; font-size: .875rem; color: var(--text-faint); }
.prose pre { padding: 18px 20px; background: var(--ink); color: #dbe3ed; border-radius: var(--radius); overflow-x: auto; font-size: .875rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--hairline-strong); text-align: left; }
.prose th { background: var(--sand-dark); font-weight: 700; }
.prose .ql-align-center { text-align: center; }
.prose .ql-align-right { text-align: right; }
.prose .ql-indent-1 { padding-left: 3em; }
.prose .ql-indent-2 { padding-left: 6em; }

.table-scroll { overflow-x: auto; }

/* ── rodapé ───────────────────────────────────────────────────────────── */

.footer { background: var(--ink-deep); color: var(--text-on-ink-muted); padding-block: 48px 32px; }
.footer__grid { display: grid; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--hairline-ink); }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; } }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; } }
.footer h2 { font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.footer nav { display: flex; flex-direction: column; gap: 12px; }
.footer nav a { display: inline-flex; align-items: center; gap: 10px; font-size: .9375rem; color: #a9b5c4; min-height: 32px; }
.footer nav a:hover { color: var(--amber); }
.footer nav .icon { color: var(--text-on-ink-muted); }
.footer__legal { display: grid; gap: 16px; padding-top: 24px; font-size: 12.5px; line-height: 1.65; color: #6f7d90; }
@media (min-width: 900px) { .footer__legal { grid-template-columns: 1fr auto; gap: 48px; } }
@media (min-width: 900px) { .footer__legal p:last-child { text-align: right; } }

/* ── barra fixa ───────────────────────────────────────────────────────── */

.sticky-cta {
  position: sticky; bottom: 0; z-index: 30;
  display: flex; gap: 12px; padding: 12px var(--gutter);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(10, 19, 34, .97); border-top: 2px solid var(--amber);
  backdrop-filter: blur(8px);
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.sticky-cta .btn { flex-grow: 1; min-height: 52px; }
.sticky-cta__icon {
  display: grid; place-items: center; width: 52px; height: 52px; flex-shrink: 0;
  border: 2px solid var(--hairline-ink-strong); border-radius: var(--radius); color: #dbe3ed;
}

/* ── utilitários ──────────────────────────────────────────────────────── */

.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.fine-print { font-size: 13px; line-height: 1.6; color: var(--text-on-ink-muted); }
.section--sand .fine-print, .section--sand-dark .fine-print { color: var(--text-faint); }
