/* ---------- tokens ---------- */
:root {
  --bg:        #ffffff;
  --bg-alt:    #f4f6f9;
  --bg-sunk:   #eef1f5;
  --fg:        #14181f;
  --fg-soft:   #4d5663;
  --fg-faint:  #767f8c;
  --rule:      #dde2e9;
  --accent:    #b3560c;
  --accent-fg: #ffffff;
  --ink:       #101720;
  --ink-fg:    #eef1f5;
  --danger:    #a1231d;
  --radius:    12px;
  --maxw:      1120px;
  --shadow:    0 1px 2px rgba(16,23,32,.05), 0 8px 24px rgba(16,23,32,.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0f1319;
    --bg-alt:    #151a22;
    --bg-sunk:   #1b212a;
    --fg:        #eef1f5;
    --fg-soft:   #aab3c0;
    --fg-faint:  #7f8996;
    --rule:      #262d38;
    --accent:    #ff9245;
    --accent-fg: #17120c;
    --ink:       #1b212a;
    --ink-fg:    #eef1f5;
    --danger:    #ff8d84;
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.3);
  }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 400 17px/1.65 ui-sans-serif, system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; }
[hidden] { display: none !important; }

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -.022em;
  font-weight: 700;
  margin: 0 0 .6em;
  text-wrap: balance;
}

a { color: var(--accent); text-underline-offset: .18em; }

.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;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--accent-fg);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
  font-weight: 600; text-decoration: none;
}
.skip:focus { left: 0; }

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

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

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
  padding-top: env(safe-area-inset-top, 0px);
}

.bar {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: .7rem 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; color: inherit; margin-right: auto;
}
.brand-logo {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.0625rem; letter-spacing: .01em; }
.brand-text small { font-size: .7rem; color: var(--fg-faint); }

@media (max-width: 560px) { .brand-text small { display: none; } }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  padding: .5rem .7rem;
  border-radius: 8px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--fg-soft);
  text-decoration: none;
}
.nav a:hover { color: var(--fg); background: var(--bg-sunk); }
.nav a.btn { color: var(--accent-fg); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: .5rem; border-radius: 8px; color: inherit;
}
.nav-toggle-box { display: block; width: 22px; height: 14px; position: relative; }
.nav-toggle-box i,
.nav-toggle-box::before,
.nav-toggle-box::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px; transition: .2s;
}
.nav-toggle-box::before { top: 0; }
.nav-toggle-box i { top: 6px; }
.nav-toggle-box::after { bottom: 0; }
body.nav-open .nav-toggle-box i { opacity: 0; }
body.nav-open .nav-toggle-box::before { top: 6px; transform: rotate(45deg); }
body.nav-open .nav-toggle-box::after { bottom: 6px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .15rem;
    padding: .6rem 20px 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav { display: flex; }
  .nav a { padding: .7rem .6rem; font-size: 1rem; }
  .nav a.btn { text-align: center; margin-top: .4rem; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-fg);
  border: 1px solid transparent;
  padding: .7rem 1.25rem;
  border-radius: 10px;
  font: inherit; font-weight: 600; font-size: .9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s, transform .15s;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .5rem .9rem; font-size: .875rem; }
.btn-lg { padding: .9rem 1.6rem; font-size: 1rem; }
.btn-ghost {
  background: transparent; color: var(--fg); border-color: var(--rule);
}
.btn-ghost:hover { background: var(--bg-sunk); filter: none; }
.btn-invert { background: var(--ink-fg); color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(3.5rem, 11vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(60rem 30rem at 15% -10%,
      color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%),
    var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.hero h1 { font-size: clamp(2.1rem, 6.2vw, 3.9rem); margin-bottom: .5em; }

.eyebrow {
  margin: 0 0 1rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent);
}

.lede {
  font-size: clamp(1.0625rem, 2.2vw, 1.25rem);
  color: var(--fg-soft);
  max-width: 44ch;
  margin: 0 0 2rem;
  text-wrap: pretty;
}

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-note { margin: 1.75rem 0 0; font-size: .875rem; color: var(--fg-faint); }

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--rule); }
.section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.section-lede {
  color: var(--fg-soft); max-width: 62ch;
  margin: 0 0 2.5rem; text-wrap: pretty;
}

.page-head {
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--rule);
}
.page-head h1 { font-size: clamp(1.9rem, 5vw, 3rem); }

/* ---------- cards ---------- */
.grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
}

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

.card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.section-alt .card { background: var(--bg); }
.card h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.card p { margin: 0; color: var(--fg-soft); font-size: .9375rem; }

/* ---------- demands ---------- */
.demands { list-style: none; counter-reset: d; margin: 0; padding: 0; }
.demands li {
  counter-increment: d;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-top: 1px solid var(--rule);
}
.demands li:last-child { border-bottom: 1px solid var(--rule); }
.demands li::before {
  content: counter(d);
  position: absolute; left: 0; top: 1.4rem;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent); color: var(--accent-fg);
  font-weight: 700; font-size: 1rem;
}
.demands h3 { font-size: 1.1875rem; margin-bottom: .35rem; }
.demands p { margin: 0; color: var(--fg-soft); max-width: 62ch; }

@media (max-width: 520px) {
  .demands li { padding-left: 3.25rem; }
  .demands li::before { width: 2.1rem; height: 2.1rem; font-size: .875rem; }
}

/* ---------- cta band ---------- */
.cta-band {
  background: var(--ink); color: var(--ink-fg);
  padding: clamp(3rem, 8vw, 4.5rem) 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.cta-band p {
  color: color-mix(in srgb, var(--ink-fg) 75%, transparent);
  max-width: 48ch; margin: 0 auto 2rem;
}

/* ---------- contacts ---------- */
.contact-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.contact-grid h3 {
  font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--fg-faint); margin-bottom: .35rem;
}
.contact-grid p { margin: 0; font-size: 1.0625rem; font-weight: 500; }

/* ---------- forms ---------- */
form fieldset {
  border: 0; padding: 0;
  margin: 0 0 2.25rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}
form fieldset:first-of-type { border-top: 0; padding-top: 0; }
form legend {
  padding: 0;
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 1.1rem;
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block; margin-bottom: .4rem;
  font-size: .9375rem; font-weight: 600;
}
.req { color: var(--danger); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .7rem .85rem;
  font: inherit; font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}
.field .invalid { border-color: var(--danger); }

.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.checks { display: flex; flex-wrap: wrap; gap: .5rem .9rem; }
.check {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .9375rem; font-weight: 400; cursor: pointer;
}
.check input { width: 1.05rem; height: 1.05rem; margin-top: .25rem; flex: none; accent-color: var(--accent); }
.check-block {
  align-items: flex-start;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1rem;
}
.check-block span { color: var(--fg-soft); }

.form-note {
  font-size: .875rem; color: var(--fg-faint);
  background: var(--bg-sunk);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  margin: 0 0 1.25rem;
}
.form-error {
  margin: 0 0 1rem; padding: .85rem 1rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--danger) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--danger) 40%, transparent);
  color: var(--danger);
  font-size: .9375rem; font-weight: 500;
}

.aside-box {
  margin-top: 3rem; padding: 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.aside-box h2 { font-size: 1.125rem; margin-bottom: .4rem; }
.aside-box p { margin: 0; color: var(--fg-soft); font-size: .9375rem; }

/* ---------- prose ---------- */
.prose h2 { font-size: 1.3rem; margin-top: 2.25rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--fg-soft); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }

.notice {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 2rem;
  font-size: .9375rem;
  color: var(--fg);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  padding: 3rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  font-size: .9375rem;
}
.foot-top {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  justify-content: space-between;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--rule);
}
.foot-top strong { font-size: 1.0625rem; }
.foot-top p { margin: .2rem 0 0; color: var(--fg-faint); font-size: .875rem; }
.foot-nav { display: flex; flex-wrap: wrap; gap: .4rem 1.25rem; align-items: flex-start; }
.foot-nav a { color: var(--fg-soft); text-decoration: none; }
.foot-nav a:hover { color: var(--accent); text-decoration: underline; }
.foot-legal { margin: 1.5rem 0 0; color: var(--fg-faint); font-size: .8125rem; }

/* ---------- aviso de sátira ---------- */
.satire-bar {
  position: relative;
  z-index: 60;
  background: #1c1917;
  color: #fde68a;
  padding: .6rem 20px calc(.6rem);
  padding-top: calc(.6rem + env(safe-area-inset-top, 0px));
  font-size: .8125rem;
  line-height: 1.45;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .7rem;
  justify-content: center;
  align-items: baseline;
  text-align: center;
  border-bottom: 2px solid #f59e0b;
}
.satire-bar strong { color: #fbbf24; letter-spacing: .06em; white-space: nowrap; }
.satire-bar span { color: #e7e5e4; }
.satire-bar a { color: #fbbf24; }

.site-header { top: 0; }

/* ---------- hero com imagem ---------- */
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}
.hero-figure { margin: 0; }
.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.hero-figure figcaption,
.poster figcaption {
  margin-top: .6rem;
  font-size: .8125rem;
  color: var(--fg-faint);
  text-align: center;
  text-wrap: pretty;
}

/* ---------- blocos com cartaz ---------- */
.split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .split { grid-template-columns: minmax(0, 24rem) 1fr; }
}
.split-body h3 { font-size: 1.1875rem; margin-top: 1.75rem; }
.split-body h3:first-child { margin-top: 0; }
.split-body p { color: var(--fg-soft); margin: 0; max-width: 60ch; }

.poster { margin: 0; }
.poster img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
}

.poster-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
@media (min-width: 900px) {
  .poster-wide { grid-column: 1 / -1; max-width: 46rem; margin-inline: auto; }
}

/* ---------- números ---------- */
.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
}
.stat {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.stat span {
  display: block;
  margin-top: .45rem;
  font-size: .8125rem;
  color: var(--fg-soft);
}
.stat-zero {
  border-color: color-mix(in srgb, var(--danger) 45%, transparent);
  background: color-mix(in srgb, var(--danger) 7%, var(--bg));
}
.stat-zero b { color: var(--danger); }

.stats-note {
  margin: 1.5rem 0 0;
  font-size: .875rem;
  color: var(--fg-faint);
  font-style: italic;
  max-width: 58ch;
}

/* ---------- testemunhos ---------- */
.quotes {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.quotes blockquote {
  margin: 0;
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.quotes p {
  margin: 0 0 .9rem;
  color: var(--fg-soft);
  font-size: .9375rem;
}
.quotes cite {
  font-style: normal;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--fg-faint);
}

/* ---------- rodapé: aviso legal ---------- */
.foot-disclaimer {
  margin: 1.5rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--bg-sunk);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 78ch;
}
.foot-disclaimer strong { color: var(--fg); }

.hero-split { padding-block: clamp(2.5rem, 7vw, 4.5rem); }
.hero-split .lede { max-width: 52ch; }

/* ---------- logótipo no rodapé ---------- */
.foot-logo {
  width: 260px;
  max-width: 100%;
  height: auto;
  display: block;
  color: var(--fg);
  margin-bottom: .5rem;
}

/* ---------- organograma ---------- */
.org {
  --org-line: var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
}

.org-tier {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  width: 100%;
}

/* conector vertical entre patamares */
.org-tier + .org-tier { margin-top: 3rem; }
.org-tier + .org-tier::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 50%;
  width: 2px;
  height: 3rem;
  background: var(--org-line);
  transform: translateX(-50%);
}

.org-card {
  position: relative;
  width: min(100%, 15.5rem);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
}

/* pequena haste a ligar cada cartão ao conector */
.org-tier + .org-tier .org-card::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  width: 2px;
  height: 1.5rem;
  background: var(--org-line);
  transform: translateX(-50%);
}

.org-top {
  width: min(100%, 19rem);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  border-width: 2px;
}

.org-photo {
  width: 84px;
  height: 84px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rule);
  background: var(--bg-sunk);
  display: grid;
  place-items: center;
}
.org-top .org-photo {
  width: 104px; height: 104px;
  border-color: var(--accent);
}
.org-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.org-empty span {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--fg-faint);
  line-height: 1;
}

.org-role {
  margin: 0 0 .15rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.org-name {
  margin: 0 0 .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.015em;
}
.org-vago { color: var(--fg-faint); font-weight: 600; }
.org-note {
  margin: 0;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--fg-soft);
  text-wrap: pretty;
}
.org-cta {
  display: inline-block;
  margin-top: .9rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
}
.org-cta:hover { border-bottom-color: var(--accent); }

@media (max-width: 640px) {
  .org-tier + .org-tier { margin-top: 2rem; }
  .org-tier + .org-tier::before { top: -2rem; height: 2rem; }
  .org-tier + .org-tier .org-card::before { display: none; }
  .org-card { width: 100%; }
}

.field-highlight select {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}

/* ---------- citação destacada ---------- */
.prose .pull {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-sunk);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose .pull p {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg);
  text-wrap: pretty;
}
.prose .pull cite {
  display: block;
  margin-top: .6rem;
  font-style: normal;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--fg-faint);
}



/* ---------- aviso de sátira dentro do formulário ---------- */
.satire-note {
  margin: 0 0 1rem;
  padding: .95rem 1.15rem;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  border-radius: var(--radius);
  font-size: .875rem;
  line-height: 1.6;
  color: var(--fg-soft);
}
.satire-note strong { color: var(--fg); }

/* ---------- tabela comparativa ---------- */
.tabela-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg);
}
.tabela {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  font-size: .9375rem;
}
.tabela th, .tabela td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.tabela thead th {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  background: var(--bg-alt);
  white-space: nowrap;
}
.tabela thead th:last-child { color: var(--accent); }
.tabela tbody th {
  font-weight: 600;
  color: var(--fg);
  width: 40%;
}
.tabela tbody td { color: var(--fg-soft); }
.tabela tbody tr:last-child th,
.tabela tbody tr:last-child td { border-bottom: 0; }
.tabela tbody tr:nth-child(even) { background: color-mix(in srgb, var(--bg-alt) 55%, transparent); }

.tabela .sim, .tabela .nao {
  font-weight: 600;
  white-space: nowrap;
}
.tabela .sim { color: var(--fg); }
.tabela .nao { color: var(--danger); }
