/* ========================================================================
   BIOEMERGE AMBIENTAL — Design System
   Tipografia arredondada · Verde + bege · Light/Dark themes
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Manrope:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500;600&display=swap');

/* ---- Tokens: tema claro (default) ---- */
:root {
  --bg: #f6f1e3;
  --bg-2: #efe9d4;
  --surface: #fffcf0;
  --surface-2: #f1ecd9;
  --ink: #1d2b1c;
  --ink-2: #3a4a39;
  --muted: #6c7a68;
  --line: #d9d2b8;
  --line-soft: #e7e0c6;

  --brand: #3b5a3a;
  --brand-deep: #294026;
  --brand-soft: #5a7d54;
  --beige: #ebe7c5;
  --beige-deep: #d6cf9d;
  --terracotta: #b8693d;
  --amber: #c89a3d;

  --grad-hero: radial-gradient(circle at 18% 22%, rgba(184, 165, 96, .55), transparent 55%),
               radial-gradient(circle at 82% 14%, rgba(59, 90, 58, .35), transparent 60%),
               radial-gradient(circle at 60% 95%, rgba(216, 200, 130, .45), transparent 60%),
               linear-gradient(180deg, #f6f1e3 0%, #efe9d4 100%);
  --grad-cta: linear-gradient(135deg, #3b5a3a 0%, #294026 100%);
  --grad-card: linear-gradient(180deg, rgba(255,252,240,.9) 0%, rgba(241,236,217,.7) 100%);

  --shadow-soft: 0 1px 2px rgba(29, 43, 28, .04), 0 8px 24px rgba(29, 43, 28, .06);
  --shadow-lift: 0 4px 12px rgba(29, 43, 28, .08), 0 24px 60px rgba(29, 43, 28, .12);
  --shadow-glow: 0 0 0 1px rgba(59, 90, 58, .12), 0 12px 40px rgba(59, 90, 58, .18);

  --r-xs: 8px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  --logo-light-src: url('assets/logo-dark.png');  /* green logo on light bg */
  --logo-dark-src: url('assets/logo-light.png');  /* cream logo on dark bg */
}

/* ---- Tema escuro ---- */
[data-theme="dark"] {
  --bg: #11170f;
  --bg-2: #161e13;
  --surface: #1a2317;
  --surface-2: #202a1c;
  --ink: #ebe7c5;
  --ink-2: #c9c4a3;
  --muted: #8a8f76;
  --line: #2a3624;
  --line-soft: #1f2a1b;

  --brand: #8fb585;
  --brand-deep: #b9d3b0;
  --brand-soft: #6a8c63;
  --beige: #ebe7c5;
  --beige-deep: #cfc88a;
  --terracotta: #d68559;
  --amber: #e2b768;

  --grad-hero: radial-gradient(circle at 18% 22%, rgba(143, 181, 133, .18), transparent 55%),
               radial-gradient(circle at 82% 14%, rgba(235, 231, 197, .12), transparent 60%),
               radial-gradient(circle at 60% 95%, rgba(143, 181, 133, .14), transparent 60%),
               linear-gradient(180deg, #11170f 0%, #161e13 100%);
  --grad-cta: linear-gradient(135deg, #b9d3b0 0%, #8fb585 100%);
  --grad-card: linear-gradient(180deg, rgba(26, 35, 23, .9) 0%, rgba(32, 42, 28, .7) 100%);

  --shadow-soft: 0 1px 2px rgba(0, 0, 0, .35), 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-lift: 0 4px 12px rgba(0, 0, 0, .4), 0 24px 60px rgba(0, 0, 0, .5);
  --shadow-glow: 0 0 0 1px rgba(143, 181, 133, .22), 0 12px 40px rgba(143, 181, 133, .14);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  transition: background-color .4s ease, color .4s ease;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--brand); color: var(--beige); }

/* ---- Typography ---- */
.display, h1, h2, h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 500;
  font-variation-settings: "wdth" 100, "opsz" 48;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 600; }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  font-weight: 500;
}
[data-theme="dark"] .eyebrow { color: var(--brand); }

.mono { font-family: 'Geist Mono', monospace; }

/* ---- Layout ---- */
.container { width: min(1240px, 92vw); margin: 0 auto; }
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section + .section { border-top: 1px solid var(--line-soft); }

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; gap: 24px;
}
.nav__logo {
  width: 132px; height: 44px;
  background-image: var(--logo-light-src);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  transition: opacity .3s ease;
}
[data-theme="dark"] .nav__logo { background-image: var(--logo-dark-src); }

.nav__links { display: flex; gap: 6px; }
.nav__link {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav__link:hover { background: var(--surface-2); color: var(--ink); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 42px; height: 42px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.theme-toggle:hover { border-color: var(--brand); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; color: var(--ink); transition: transform .4s, opacity .3s; }
.theme-toggle .sun { position: absolute; }
[data-theme="light"] .theme-toggle .sun { opacity: 0; transform: rotate(-90deg) scale(.5); }
[data-theme="light"] .theme-toggle .moon { opacity: 1; transform: rotate(0); }
[data-theme="dark"]  .theme-toggle .sun { opacity: 1; transform: rotate(0); }
[data-theme="dark"]  .theme-toggle .moon { opacity: 0; transform: rotate(90deg) scale(.5); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: -0.005em;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--grad-cta);
  color: #fffcf0;
  box-shadow: var(--shadow-glow);
}
[data-theme="dark"] .btn--primary { color: #11170f; }
.btn--primary:hover { box-shadow: 0 0 0 1px var(--brand), 0 16px 50px rgba(59, 90, 58, .35); }
.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--brand); background: var(--surface-2); }
.btn svg { width: 16px; height: 16px; }

.nav__menu-btn { display: none; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  background: var(--grad-hero);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero__tagline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: .82rem;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.hero__tagline-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  color: var(--beige);
  font-size: 14px;
}
[data-theme="dark"] .hero__tagline-dot { color: var(--brand-deep); }
.hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
}
.hero__title-kicker {
  display: inline-block;
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.hero__title em {
  font-style: italic;
  font-family: 'Bricolage Grotesque', serif;
  color: var(--brand);
  font-variation-settings: "wdth" 90;
}
[data-theme="dark"] .hero__title em { color: var(--brand-deep); }
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 24px 0 36px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__card {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lift);
  backdrop-filter: blur(10px);
}
.hero__card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hero__card-pulse {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--brand);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--brand) 60%, transparent); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.hero__metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.hero__metric-item {
  padding: 18px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
}
.hero__metric-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
[data-theme="dark"] .hero__metric-num { color: var(--brand-deep); }
.hero__metric-label {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-family: 'Geist Mono', monospace;
}
.hero__orgaos {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.org-chip {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  padding: 6px 10px;
  background: var(--bg);
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
}

/* leaf decoration */
.hero__leaf {
  position: absolute;
  top: -40px; right: -60px;
  width: 380px; height: 380px;
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  background: radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--brand) 25%, transparent), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* ========================================================================
   STATS / SOBRE
   ======================================================================== */
.sobre__head {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px;
  margin-bottom: 64px;
}
.sobre__title { margin-top: 12px; }
.sobre__lead {
  color: var(--ink-2);
  font-size: 1.1rem;
  max-width: 56ch;
}
.sobre__lead strong { color: var(--ink); font-weight: 700; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.stat {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand);
}
.stat::after {
  content: '';
  position: absolute; right: -30px; bottom: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .04;
  transition: opacity .3s;
}
.stat:hover::after { opacity: .12; }
.stat__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.04em;
}
[data-theme="dark"] .stat__num { color: var(--brand-deep); }
.stat__num sup { font-size: 1.5rem; vertical-align: top; opacity: .7; }
.stat__label {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: 'Geist Mono', monospace;
}

/* ========================================================================
   PÚBLICOS
   ======================================================================== */
.publicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.publico {
  position: relative;
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: transform .3s ease, box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  min-height: 460px;
}
.publico:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand);
}
.publico__num {
  font-family: 'Geist Mono', monospace;
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 24px;
}
.publico__icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--brand) 14%, var(--bg)) 0%, color-mix(in oklab, var(--brand-deep) 12%, var(--bg)) 100%);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line-soft);
  color: var(--brand);
  transition: background .3s, transform .3s;
}
.publico:hover .publico__icon { background: var(--grad-cta); color: var(--beige); transform: scale(1.06) rotate(-4deg); }
[data-theme="dark"] .publico:hover .publico__icon { color: var(--brand-deep); }
.publico__icon svg { width: 26px; height: 26px; }
.publico h3 { margin-bottom: 12px; }
.publico__desc { color: var(--ink-2); font-size: .98rem; margin-bottom: 24px; }
.publico__list {
  margin: auto 0 0;
  padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.publico__list li {
  font-size: .85rem;
  color: var(--ink-2);
  padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
  border-top: 1px dashed var(--line-soft);
}
.publico__list li::before {
  content: '→';
  color: var(--brand);
  font-family: 'Geist Mono', monospace;
}

/* ========================================================================
   SERVIÇOS (6 categorias)
   ======================================================================== */
.servicos__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px; flex-wrap: wrap;
}
.servicos__head p {
  max-width: 38ch; color: var(--ink-2);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.servico {
  position: relative;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
  min-height: 320px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.servico:hover {
  background: var(--grad-cta);
  border-color: transparent;
  box-shadow: var(--shadow-lift);
  color: var(--beige);
  transform: translateY(-4px);
}
[data-theme="dark"] .servico:hover { color: var(--brand-deep); }
.servico__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.servico__num {
  font-family: 'Geist Mono', monospace;
  font-size: .78rem;
  letter-spacing: .15em;
  color: var(--muted);
  transition: color .3s;
}
.servico:hover .servico__num { color: color-mix(in oklab, var(--beige) 70%, transparent); }
.servico__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  transition: transform .3s, background .3s;
  border: 1px solid var(--line-soft);
}
.servico:hover .servico__arrow {
  background: var(--beige);
  transform: rotate(-45deg) translateX(2px);
  border-color: transparent;
}
[data-theme="dark"] .servico:hover .servico__arrow { background: var(--brand-deep); }
.servico__arrow svg { width: 14px; height: 14px; }
.servico:hover .servico__arrow svg { color: var(--brand); }
.servico h3 { margin-bottom: 14px; }
.servico__desc { color: var(--ink-2); font-size: .94rem; margin-bottom: auto; }
.servico:hover .servico__desc { color: color-mix(in oklab, var(--beige) 90%, transparent); }
.servico__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.servico__tag {
  font-family: 'Geist Mono', monospace;
  font-size: .68rem;
  padding: 5px 10px;
  background: var(--bg);
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
  letter-spacing: .04em;
  transition: all .3s;
}
.servico:hover .servico__tag {
  background: color-mix(in oklab, var(--beige) 10%, transparent);
  border-color: color-mix(in oklab, var(--beige) 30%, transparent);
  color: var(--beige);
}
[data-theme="dark"] .servico:hover .servico__tag { color: var(--brand-deep); border-color: color-mix(in oklab, var(--brand-deep) 40%, transparent); }

/* ========================================================================
   CHARTS — COBERTURA + METAS
   ======================================================================== */
.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.chart-card {
  padding: 36px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
}
.chart-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.chart-card h3 { font-size: 1.15rem; }
.chart-card__legend {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .1em;
}

.bar-chart { display: flex; flex-direction: column; gap: 18px; }
.bar-row { cursor: pointer; }
.bar-row__head {
  display: flex; justify-content: space-between;
  font-size: .88rem; margin-bottom: 8px;
  transition: color .2s;
}
.bar-row:hover .bar-row__head { color: var(--brand); }
.bar-row__label { font-weight: 600; }
.bar-row__value { font-family: 'Geist Mono', monospace; color: var(--muted); }
.bar-row:hover .bar-row__value { color: var(--brand); }
.bar-track {
  height: 12px;
  background: var(--bg);
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-soft) 100%);
  border-radius: var(--r-pill);
  width: 0;
  transition: width 1.2s cubic-bezier(.2, .8, .2, 1);
}
[data-theme="dark"] .bar-fill {
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--brand) 100%);
}

/* metas card */
.metas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.meta {
  padding: 24px 20px;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.meta:hover { transform: translateY(-3px); border-color: var(--brand); }
.meta__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
[data-theme="dark"] .meta__num { color: var(--brand-deep); }
.meta__num span { font-size: 1.4rem; opacity: .7; }
.meta__label {
  font-size: .78rem;
  color: var(--ink-2);
  margin-top: 10px;
  line-height: 1.4;
}
.meta__bar {
  height: 4px; margin-top: 14px;
  background: var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
}
.meta__bar::after {
  content: '';
  display: block; height: 100%;
  background: var(--brand);
  width: var(--p, 30%);
  transition: width 1s ease;
}

/* ========================================================================
   ESG / ODS
   ======================================================================== */
.esg__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end; margin-bottom: 56px;
}
.esg__head p { color: var(--ink-2); max-width: 50ch; }
.esg__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 56px;
}
.pilar {
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  position: relative; overflow: hidden;
  transition: all .3s;
}
.pilar:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.pilar__letra {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand);
  opacity: .15;
  position: absolute;
  right: 24px; top: -8px;
  transition: opacity .3s, transform .3s;
}
[data-theme="dark"] .pilar__letra { color: var(--brand-deep); }
.pilar:hover .pilar__letra { opacity: .35; transform: scale(1.06) rotate(-6deg); }
.pilar__cat {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--brand);
  margin-bottom: 16px;
  position: relative;
}
[data-theme="dark"] .pilar__cat { color: var(--brand-deep); }
.pilar h3 { margin-bottom: 12px; position: relative; }
.pilar p { color: var(--ink-2); font-size: .94rem; position: relative; }

.ods {
  padding: 40px;
  background: var(--grad-cta);
  border-radius: var(--r-lg);
  color: var(--beige);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
[data-theme="dark"] .ods { color: var(--brand-deep); }
.ods__title { color: inherit; }
.ods__lead { color: color-mix(in oklab, var(--beige) 90%, transparent); margin-top: 16px; font-size: 1rem; }
[data-theme="dark"] .ods__lead { color: color-mix(in oklab, var(--brand-deep) 90%, transparent); }
.ods__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.ods__cell {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem; font-weight: 600;
  background: color-mix(in oklab, var(--beige) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--beige) 25%, transparent);
  transition: transform .25s, background .25s;
}
[data-theme="dark"] .ods__cell {
  background: color-mix(in oklab, var(--brand-deep) 12%, transparent);
  border-color: color-mix(in oklab, var(--brand-deep) 25%, transparent);
}
.ods__cell:hover { transform: scale(1.08); background: color-mix(in oklab, var(--beige) 22%, transparent); }
[data-theme="dark"] .ods__cell:hover { background: color-mix(in oklab, var(--brand-deep) 22%, transparent); }

/* ========================================================================
   PROCESSO
   ======================================================================== */
.processo {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 56px;
}
.etapa {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: all .3s;
}
.etapa:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.etapa__num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1; opacity: .25;
  margin-bottom: 18px;
}
[data-theme="dark"] .etapa__num { color: var(--brand-deep); }
.etapa h3 { margin-bottom: 8px; font-size: 1.15rem; }
.etapa p { color: var(--ink-2); font-size: .9rem; }

/* ========================================================================
   FORM / CONTATO
   ======================================================================== */
.contato {
  background: var(--bg-2);
}
.contato__inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
  align-items: start;
}
.contato__info p { color: var(--ink-2); margin-top: 20px; max-width: 40ch; }
.contato__list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.contato__item {
  display: flex; gap: 14px; padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  transition: border-color .25s, transform .2s;
}
.contato__item:hover { border-color: var(--brand); transform: translateX(2px); }
.contato__item-icon {
  width: 40px; height: 40px;
  background: var(--bg);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  color: var(--brand);
  flex-shrink: 0;
}
[data-theme="dark"] .contato__item-icon { color: var(--brand-deep); }
.contato__item-icon svg { width: 18px; height: 18px; }
.contato__item-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-family: 'Geist Mono', monospace; }
.contato__item-value { font-weight: 600; color: var(--ink); margin-top: 2px; }

.form {
  padding: 40px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid; gap: 18px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .78rem; font-weight: 600;
  color: var(--ink-2);
  font-family: 'Geist Mono', monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5 6 6.5 11 1.5' stroke='%236c7a68' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .7; }
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form__submit {
  margin-top: 8px;
  justify-content: center;
  padding: 16px 26px;
  font-size: 1rem;
}
.form__legal {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

.form__success {
  display: none;
  padding: 18px;
  background: color-mix(in oklab, var(--brand) 12%, var(--surface));
  border: 1px solid var(--brand);
  border-radius: var(--r-md);
  color: var(--brand);
  font-weight: 600;
  align-items: center; gap: 12px;
}
.form__success.show { display: flex; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--brand-deep);
  color: var(--beige);
  padding: 80px 0 32px;
}
[data-theme="dark"] .footer { background: var(--bg-2); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid color-mix(in oklab, var(--beige) 18%, transparent);
}
[data-theme="dark"] .footer__top { border-bottom-color: var(--line-soft); }
.footer__logo {
  width: 156px; height: 52px;
  background-image: var(--logo-dark-src);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 24px;
}
.footer__brand p { font-size: .94rem; color: color-mix(in oklab, var(--beige) 78%, transparent); max-width: 36ch; }
.footer h4 {
  font-family: 'Geist Mono', monospace;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--beige);
  opacity: .65;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: .94rem; color: color-mix(in oklab, var(--beige) 90%, transparent); transition: color .2s; }
.footer ul a:hover { color: var(--beige); text-decoration: underline; text-underline-offset: 4px; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 32px;
  font-size: .82rem;
  color: color-mix(in oklab, var(--beige) 60%, transparent);
}

/* ========================================================================
   POPUP CATÁLOGO
   ======================================================================== */
.popup-overlay {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--brand-deep) 60%, transparent);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.popup-overlay.show { opacity: 1; pointer-events: auto; }
.popup {
  background: var(--surface);
  border-radius: var(--r-xl);
  width: min(540px, 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transform: scale(.94) translateY(20px);
  transition: transform .4s cubic-bezier(.2, .9, .3, 1.1);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.popup-overlay.show .popup { transform: scale(1) translateY(0); }
.popup__visual {
  background: var(--grad-cta);
  padding: 32px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--beige);
}
[data-theme="dark"] .popup__visual { color: var(--brand-deep); }
.popup__visual-tag {
  font-family: 'Geist Mono', monospace;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .75;
}
.popup__visual h3 {
  font-size: 1.5rem;
  color: inherit;
  margin-top: 12px;
}
.popup__visual-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: color-mix(in oklab, var(--beige) 20%, transparent);
  display: grid; place-items: center;
  border: 1px solid color-mix(in oklab, var(--beige) 30%, transparent);
  margin-top: 32px;
}
[data-theme="dark"] .popup__visual-icon { background: color-mix(in oklab, var(--brand-deep) 20%, transparent); }
.popup__visual-icon svg { width: 28px; height: 28px; }
.popup__body { padding: 28px 28px 24px; position: relative; }
.popup__close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: background .2s, transform .2s;
}
.popup__close:hover { background: var(--line); transform: rotate(90deg); }
.popup__body h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem; font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}
.popup__body p { font-size: .9rem; color: var(--ink-2); margin-bottom: 20px; }
.popup form { display: flex; flex-direction: column; gap: 12px; }
.popup .field input, .popup .field select { padding: 11px 14px; font-size: .9rem; }
.popup .field label { font-size: .68rem; }
.popup__submit {
  margin-top: 6px;
  justify-content: center;
  padding: 12px;
}

.popup__success {
  display: none;
  padding: 32px;
  text-align: center;
  grid-column: 1 / -1;
}
.popup__success.show { display: block; }
.popup__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--beige);
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
[data-theme="dark"] .popup__success-icon { color: var(--brand-deep); }
.popup__success h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.4rem; margin: 0 0 8px; }
.popup__success p { color: var(--ink-2); margin: 0 0 22px; }
.popup-overlay.is-success .popup { grid-template-columns: 1fr; }
.popup-overlay.is-success .popup__visual, .popup-overlay.is-success .popup__body { display: none; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__leaf { right: -120px; opacity: .6; }
  .sobre__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .publicos__grid { grid-template-columns: 1fr; }
  .publico { min-height: auto; }
  .servicos__grid { grid-template-columns: 1fr 1fr; }
  .charts { grid-template-columns: 1fr; }
  .esg__head { grid-template-columns: 1fr; gap: 20px; }
  .esg__grid { grid-template-columns: 1fr; }
  .ods { grid-template-columns: 1fr; }
  .processo { grid-template-columns: 1fr 1fr; }
  .contato__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .popup { grid-template-columns: 1fr; }
  .popup__visual { padding: 24px; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .servicos__grid { grid-template-columns: 1fr; }
  .processo { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .ods__grid { grid-template-columns: repeat(5, 1fr); }
  .ods__cell { font-size: 1.1rem; }
  .nav__logo { width: 110px; }
  .btn { padding: 10px 16px; font-size: .88rem; }
}

/* ========================================================================
   MISSÃO · VISÃO · VALORES · METAS
   ======================================================================== */
.mvv {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mvv__card {
  padding: 32px 28px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.mvv__card:hover { border-color: var(--brand); transform: translateY(-3px); }
.mvv__card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.mvv__card-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, color-mix(in oklab, var(--brand) 14%, var(--bg)) 0%, color-mix(in oklab, var(--brand-deep) 12%, var(--bg)) 100%);
  display: grid; place-items: center;
  color: var(--brand);
  border: 1px solid var(--line-soft);
  transition: background .3s, transform .3s;
}
[data-theme="dark"] .mvv__card-icon { color: var(--brand-deep); }
.mvv__card-icon svg { width: 18px; height: 18px; }
.mvv__card:hover .mvv__card-icon { background: var(--grad-cta); color: var(--beige); transform: scale(1.06) rotate(-4deg); }
.mvv__card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.15rem; }
.mvv__card p { color: var(--ink-2); font-size: .95rem; }
.mvv__values { display: flex; flex-wrap: wrap; gap: 6px; }
.mvv__value-chip {
  font-family: 'Geist Mono', monospace;
  font-size: .7rem;
  padding: 6px 10px;
  background: var(--bg);
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
}

.mvv__quote {
  margin-top: 28px;
  padding: 36px 40px;
  background: var(--grad-cta);
  color: var(--beige);
  border-radius: var(--r-lg);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.015em;
  text-wrap: balance;
  position: relative;
}
[data-theme="dark"] .mvv__quote { color: var(--brand-deep); }
.mvv__quote::before {
  content: '“';
  position: absolute;
  top: -10px; left: 22px;
  font-size: 6rem;
  opacity: .25;
  font-family: 'Bricolage Grotesque', serif;
}

/* ========================================================================
   SERVIÇO — modal de detalhes
   ======================================================================== */
.servico { cursor: pointer; }

.modal-overlay {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--brand-deep) 65%, transparent);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  z-index: 110;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  border-radius: var(--r-xl);
  width: min(880px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(.94) translateY(20px);
  transition: transform .4s cubic-bezier(.2, .9, .3, 1.1);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  position: relative;
}
.modal-overlay.show .modal { transform: scale(1) translateY(0); }
.modal__head {
  padding: 32px 36px 22px;
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  z-index: 2;
}
.modal__cat {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 8px;
}
[data-theme="dark"] .modal__cat { color: var(--brand-deep); }
.modal__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 80px 0 0;
}
.modal__close {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .2s, transform .2s, border-color .2s;
}
.modal__close:hover { background: var(--brand); color: var(--beige); border-color: var(--brand); transform: rotate(90deg); }
[data-theme="dark"] .modal__close:hover { color: var(--brand-deep); }

.modal__body { padding: 28px 36px 36px; }
.modal__intro {
  color: var(--ink-2);
  font-size: 1.02rem;
  margin: 0 0 24px;
  max-width: 64ch;
}
.modal__list { display: flex; flex-direction: column; gap: 10px; }
.modal__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: border-color .2s, transform .2s;
}
.modal__item:hover { border-color: var(--brand); transform: translateX(2px); }
.modal__item-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
}
[data-theme="dark"] .modal__item-num { color: var(--brand-deep); }
.modal__item h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.modal__item p { font-size: .9rem; color: var(--ink-2); margin: 0; }

.modal__cta {
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.modal__cta-text strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; display: block; }
.modal__cta-text span { font-size: .88rem; color: var(--ink-2); }

/* ========================================================================
   BRAZIL MAP
   ======================================================================== */
.cobertura__wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  margin-top: 56px;
  align-items: stretch;
}
.map-card {
  position: relative;
  padding: 36px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.map-card__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.map-stage {
  flex: 1;
  display: grid; place-items: center;
  margin-top: 8px;
  perspective: 1200px;
  position: relative;
  min-height: 340px;
}
.map-stage::before {
  /* shadow plate behind map */
  content: '';
  position: absolute;
  width: 80%; height: 30px;
  background: radial-gradient(ellipse, color-mix(in oklab, var(--brand) 25%, transparent), transparent 70%);
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  filter: blur(20px);
  z-index: 0;
}
.map {
  width: 100%;
  max-width: 460px;
  height: auto;
  transform: rotateX(28deg) rotateZ(-8deg);
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  z-index: 1;
}
.map-card:hover .map { transform: rotateX(22deg) rotateZ(-6deg) scale(1.04); }
.map__outline {
  fill: color-mix(in oklab, var(--brand) 6%, var(--bg));
  stroke: var(--line);
  stroke-width: 1.5;
  stroke-dasharray: 2 3;
}
[data-theme="dark"] .map__outline { fill: color-mix(in oklab, var(--brand) 12%, var(--bg)); }
.map__state {
  fill: var(--surface-2);
  stroke: var(--line);
  stroke-width: .8;
  transition: fill .25s;
}
.map__state--served {
  fill: color-mix(in oklab, var(--brand) 30%, var(--surface));
  stroke: var(--brand);
  stroke-width: 1.4;
  cursor: pointer;
}
[data-theme="dark"] .map__state--served { fill: color-mix(in oklab, var(--brand) 40%, var(--surface)); }
.map__state--served:hover { fill: var(--brand); }

/* ---- Todos os estados (br-state) ---- */
.br-states { transform-origin: center; }
.br-state {
  fill: var(--surface-2);
  stroke: var(--line);
  stroke-width: 1;
  stroke-linejoin: round;
  transition: fill .25s, stroke .25s;
}
[data-theme="dark"] .br-state { fill: color-mix(in oklab, var(--surface) 80%, var(--bg)); }
.br-state:hover { fill: color-mix(in oklab, var(--brand) 14%, var(--surface-2)); }
.br-state--served {
  fill: url(#brServed);
  stroke: var(--brand);
  stroke-width: 1.8;
  cursor: pointer;
}
[data-theme="dark"] .br-state--served { fill: url(#brServed); }
.br-state--served:hover { fill: var(--brand); }
.map__pin {
  cursor: pointer;
  transform-origin: center bottom;
  animation: pinFloat 3s ease-in-out infinite;
}
.map__pin:nth-child(2) { animation-delay: .5s; }
.map__pin:nth-child(3) { animation-delay: 1s; }
.map__pin:nth-child(4) { animation-delay: 1.5s; }
@keyframes pinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.map__pin-body {
  fill: var(--brand);
  stroke: var(--beige);
  stroke-width: 1.5;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.3));
}
[data-theme="dark"] .map__pin-body { fill: var(--brand-deep); stroke: var(--bg-2); }
.map__pin-dot { fill: var(--beige); }
[data-theme="dark"] .map__pin-dot { fill: var(--bg-2); }
.map__pin-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  fill: var(--ink);
  text-anchor: middle;
}
.map__pin-pct {
  font-family: 'Geist Mono', monospace;
  font-size: 8px;
  fill: var(--brand);
}
[data-theme="dark"] .map__pin-pct { fill: var(--brand-deep); }
.map__pin-bg {
  fill: var(--surface);
  stroke: var(--line);
  stroke-width: .8;
  rx: 4;
}

.map-card__legend-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.map-legend-item {
  text-align: center;
  padding: 10px 8px;
  background: var(--bg);
  border-radius: var(--r-sm);
  border: 1px solid var(--line-soft);
}
.map-legend-item__pct {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -.02em;
}
[data-theme="dark"] .map-legend-item__pct { color: var(--brand-deep); }
.map-legend-item__label {
  font-family: 'Geist Mono', monospace;
  font-size: .65rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .08em;
}

/* ========================================================================
   ODS — cards reais
   ======================================================================== */
.ods-real {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ods-real__card {
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  padding: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: default;
  display: flex; flex-direction: column;
  text-align: center;
}
.ods-real__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--brand); }
.ods-real__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.ods-real__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ods-real__num {
  font-family: 'Geist Mono', monospace;
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ods-real__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.ods-real__desc {
  display: none;
  font-size: .72rem;
  color: var(--ink-2);
  margin-top: 6px;
  line-height: 1.35;
}
@media (min-width: 1100px) {
  .ods-real__desc { display: block; }
}

/* ========================================================================
   TIMELINE (Como trabalhamos) — line chart
   ======================================================================== */
.timeline-chart {
  margin-top: 56px;
  padding: 40px 32px 32px;
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  position: relative;
}
.timeline-chart svg {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.timeline-chart__line {
  fill: none;
  stroke: url(#tlGradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  transition: stroke-dashoffset 2s ease;
}
.timeline-chart.in .timeline-chart__line { stroke-dashoffset: 0; }
.timeline-chart__fill {
  fill: url(#tlFill);
  opacity: 0;
  transition: opacity 1.5s ease .8s;
}
.timeline-chart.in .timeline-chart__fill { opacity: 1; }
.timeline-chart__dot { fill: var(--brand); stroke: var(--bg); stroke-width: 4; opacity: 0; transition: opacity .4s; }
.timeline-chart.in .timeline-chart__dot { opacity: 1; }
.timeline-chart__dot:nth-child(1) { transition-delay: .4s; }
.timeline-chart__dot:nth-child(2) { transition-delay: .9s; }
.timeline-chart__dot:nth-child(3) { transition-delay: 1.4s; }
.timeline-chart__dot:nth-child(4) { transition-delay: 1.9s; }
[data-theme="dark"] .timeline-chart__dot { fill: var(--brand-deep); }

.processo { margin-top: 0 !important; }
.timeline-chart .processo { margin-top: 18px !important; }

/* ========================================================================
   SOCIAL LINKS
   ======================================================================== */
.social {
  display: flex; gap: 10px;
  margin-top: 22px;
}
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--beige) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--beige) 25%, transparent);
  display: grid; place-items: center;
  color: var(--beige);
  transition: background .2s, transform .2s;
}
[data-theme="dark"] .social a {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.social a:hover {
  background: var(--beige);
  color: var(--brand-deep);
  transform: translateY(-2px);
}
[data-theme="dark"] .social a:hover { background: var(--brand); color: var(--brand-deep); }
.social a svg { width: 18px; height: 18px; }

/* responsive */
@media (max-width: 980px) {
  .mvv { grid-template-columns: 1fr; }
  .cobertura__wrap { grid-template-columns: 1fr; }
  .ods-real { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .ods-real__card { padding: 8px; }
  .ods-real__name { font-size: .7rem; }
  .modal__body, .modal__head { padding-left: 24px; padding-right: 24px; }
  .map { transform: rotateX(20deg) rotateZ(-5deg); }
}
@media (max-width: 560px) {
  .ods-real { grid-template-columns: repeat(2, 1fr); }
  .map-card__legend-list { grid-template-columns: repeat(2, 1fr); }
  .modal__item { grid-template-columns: 1fr; gap: 6px; }
  .modal__item-num { font-size: 1.1rem; }
}

/* ========================================================================
   BLOG
   ======================================================================== */
.blog {
  background: var(--bg-2);
}
.blog__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 56px;
}
.blog__head-text { max-width: 56ch; }
.blog__head h2 { margin-top: 12px; }
.blog__head p { color: var(--ink-2); margin-top: 16px; }

.blog__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.blog__grid > :nth-child(1) { grid-row: span 2; }

.blog-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand);
}
.blog-card__media {
  aspect-ratio: 16 / 10;
  background: var(--grad-cta);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-card__media::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 35%, color-mix(in oklab, var(--beige) 35%, transparent), transparent 55%),
    radial-gradient(circle at 75% 70%, color-mix(in oklab, var(--terracotta) 30%, transparent), transparent 60%);
}
.blog-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 16px, color-mix(in oklab, var(--beige) 18%, transparent) 16px 17px);
  mix-blend-mode: overlay;
  opacity: .4;
}
.blog-card--featured .blog-card__media { aspect-ratio: 16 / 11; }
.blog-card__icon {
  position: absolute; bottom: 18px; left: 18px;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: color-mix(in oklab, var(--beige) 22%, transparent);
  border: 1px solid color-mix(in oklab, var(--beige) 35%, transparent);
  display: grid; place-items: center;
  color: var(--beige);
  backdrop-filter: blur(8px);
  z-index: 1;
}
[data-theme="dark"] .blog-card__icon { color: var(--brand-deep); }
.blog-card__icon svg { width: 22px; height: 22px; }

.blog-card__body {
  padding: 24px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.blog-card--featured .blog-card__body { padding: 32px 32px 34px; }
.blog-card__meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.blog-card__cat {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  color: var(--brand);
}
[data-theme="dark"] .blog-card__cat { color: var(--brand-deep); }
.blog-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  line-height: 1.2;
  margin: 0 0 10px;
  text-wrap: balance;
}
.blog-card--featured h3 { font-size: 1.6rem; font-weight: 500; }
.blog-card__excerpt {
  font-size: .92rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.blog-card__footer {
  margin-top: auto;
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem;
}
.blog-card__read {
  color: var(--brand);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
[data-theme="dark"] .blog-card__read { color: var(--brand-deep); }
.blog-card__read svg { width: 14px; height: 14px; transition: transform .3s; }
.blog-card:hover .blog-card__read svg { transform: translateX(4px); }
.blog-card__time {
  color: var(--muted);
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
}

.blog__cta {
  margin-top: 40px;
  display: flex; justify-content: center;
}

@media (max-width: 980px) {
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .blog__grid > :nth-child(1) { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 560px) {
  .blog__grid { grid-template-columns: 1fr; }
  .blog__grid > :nth-child(1) { grid-column: span 1; }
}

/* ========================================================================
   ARTICLE PAGE
   ======================================================================== */
.article {
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.article__hero {
  background: var(--grad-hero);
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.article__hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--ink) 8%, transparent) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: .3;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.article__hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.article__crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.article__crumb a { color: var(--brand); }
[data-theme="dark"] .article__crumb a { color: var(--brand-deep); }
.article__cat {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: var(--beige);
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
[data-theme="dark"] .article__cat { color: var(--brand-deep); }
.article__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.article__meta {
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: 'Geist Mono', monospace;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .05em;
}
.article__meta span { display: inline-flex; align-items: center; gap: 6px; }
.article__meta svg { width: 14px; height: 14px; }

.article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 20px clamp(60px, 8vw, 100px);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
}
.article__body p { margin: 0 0 1.2em; }
.article__body p:first-of-type::first-line {
  font-weight: 600;
  color: var(--ink);
}
.article__body p strong { color: var(--ink); font-weight: 700; }
.article__body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 2.5em 0 .8em;
  text-wrap: balance;
}
.article__body h2::before {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: var(--brand);
  border-radius: 3px;
  margin-bottom: 16px;
}
[data-theme="dark"] .article__body h2::before { background: var(--brand-deep); }
.article__body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.8em 0 .5em;
  color: var(--ink);
}
.article__body ul, .article__body ol {
  margin: 0 0 1.4em;
  padding-left: 0;
  list-style: none;
}
.article__body li {
  position: relative;
  padding: 4px 0 4px 32px;
  margin-bottom: 4px;
}
.article__body ul li::before {
  content: '';
  position: absolute;
  left: 8px; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
[data-theme="dark"] .article__body ul li::before { background: var(--brand-deep); }
.article__body ol { counter-reset: ol-counter; }
.article__body ol li {
  counter-increment: ol-counter;
  padding-left: 40px;
}
.article__body ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0; top: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: .05em;
}
[data-theme="dark"] .article__body ol li::before { color: var(--brand-deep); }

.article__body blockquote {
  margin: 2em 0;
  padding: 28px 32px;
  background: var(--surface);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.4;
}
[data-theme="dark"] .article__body blockquote { border-left-color: var(--brand-deep); }

.article__callout {
  margin: 2em 0;
  padding: 24px 28px;
  background: color-mix(in oklab, var(--brand) 6%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
  border-radius: var(--r-md);
}
.article__callout-label {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  display: block;
}
[data-theme="dark"] .article__callout-label { color: var(--brand-deep); }
.article__callout p { margin: 0; color: var(--ink-2); font-size: .98rem; }

.article__cta-box {
  margin: 3em 0 0;
  padding: 36px;
  background: var(--grad-cta);
  border-radius: var(--r-lg);
  color: var(--beige);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
}
[data-theme="dark"] .article__cta-box { color: var(--brand-deep); }
.article__cta-box h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem; font-weight: 500;
  color: inherit;
  margin: 0 0 8px;
  line-height: 1.2;
}
.article__cta-box p { color: color-mix(in oklab, var(--beige) 85%, transparent); margin: 0; font-size: .95rem; }
[data-theme="dark"] .article__cta-box p { color: color-mix(in oklab, var(--brand-deep) 85%, transparent); }
.article__cta-box .btn {
  background: var(--beige);
  color: var(--brand-deep);
  justify-self: end;
}
[data-theme="dark"] .article__cta-box .btn { background: var(--brand-deep); color: var(--beige); }
.article__cta-box .btn:hover { box-shadow: 0 12px 30px rgba(0,0,0,.18); }

.article__nav {
  border-top: 1px solid var(--line-soft);
  padding: 40px 0;
}
.article__nav-inner {
  max-width: 720px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; gap: 16px;
}

.article__related {
  background: var(--bg-2);
  padding: clamp(60px, 8vw, 100px) 0;
}
.article__related h2 { margin-bottom: 32px; }
.article__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .article__cta-box { grid-template-columns: 1fr; }
  .article__cta-box .btn { justify-self: start; }
  .article__related-grid { grid-template-columns: 1fr; }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }

/* ========================================================================
   BLOG CARD — imagens reais
   ======================================================================== */
.blog-card__media--img {
  background: var(--bg-2);
}
.blog-card__media--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.blog-card:hover .blog-card__media--img img {
  transform: scale(1.06);
}
.blog-card__media--img::before { display: none; }
.blog-card__media--img .blog-card__icon { display: none; }

/* ========================================================================
   CONTATO — cards centrados (sem formulário)
   ======================================================================== */
.contato__centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.contato__lead {
  color: var(--ink-2);
  margin-top: 20px;
  font-size: 1.05rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.contato__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.contato__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 24px 28px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
  color: inherit;
}
.contato__card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.contato__card--whatsapp {
  background: var(--grad-cta);
  color: var(--beige);
  border-color: transparent;
}
[data-theme="dark"] .contato__card--whatsapp { color: var(--brand-deep); }
.contato__card--whatsapp:hover {
  box-shadow: 0 0 0 1px var(--brand), 0 16px 50px rgba(59, 90, 58, .35);
  border-color: transparent;
}
.contato__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: color-mix(in oklab, var(--brand) 10%, var(--surface));
  display: grid;
  place-items: center;
  color: var(--brand);
  border: 1px solid var(--line-soft);
}
[data-theme="dark"] .contato__card-icon { color: var(--brand-deep); }
.contato__card--whatsapp .contato__card-icon {
  background: color-mix(in oklab, var(--beige) 18%, transparent);
  border-color: color-mix(in oklab, var(--beige) 30%, transparent);
  color: var(--beige);
}
[data-theme="dark"] .contato__card--whatsapp .contato__card-icon { color: var(--brand-deep); }
.contato__card-icon svg { width: 22px; height: 22px; }
.contato__card-label {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.contato__card--whatsapp .contato__card-label { color: color-mix(in oklab, var(--beige) 70%, transparent); }
.contato__card-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.contato__card--whatsapp .contato__card-value { color: var(--beige); }
[data-theme="dark"] .contato__card--whatsapp .contato__card-value { color: var(--brand-deep); }
.contato__card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 8px;
}
.contato__card--whatsapp .contato__card-action { color: var(--beige); }
[data-theme="dark"] .contato__card--whatsapp .contato__card-action { color: var(--brand-deep); }
[data-theme="dark"] .contato__card-action { color: var(--brand-deep); }

@media (max-width: 700px) {
  .contato__cards { grid-template-columns: 1fr; }
}

/* ========================================================================
   FAQ — Accordion
   ======================================================================== */
.faq { background: var(--bg-2); }
.faq__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.faq__head h2 { margin-top: 12px; }
.faq__head p { color: var(--ink-2); max-width: 52ch; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item:hover { border-color: var(--brand); }
.faq__item[open] { border-color: var(--brand); box-shadow: var(--shadow-soft); }
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  list-style: none;
  transition: color .2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }
.faq__item:hover .faq__question { color: var(--brand); }
[data-theme="dark"] .faq__item:hover .faq__question { color: var(--brand-deep); }
.faq__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  color: var(--brand);
  transition: transform .25s, background .25s;
}
[data-theme="dark"] .faq__icon { color: var(--brand-deep); }
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--brand);
  color: var(--beige);
  border-color: var(--brand);
}
[data-theme="dark"] .faq__item[open] .faq__icon { color: var(--brand-deep); }
.faq__icon svg { width: 14px; height: 14px; }
.faq__answer {
  padding: 0 24px 20px;
  color: var(--ink-2);
  font-size: .94rem;
  line-height: 1.6;
}
.faq__answer strong { color: var(--ink); }
.faq__answer p { margin: 0; }

@media (max-width: 980px) {
  .faq__head { grid-template-columns: 1fr; gap: 20px; }
  .faq__grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   POPUP — melhorias visuais
   ======================================================================== */
.popup__visual {
  position: relative;
  overflow: hidden;
}
.popup__visual-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--beige) 15%, transparent) 1px, transparent 0);
  background-size: 16px 16px;
  opacity: .5;
  pointer-events: none;
}
.popup__visual-content {
  position: relative;
  z-index: 1;
}
.popup__visual-pages {
  font-family: 'Geist Mono', monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  opacity: .65;
  margin-top: 10px;
}
.popup__visual h3 {
  font-size: 1.4rem;
  line-height: 1.15;
}
