/* ============================================================
   Dr. Bruno Couto Moreira — Psiquiatra em BH
   Design System v2 · Editorial Premium
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Cores — paleta mais quente, com mais profundidade */
  --paper:       #F2F5FA;          /* papel frio azulado, base principal */
  --paper-2:     #E6EDF5;          /* papel mais escuro p/ alternância */
  --paper-3:     #FAFCFE;          /* papel claro p/ destaque */
  --paper-warm:  #EBF1F8;          /* papel ainda mais quente, p/ heroes */

  --ink-deep:    #0E1F33;          /* texto principal, near-black com tom azul */
  --ink:         #16212F;
  --ink-soft:    #45566A;
  --ink-muted:   #78838F;
  --ink-faint:   #B6C0CA;

  --white:       #FFFFFF;

  --teal-900:    #1E3E66;          /* azul-marinho — primária escura */
  --teal-700:    #305F91;
  --teal-500:    #6E97C0;
  --teal-100:    #D9E5F2;
  --teal-50:     #ECF2F9;

  --gold-700:    #2F5E85;          /* acento azul-aço */
  --gold-600:    #4E82B2;
  --gold-400:    #8FB2D6;
  --gold-100:    #DDE9F5;
  --gold-50:     #EFF5FB;

  --olive-700:   #4A5733;          /* acento natural, opcional */

  --alert-amber: #B86A1F;
  --alert-bg:    #FAEDD4;

  --border:      #E5DEC9;
  --border-soft: #EFE9D7;
  --border-strong: #C8BF9F;
  --hairline:    linear-gradient(90deg, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent);

  --shadow-1: 0 1px 2px rgba(20,24,26,0.04);
  --shadow-2: 0 6px 18px rgba(20,24,26,0.07), 0 1px 2px rgba(20,24,26,0.04);
  --shadow-3: 0 24px 56px rgba(20,24,26,0.11), 0 4px 12px rgba(20,24,26,0.05);
  --shadow-frame: 0 30px 80px rgba(20,24,26,0.18), 0 8px 24px rgba(20,24,26,0.06);

  /* Tipografia */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Apple Garamond',
                  Georgia, Cambria, 'Times New Roman', serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Espaçamento (4pt) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-8: 32px;  --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-32: 128px; --s-40: 160px; --s-48: 192px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container-max: 1240px;
  --container-narrow: 920px;
  --container-prose: 720px;
  --container-pad: var(--s-5);

  --dur-fast: 160ms;
  --dur-base: 280ms;
  --dur-slow: 520ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-elegant: cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media (min-width: 768px) {
  :root { --container-pad: var(--s-8); }
}
@media (min-width: 1024px) {
  :root { --container-pad: var(--s-12); }
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
img, picture, svg, video { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- BASE ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  position: relative;
  min-height: 100vh;
}

/* Grão sutil no fundo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.028;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

@media (min-width: 768px) {
  body { font-size: 18px; }
}

::selection {
  background: var(--teal-700);
  color: var(--paper);
}

/* ---------- TIPOGRAFIA ---------- */
p { max-width: 64ch; }
p + p { margin-top: var(--s-4); }

a {
  color: var(--teal-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(39, 76, 135, 0.35);
  transition: color var(--dur-fast) var(--ease-out),
              text-decoration-color var(--dur-fast) var(--ease-out);
}
a:hover {
  color: var(--teal-900);
  text-decoration-color: var(--teal-900);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--ink-deep);
  text-wrap: balance;
  font-variation-settings: "opsz" 96, "SOFT" 30, "WONK" 0;
}
h1 {
  font-size: clamp(2.4rem, 1.5rem + 4.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-weight: 400;
}
h2 {
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 96, "SOFT" 40;
}
h3 {
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.55rem);
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
h4 {
  font-size: 1.1rem;
  font-family: var(--font-text);
  font-weight: 600;
  letter-spacing: -0.005em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--teal-700);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1;
}

.lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 56ch;
  letter-spacing: -0.008em;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 40;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-text);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold-600);
}

/* Numeração editorial das seções */
.section-number {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  font-size: 1.1rem;
  color: var(--gold-700);
  letter-spacing: 0.02em;
  margin-bottom: var(--s-4);
  display: block;
}

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  float: left;
  font-size: 4.4em;
  line-height: 0.86;
  padding: 0.06em 0.14em 0 0;
  color: var(--teal-900);
}

/* ---------- LAYOUT ---------- */
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  position: relative;
  z-index: 2;
}
.wrap.narrow { max-width: var(--container-narrow); }
.wrap.prose { max-width: var(--container-prose); }

.section-pad { padding-top: var(--s-20); padding-bottom: var(--s-20); }
@media (min-width: 768px) {
  .section-pad { padding-top: var(--s-32); padding-bottom: var(--s-32); }
}

.bg-paper { background: var(--paper); }
.bg-paper2 { background: var(--paper-2); }
.bg-paper3 { background: var(--paper-3); }
.bg-paper-warm { background: var(--paper-warm); }
.bg-teal { background: var(--teal-900); color: var(--paper); }
.bg-teal .eyebrow { color: var(--gold-400); }
.bg-teal .eyebrow::before { background: var(--gold-400); }
.bg-teal h2, .bg-teal h3, .bg-teal h4 { color: var(--paper); }
.bg-teal .lead, .bg-teal p { color: rgba(240,244,250,0.85); }
.bg-teal .section-number { color: var(--gold-400); }

.section-head { max-width: 720px; margin-bottom: var(--s-12); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow,
.section-head.center .section-number { justify-content: center; }
.section-head .lead { margin-top: var(--s-4); }
.section-head h2 { margin-top: var(--s-1); }

/* Asterismo separador editorial */
.asterism {
  text-align: center;
  margin: var(--s-12) auto;
  color: var(--gold-600);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.6em;
  user-select: none;
}
.asterism::before { content: "✦  ✦  ✦"; }

/* Hairline com gradiente */
.hairline {
  border: 0;
  height: 1px;
  background: var(--hairline);
  margin: var(--s-12) 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240,244,250,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(240,244,250,0.94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  min-height: 76px;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal-900);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink-deep);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 36, "SOFT" 30;
}
.brand-text span {
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: none;
  gap: 2px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--dur-fast), background var(--dur-fast);
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--ink-deep); background: rgba(20,24,26,0.04); }
.nav-links a[aria-current="page"] {
  color: var(--teal-900);
  background: var(--teal-100);
}
.nav-links .btn { margin-left: var(--s-3); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink-deep);
  border-radius: 2px;
  transition: transform var(--dur-base), opacity var(--dur-base);
}

@media (min-width: 1024px) {
  .nav-links { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: var(--s-6);
  z-index: 99;
  overflow-y: auto;
}
.nav-drawer.open { display: block; }
.nav-drawer a {
  display: block;
  padding: var(--s-3) 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  color: var(--ink-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: -0.008em;
}
.nav-drawer a:last-of-type { border-bottom: 0; }
.nav-drawer .btn { width: 100%; justify-content: center; margin-top: var(--s-5); }
@media (min-width: 1024px) { .nav-drawer { display: none !important; } }

/* ---------- BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: -0.003em;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast),
              border-color var(--dur-fast), transform var(--dur-fast),
              box-shadow var(--dur-fast);
  white-space: nowrap;
  position: relative;
}
.btn::after {
  content: "→";
  font-family: var(--font-display);
  font-weight: 400;
  margin-left: 2px;
  transition: transform var(--dur-fast) var(--ease-out);
}
.btn:hover::after { transform: translateX(3px); }
.btn.no-arrow::after { display: none; }

.btn-primary { background: var(--teal-900); color: var(--paper); }
.btn-primary:hover { background: var(--ink-deep); color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-2); }

.btn-ghost {
  background: transparent;
  color: var(--teal-900);
  border: 1px solid var(--teal-700);
}
.btn-ghost:hover { background: var(--teal-50); color: var(--teal-900); border-color: var(--teal-900); }

.btn-light { background: var(--paper); color: var(--teal-900); }
.btn-light:hover { background: var(--white); color: var(--ink-deep); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(240,244,250,0.45);
}
.btn-outline-light:hover { border-color: var(--paper); background: rgba(255,255,255,0.06); color: var(--paper); }

.btn-sm { height: 42px; padding: 0 20px; font-size: 0.88rem; }
.btn-lg { height: 58px; padding: 0 32px; font-size: 1rem; }

/* ---------- HERO ---------- */
.hero {
  padding-top: var(--s-16);
  padding-bottom: var(--s-20);
  position: relative;
}
@media (min-width: 768px) {
  .hero { padding-top: var(--s-20); padding-bottom: var(--s-32); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--s-16); }
}
.hero h1 { margin-top: var(--s-3); }
.hero .lead { margin-top: var(--s-6); max-width: 50ch; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-8);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-10);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
  max-width: 540px;
  position: relative;
}
.hero-trust::before {
  content: "";
  position: absolute;
  top: -0.5px;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--teal-700);
}
.hero-trust div { display: flex; flex-direction: column; gap: 4px; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink-deep);
  font-feature-settings: "lnum" 0, "onum" 1;
  letter-spacing: -0.012em;
}
.hero-trust span {
  font-size: 0.74rem;
  color: var(--ink-muted);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hero-portrait { position: relative; }
.frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--teal-100);
  box-shadow: var(--shadow-frame);
  max-width: 440px;
  margin: 0 auto;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(240,244,250,0.55);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
  z-index: 2;
}
.frame img, .frame svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-badge {
  position: absolute;
  bottom: -18px;
  right: 12px;
  background: var(--paper-3);
  border-radius: var(--radius-md);
  padding: var(--s-3) var(--s-4);
  box-shadow: var(--shadow-2);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  max-width: 250px;
  border: 1px solid var(--border-soft);
  animation: gentle-float 6s ease-in-out infinite;
}
@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.hero-badge .stars { color: var(--gold-600); font-size: 0.9rem; letter-spacing: 1.5px; }
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  margin-top: 2px;
  color: var(--ink-deep);
}
.hero-badge span { font-size: 0.72rem; color: var(--ink-muted); line-height: 1.3; letter-spacing: 0.01em; }
@media (min-width: 1024px) {
  .hero-badge { right: -24px; bottom: 28px; max-width: 270px; }
}

.dateline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-muted);
  letter-spacing: 0.015em;
  font-variation-settings: "opsz" 24, "SOFT" 40;
}

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding-top: var(--s-12);
  padding-bottom: var(--s-12);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
@media (min-width: 768px) {
  .page-hero { padding-top: var(--s-20); padding-bottom: var(--s-16); }
}
.page-hero h1 { margin-top: var(--s-3); max-width: 22ch; }
.page-hero .lead { margin-top: var(--s-5); }
.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-900); text-decoration: underline; }
.breadcrumb span.sep { color: var(--ink-faint); }

/* ---------- CARDS / GRID ---------- */
.cond-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 640px) { .cond-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cond-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }

.cond-card {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6) var(--s-6);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  height: 100%;
  position: relative;
}
.cond-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.cond-card h3 {
  font-size: 1.4rem;
  margin: var(--s-1) 0 0;
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.cond-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  flex-grow: 1;
  line-height: 1.55;
}
.cond-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--paper-3));
  color: var(--teal-700);
  display: grid;
  place-items: center;
  margin-bottom: var(--s-2);
  border: 1px solid var(--border-soft);
}
.cond-link {
  text-decoration: none;
  color: var(--teal-700);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border-soft);
  letter-spacing: 0.005em;
}
.cond-link span { transition: transform var(--dur-fast); font-family: var(--font-display); }
.cond-link:hover { color: var(--teal-900); }
.cond-link:hover span { transform: translateX(4px); }

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  counter-reset: step;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }
.step {
  background: rgba(240,244,250,0.04);
  border: 1px solid rgba(240,244,250,0.12);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6) var(--s-6);
  position: relative;
  counter-increment: step;
  transition: background var(--dur-base);
}
.step:hover { background: rgba(240,244,250,0.07); }
.step::before {
  content: counter(step, upper-roman);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-400);
  margin-bottom: var(--s-4);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: 0.04em;
}
.step h3 {
  font-size: 1.2rem;
  color: var(--paper);
  margin: 0 0 var(--s-2);
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.step p { color: rgba(240,244,250,0.78); font-size: 0.92rem; margin: 0; line-height: 1.55; }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--s-20); }
}
.about-portrait { max-width: 420px; margin: 0 auto; }
.about-portrait .frame {
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-3);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cred-list { list-style: none; padding: 0; margin: var(--s-6) 0 0; display: flex; flex-direction: column; gap: var(--s-3); }
.cred-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cred-list li strong { color: var(--ink-deep); font-weight: 600; }
.cred-list .tick {
  position: absolute;
  left: 0;
  top: 3px;
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-900);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ---------- CRED STRIP ---------- */
.cred-strip {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  text-align: center;
  box-shadow: var(--shadow-1);
  position: relative;
}
@media (min-width: 640px) { .cred-strip { grid-template-columns: repeat(4, 1fr); } }
.cred-strip > div { display: flex; flex-direction: column; gap: 4px; position: relative; }
@media (min-width: 640px) {
  .cred-strip > div + div::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--s-3));
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: var(--border-soft);
  }
}
.cred-strip strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--ink-deep);
  font-feature-settings: "lnum" 0, "onum" 1;
  letter-spacing: -0.015em;
}
.cred-strip span {
  font-size: 0.74rem;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- TESTIMONIALS ---------- */
.tst-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 640px) { .tst-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tst-grid { grid-template-columns: repeat(3, 1fr); } }
.tst-card {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-8) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
  position: relative;
}
.tst-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.tst-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  color: var(--gold-400);
  line-height: 1;
}
.tst-card .stars { color: var(--gold-600); letter-spacing: 2px; font-size: 0.88rem; margin-top: var(--s-3); }
.tst-card p {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 40;
  font-weight: 400;
}
.tst-card .who { display: flex; align-items: center; gap: var(--s-3); margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--border-soft); }
.tst-card .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-900);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.tst-card .who strong { font-size: 0.92rem; display: block; color: var(--ink-deep); font-family: var(--font-text); font-weight: 600; }
.tst-card .who span { font-size: 0.74rem; color: var(--ink-muted); letter-spacing: 0.015em; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: var(--s-2); max-width: 820px; }
.faq-item {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-1); background: var(--white); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  letter-spacing: -0.008em;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--teal-700);
  line-height: 1;
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}
.faq-item .faq-a p { margin: 0; }
.faq-item .faq-a p + p { margin-top: var(--s-3); }

/* ---------- LOCATION CARDS ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc-card {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.loc-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.loc-card .tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--teal-100);
  color: var(--teal-900);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.loc-card h3 {
  font-size: 1.4rem;
  margin: 0;
  font-variation-settings: "opsz" 96, "SOFT" 40;
}
.loc-card address {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------- MED ALERT ---------- */
.med-alert {
  background: var(--alert-bg);
  border-left: 3px solid var(--alert-amber);
  padding: var(--s-5) var(--s-6);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 820px;
}
.med-alert strong { color: var(--ink-deep); }
.med-alert a { color: var(--ink-deep); font-weight: 600; text-decoration: underline; text-decoration-color: var(--alert-amber); }

.aside-card {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
}
.aside-card h4 { font-size: 1.05rem; margin: 0 0 var(--s-3); font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 60, "SOFT" 30; color: var(--ink-deep); }
.aside-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 var(--s-2); }

/* ---------- CTA BLOCK ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--teal-900) 0%, #0E1E3C 100%);
  color: var(--paper);
  border-radius: var(--radius-xl);
  padding: var(--s-16) var(--s-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(110,151,192,0.16) 0%, transparent 60%);
  pointer-events: none;
}
@media (min-width: 768px) { .cta-block { padding: var(--s-20) var(--s-12); } }
.cta-block h2 {
  color: var(--paper);
  margin: 0 auto;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.cta-block p { color: rgba(240,244,250,0.85); margin: var(--s-5) auto 0; max-width: 52ch; font-family: var(--font-display); font-size: 1.15rem; font-variation-settings: "opsz" 24, "SOFT" 40; line-height: 1.5; }
.cta-block .hero-cta { justify-content: center; margin-top: var(--s-10); position: relative; z-index: 1; }

/* ---------- ARTICLE BODY ---------- */
.article-body { max-width: var(--container-prose); }
.article-body > section { margin-top: var(--s-12); }
.article-body > section:first-child { margin-top: 0; }
.article-body h2 { margin-bottom: var(--s-5); margin-top: 0; }
.article-body h3 {
  margin-top: var(--s-8);
  margin-bottom: var(--s-3);
  font-family: var(--font-text);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-900);
  letter-spacing: -0.005em;
}
.article-body ul, .article-body ol {
  padding-left: var(--s-5);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}
.article-body ul li, .article-body ol li { margin-bottom: var(--s-2); padding-left: var(--s-1); }
.article-body p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.article-body blockquote {
  margin: var(--s-8) 0;
  padding: var(--s-5) var(--s-6);
  border-left: 3px solid var(--gold-600);
  background: var(--gold-50);
  color: var(--ink);
  font-size: 1rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  font-style: italic;
}
.article-body blockquote p { color: var(--ink-deep); margin: 0; font-style: italic; }

/* Pull quote editorial */
.pullquote {
  margin: var(--s-12) 0;
  padding: var(--s-6) 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
  line-height: 1.25;
  color: var(--ink-deep);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-weight: 400;
  text-align: center;
  letter-spacing: -0.015em;
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-600);
  margin: var(--s-3) auto;
}

.article-meta {
  margin-top: var(--s-12);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-soft);
  font-size: 0.82rem;
  color: var(--ink-muted);
  letter-spacing: 0.015em;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 40;
}

/* ---------- LINKS RELACIONADOS ---------- */
.related {
  margin-top: var(--s-12);
  padding: var(--s-8);
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}
.related h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  font-family: var(--font-text);
  font-weight: 600;
  margin: 0 0 var(--s-4);
}
.related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--s-2); }
.related li a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.related li a:hover { background: var(--teal-50); color: var(--teal-900); border-color: var(--teal-500); }

/* ---------- CHIP LIST ---------- */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin: var(--s-4) 0;
}
.chip-list a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-text);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.chip-list a:hover { background: var(--teal-50); color: var(--teal-900); border-color: var(--teal-500); }

/* ---------- AUTHOR BOX ---------- */
.author-box {
  margin-top: var(--s-10);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  padding: var(--s-5);
  background: var(--paper-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  align-items: center;
}
.author-box .author-img {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--teal-100);
}
.author-box .author-img svg, .author-box .author-img img { width: 100%; height: 100%; object-fit: cover; }
.author-box strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink-deep); display: block; }
.author-box .meta { font-size: 0.78rem; color: var(--ink-muted); display: block; margin: 2px 0 6px; letter-spacing: 0.02em; }
.author-box p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.author-box a { font-size: 0.88rem; font-weight: 600; }

/* ---------- INSTITUIÇÕES (SELOS) ---------- */
.institutions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6) var(--s-8);
  align-items: center;
  justify-content: center;
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.institutions span {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-size: 0.95rem;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.institutions span::before {
  content: "✦";
  color: var(--gold-600);
  margin-right: var(--s-2);
  font-style: normal;
  opacity: 0.7;
}
.institutions span:first-child::before { display: none; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink-deep);
  color: rgba(240,244,250,0.78);
  padding-top: var(--s-20);
  padding-bottom: var(--s-8);
  margin-top: var(--s-20);
  font-size: 0.92rem;
  position: relative;
}
.site-footer a { color: rgba(240,244,250,0.78); text-decoration: none; }
.site-footer a:hover { color: var(--paper); text-decoration: underline; text-decoration-color: var(--gold-400); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--s-12); } }
.site-footer h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  margin: 0 0 var(--s-4);
  font-variation-settings: "opsz" 24, "SOFT" 60;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); font-size: 0.9rem; }
.site-footer .brand-mark { background: var(--teal-700); color: var(--paper); }
.site-footer .brand-text strong { color: var(--paper); }
.site-footer .brand-text span { color: rgba(240,244,250,0.55); }
.footer-disclaimer { font-size: 0.81rem; line-height: 1.6; color: rgba(240,244,250,0.55); margin-top: var(--s-5); max-width: 38ch; }
.footer-bottom {
  margin-top: var(--s-12);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(240,244,250,0.10);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 0.78rem;
  color: rgba(240,244,250,0.5);
  letter-spacing: 0.02em;
}

/* ---------- PREVIEW BANNER ---------- */
.preview-banner {
  background: var(--gold-50);
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
  padding: 8px var(--container-pad);
  letter-spacing: 0.005em;
}
.preview-banner strong { font-weight: 600; color: var(--gold-700); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-3);
  z-index: 50;
  transition: transform var(--dur-fast);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-900);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 999;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* ---------- REVEAL ON SCROLL ---------- */
/* Default: tudo visível (no-JS fallback). JS adiciona .js-reveal para iniciar oculto e animar in. */
.reveal { opacity: 1; transform: none; }
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-elegant),
              transform 800ms var(--ease-elegant);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- TOC SIDEBAR (legado) ---------- */
.toc { font-size: 0.9rem; }
.toc h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); font-weight: 600; margin: 0 0 var(--s-3); }
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.toc li a { display: block; padding: 4px 10px; text-decoration: none; color: var(--ink-soft); border-left: 2px solid var(--border); font-size: 0.9rem; transition: color var(--dur-fast), border-color var(--dur-fast); }
.toc li a:hover { color: var(--teal-700); border-left-color: var(--teal-700); }

/* ---------- MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge { animation: none; }
}

/* ---------- SOURCES BLOCK (referências científicas) ---------- */
.sources {
  margin-top: var(--s-12);
  padding: var(--s-8);
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  position: relative;
}
.sources h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  font-family: var(--font-text);
  font-weight: 600;
  margin: 0 0 var(--s-2);
}
.sources .sources-lead {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0 0 var(--s-5);
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 40;
}
.sources ol {
  list-style: none;
  counter-reset: src;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.sources ol li {
  counter-increment: src;
  position: relative;
  padding-left: 36px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sources ol li::before {
  content: counter(src, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 36, "SOFT" 40;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-700);
  font-feature-settings: "lnum" 0, "onum" 1;
  background: var(--gold-50);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
.sources a { color: var(--teal-900); font-weight: 500; text-decoration-color: var(--teal-500); }
.sources a:hover { color: var(--ink-deep); text-decoration-color: var(--ink-deep); }
.sources .src-type {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 600;
  margin-right: 6px;
  font-family: var(--font-text);
}

/* ---------- MYTHS TABLE ---------- */
.myths {
  margin: var(--s-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.myth {
  background: var(--paper-3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--s-5) var(--s-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 720px) {
  .myth {
    grid-template-columns: 1fr 1.4fr;
    gap: var(--s-6);
    align-items: start;
  }
}
.myth-claim, .myth-truth {
  font-size: 0.92rem;
  line-height: 1.55;
}
.myth-claim {
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--alert-amber);
  text-decoration-thickness: 1px;
}
.myth-truth { color: var(--ink); }
.myth-truth strong { color: var(--ink-deep); font-weight: 600; }
.myth-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-muted);
  text-decoration: none;
  font-family: var(--font-text);
  margin-bottom: var(--s-2);
}
/* o label fica sem strikethrough mesmo dentro de .myth-claim */
.myth-claim .myth-label { color: var(--alert-amber); text-decoration: none; }
.myth-truth .myth-label { color: var(--teal-700); }
/* cites e strong dentro do myth-truth não devem ter linha através (e claim sim) */
.myth-truth .cite { text-decoration: none; }

/* ---------- INLINE CITATIONS ---------- */
sup {
  line-height: 0;
}
.cite {
  font-size: 0.72em;
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: none;
  padding: 0 1px;
  white-space: nowrap;
}
.cite:hover { color: var(--ink-deep); text-decoration: underline; }

/* ---------- DATA POINTS (estatísticas no corpo) ---------- */
.data-point {
  margin: var(--s-6) 0;
  padding: var(--s-5) var(--s-6);
  background: var(--teal-50);
  border-left: 3px solid var(--teal-700);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.97rem;
  color: var(--ink);
}
.data-point .dp-figure {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 1.8rem;
  color: var(--teal-900);
  font-weight: 400;
  letter-spacing: -0.015em;
  display: block;
  margin-bottom: 2px;
  font-feature-settings: "lnum" 0, "onum" 1;
}
.data-point .dp-source {
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: var(--s-2);
  display: block;
}

/* ---------- EDITORIAL FIGURE (foto + legenda estilo revista) ---------- */
.editorial-figure {
  margin: var(--s-12) auto 0;
  max-width: 540px;
  text-align: center;
}
.editorial-figure .frame {
  aspect-ratio: 529 / 934;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-3);
}
.editorial-figure figcaption {
  margin-top: var(--s-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.5;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.editorial-figure figcaption strong {
  display: block;
  font-style: normal;
  font-family: var(--font-text);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-700);
  margin-bottom: var(--s-2);
  font-weight: 600;
}

/* ---------- HELPERS ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.muted { color: var(--ink-muted); }
