/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --verde-floresta:  oklch(28% 0.08 148);
  --verde-escuro:    oklch(38% 0.12 148);
  --verde-medio:     oklch(52% 0.17 148);
  --verde-claro:     oklch(66% 0.19 140);
  --verde-menta:     oklch(82% 0.12 150);
  --verde-gelo:      oklch(96% 0.04 148);
  --vermelho-vivo:   oklch(53% 0.22 28);
  --vermelho-escuro: oklch(40% 0.18 28);
  --ambar:           oklch(74% 0.17 68);
  --rosa-colhereiro: oklch(72% 0.17 355);
  --areia:           oklch(93% 0.03 75);
  --preto-mata:      oklch(16% 0.03 148);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --transition-base: 0.2s ease; /* @kind other */
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--preto-mata);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  background: oklch(16% 0.03 148 / 0);
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: oklch(16% 0.03 148 / 0.92);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--verde-claro);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-text span { display: block; font-weight: 400; font-size: 0.68rem; opacity: 0.65; letter-spacing: 0.04em; }
.nav-logo-divider {
  width: 1px; height: 28px;
  background: oklch(100% 0 0 / 0.28);
  flex: none;
}
.nav-logo-partners {
  display: flex; align-items: center; gap: 16px;
}
@media (max-width: 860px) {
  .nav-logo-divider, .nav-logo-partners { display: none; }
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
@media (max-width: 1100px) {
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.78rem; }
}
.nav-cta {
  background: var(--vermelho-vivo);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--vermelho-escuro) !important; transform: scale(1.03); }

/* ── NAV: hambúrguer / menu mobile ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border: none; background: transparent;
  cursor: pointer;
  z-index: 102;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Rodapé de parceiros dentro do menu mobile (oculto no desktop) */
.nav-links-footer { display: none; }
.nav-links-footer-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(72% 0.06 148);
}
.nav-links-footer-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.nav-links-footer-logos img {
  height: 30px; width: auto; display: block;
  opacity: 0.9;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/foto-serra-do-mar.jpg');
  background-size: cover; background-position: center 30%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    oklch(16% 0.03 148 / 0.88) 0%,
    oklch(16% 0.03 148 / 0.45) 45%,
    transparent 75%
  );
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-claro);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-title em { font-style: normal; color: #8DC63F; }
.hero-lead {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  border-radius: 4px; transition: all 0.15s ease-out; white-space: nowrap;
  font-size: 0.9rem; padding: 12px 24px;
}
.btn-primary { background: var(--vermelho-vivo); color: #fff; }
.btn-primary:hover { background: var(--vermelho-escuro); transform: scale(1.02); box-shadow: 0 4px 16px oklch(53% 0.22 28 / 0.4); }
.btn-ghost-light {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll svg { opacity: 0.5; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--verde-floresta);
  padding: 4rem clamp(1.5rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.intro-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 2.5rem;
  border-right: 1px solid oklch(100% 0 0 / 0.12);
}
.intro-strip-item:first-child { padding-left: 0; }
.intro-strip-item:last-child { border-right: none; }
.intro-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 800;
  color: #8DC63F;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.intro-num sup {
  font-size: 0.45em;
  vertical-align: super;
  font-weight: 700;
  letter-spacing: 0;
}
.intro-complement {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.intro-detail {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: oklch(65% 0.06 148);
  text-wrap: pretty;
  font-weight: 300;
}
.intro-source {
  margin-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.01em;
  color: oklch(58% 0.05 148);
  font-weight: 400;
  line-height: 1.4;
}

/* ── SECTION COMMON ── */
section { position: relative; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: #8DC63F; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--preto-mata);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section-title-light { color: #fff; }
.section-lead {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
  color: oklch(42% 0.04 148);
  max-width: 640px;
  text-wrap: pretty;
}
.section-lead-light { color: oklch(80% 0.06 148); }

/* ── O QUE SÃO ── */
.oque-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.oque-video-block {
  margin-top: 3.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px oklch(0% 0 0 / 0.18);
  background: var(--preto-mata);
  position: relative;
}
.oque-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: oklch(38% 0.04 148);
  margin-bottom: 1rem;
  text-wrap: pretty;
}
.oque-text p strong { color: var(--verde-escuro); }
.oque-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-green { background: var(--verde-gelo); color: var(--verde-escuro); }
.badge-blue  { background: oklch(93% 0.05 220); color: oklch(38% 0.09 220); }
.oque-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px oklch(0% 0 0 / 0.18);
}
.oque-visual--video { overflow: hidden; }
.oque-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.oque-video-wrap iframe,
.oque-video-wrap .oque-video-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.oque-video-poster {
  background: var(--preto-mata);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.oque-video-poster img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 600ms ease, opacity 300ms ease;
}
.oque-video-poster:hover img { transform: scale(1.04); opacity: 0.85; }
.oque-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 100px;
  background: oklch(54% 0.22 28); /* --vermelho-vivo, YT-ish */
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px oklch(0% 0 0 / 0.45);
  transition: transform 200ms ease, background 200ms ease;
}
.oque-video-poster:hover .oque-video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: oklch(60% 0.22 28);
}
.oque-video-play svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }
.oque-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.oque-visual-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, oklch(16% 0.03 148 / 0.8) 0%, transparent 100%);
  padding: 1.5rem 1.2rem 1.2rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  line-height: 1.5;
}
.oque-visual-caption strong { display: block; font-size: 1rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.map-placeholder {
  background: var(--verde-gelo);
  border-radius: 8px;
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  border: 2px dashed var(--verde-menta);
  margin-top: 2rem;
}
.map-placeholder span { font-size: 0.8rem; color: var(--verde-medio); font-style: italic; }

/* ── SERVIÇOS ── */
.servicos { background: var(--verde-floresta); }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
.servico-card {
  background: oklch(28% 0.08 148 / 0.0);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
  cursor: default;
}
.servico-card:hover { background: oklch(100% 0 0 / 0.04); }
.servico-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.servico-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.servico-body {
  font-size: 0.83rem;
  line-height: 1.65;
  color: oklch(72% 0.06 148);
  text-wrap: pretty;
}
.servico-body strong {
  color: var(--verde-claro);
  font-weight: 600;
}
.servico-source {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(58% 0.05 148);
}
.servico-card-feature {
  background: oklch(36% 0.10 148 / 0.35);
  outline: 1px solid oklch(56% 0.14 148 / 0.35);
}
.servico-card-feature:hover { background: oklch(40% 0.11 148 / 0.45); }
.servico-card-feature .servico-icon {
  font-size: 1.9rem;
}
.servico-stat {
  margin-top: 1rem;
  display: flex; align-items: baseline; gap: 4px;
}
.servico-stat-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--verde-claro);
}
.servico-stat-label {
  font-size: 0.72rem;
  color: oklch(60% 0.06 148);
}

/* ── AMEAÇAS ── */
.ameacas-header { max-width: 760px; }
.ameacas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.ameaca-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px oklch(0% 0 0 / 0.07);
  border-top: 3px solid transparent;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ameaca-card:hover { box-shadow: 0 8px 28px oklch(0% 0 0 / 0.1); transform: translateY(-2px); }
.ameaca-card.red    { border-top-color: var(--vermelho-vivo); }
.ameaca-card.amber  { border-top-color: var(--ambar); }
.ameaca-card.blue   { border-top-color: oklch(52% 0.10 220); }
.ameaca-card-eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.ameaca-card.red   .ameaca-card-eyebrow { color: var(--vermelho-vivo); }
.ameaca-card.amber .ameaca-card-eyebrow { color: oklch(52% 0.14 68); }
.ameaca-card.blue  .ameaca-card-eyebrow { color: oklch(42% 0.10 220); }
.ameaca-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: var(--preto-mata);
}
.ameaca-card-body {
  font-size: 0.83rem;
  line-height: 1.65;
  color: oklch(42% 0.04 148);
  text-wrap: pretty;
}
/* ── ALERTA VERDE ── */
.alerta-verde {
  background: linear-gradient(180deg, oklch(96% 0.04 148) 0%, oklch(98% 0.02 148) 100%);
  border: 1px solid oklch(86% 0.06 148);
  border-radius: 10px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}
.alerta-verde-header {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid oklch(86% 0.05 148);
  margin-bottom: 1.75rem;
}
.alerta-verde-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--verde-medio);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  animation: sirene-pulse 2s ease-in-out infinite;
}
@keyframes sirene-pulse {
  0%, 100% { box-shadow: 0 0 0 0 oklch(54% 0.17 148 / 0.45); }
  50%      { box-shadow: 0 0 0 16px oklch(54% 0.17 148 / 0); }
}
.alerta-verde-icon svg { width: 28px; height: 28px; }
.alerta-verde-header-text { flex: 1; min-width: 0; }
.alerta-verde-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 0.45rem;
}
.alerta-verde-header-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--verde-floresta);
  line-height: 1.18;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.alerta-verde-header-text p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: oklch(38% 0.04 148);
  text-wrap: pretty;
  max-width: 720px;
}
.pl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.pl-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.4rem 1.5rem 1.25rem;
  border-left: 3px solid var(--verde-medio);
  display: flex; flex-direction: column;
  gap: 0.55rem;
  box-shadow: 0 2px 10px oklch(0% 0 0 / 0.04);
}
.pl-card-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--verde-escuro);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pl-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--preto-mata);
  text-wrap: balance;
  letter-spacing: -0.005em;
}
.pl-card-body {
  font-size: 0.83rem;
  line-height: 1.62;
  color: oklch(40% 0.04 148);
  text-wrap: pretty;
}
.pl-card-risk {
  margin-top: auto;
  background: oklch(96% 0.04 148);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
}
.pl-card-risk-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 0.35rem;
}
.pl-card-risk p {
  font-size: 0.8rem;
  line-height: 1.55;
  color: oklch(32% 0.04 148);
  text-wrap: pretty;
}
.alerta-verde-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid oklch(86% 0.05 148);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.alerta-verde-footer-note {
  font-size: 0.78rem;
  color: oklch(46% 0.04 148);
  font-style: italic;
  max-width: 460px;
  text-wrap: pretty;
}
.btn-verde {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--verde-escuro); color: #fff;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.85rem; padding: 11px 20px;
  border-radius: 4px; border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn-verde:hover { background: var(--verde-floresta); transform: scale(1.02); }

/* Alerta verde — collapsed/expanded states */
.alerta-verde-toggle-row {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
.alerta-verde:not(.is-expanded) .alerta-verde-toggle-row { display: none; }
.btn-verde-ghost {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; color: var(--verde-escuro);
  border: 1.5px solid var(--verde-escuro);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base);
  letter-spacing: 0.01em;
}
.btn-verde-ghost:hover { background: var(--verde-escuro); color: #fff; }
.btn-verde-ghost .arrow { transition: transform var(--transition-base); display: inline-block; }

/* Collapsed: compact PL list — 3 cols, only tag + title */
.alerta-verde:not(.is-expanded) .pl-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.alerta-verde:not(.is-expanded) .pl-card {
  padding: 0.9rem 1rem 0.85rem;
  gap: 0.4rem;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}
.alerta-verde:not(.is-expanded) .pl-card:hover {
  background: oklch(98% 0.02 148);
  border-left-color: var(--verde-escuro);
}
.alerta-verde:not(.is-expanded) .pl-card:hover .pl-card-more {
  color: var(--verde-floresta);
}
.alerta-verde:not(.is-expanded) .pl-card:hover .pl-card-more .arrow {
  transform: translateX(2px);
}
.alerta-verde:not(.is-expanded) .pl-card h4 {
  font-size: 0.95rem;
  line-height: 1.3;
  margin-bottom: 0;
}
.alerta-verde:not(.is-expanded) .pl-card-body,
.alerta-verde:not(.is-expanded) .pl-card-risk {
  display: none;
}
.pl-card-more {
  margin-top: auto;
  padding-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--verde-escuro);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}
.pl-card-more .arrow {
  transition: transform var(--transition-base);
  display: inline-block;
}
.alerta-verde.is-expanded .pl-card-more { display: none; }

@media (max-width: 800px) {
  .pl-grid { grid-template-columns: 1fr; }
  .alerta-verde:not(.is-expanded) .pl-grid { grid-template-columns: 1fr; }
  .alerta-verde-header { flex-direction: column; gap: 1rem; }
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--verde-floresta);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/Superagui.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.manifesto-inner {
  position: relative; z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: #fff;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.manifesto-quote em {
  font-style: normal;
  color: #8DC63F;
}
.manifesto-body {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: oklch(78% 0.06 148);
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}
.manifesto-tagline {
  display: flex; flex-direction: column; gap: 2px;
  align-items: center;
  font-family: var(--font-display);
  margin-bottom: 2.5rem;
}
.manifesto-tagline span {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: oklch(70% 0.08 148);
  font-weight: 400;
}
.manifesto-tagline strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #8DC63F;
  font-weight: 800;
}

/* Manifesto completo — accordion */
.manifesto-full {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease;
  text-align: left;
}
.manifesto-full[data-open="true"] {
  grid-template-rows: 1fr;
}
.manifesto-full > .manifesto-full-inner {
  overflow: hidden;
  min-height: 0;
}
.manifesto-full-inner {
  padding-top: 0;
}
.manifesto-full[data-open="true"] .manifesto-full-inner {
  padding-top: 3rem;
}
.manifesto-full hr {
  border: none;
  height: 1px;
  background: oklch(100% 0 0 / 0.15);
  margin: 2.5rem auto;
  max-width: 120px;
}
.manifesto-full p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  color: oklch(88% 0.04 148);
  margin: 0 0 1.5rem 0;
  text-wrap: pretty;
}
.manifesto-full p strong {
  color: #fff;
  font-weight: 600;
}
.manifesto-full p em {
  font-style: normal;
  color: #8DC63F;
}
.manifesto-full .pull {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.25;
  color: #fff;
  text-align: center;
  text-wrap: balance;
  margin: 2.5rem 0;
  letter-spacing: -0.01em;
}
.manifesto-full .pull em {
  font-style: normal;
  color: #8DC63F;
}
.manifesto-full .closing {
  font-family: var(--font-display);
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.manifesto-full .closing span {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: oklch(70% 0.08 148);
  font-weight: 400;
}
.manifesto-full .closing strong {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #8DC63F;
  font-weight: 800;
  font-style: normal;
}
.manifesto-full .meta {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: oklch(65% 0.05 148);
  text-align: center;
  font-style: italic;
  letter-spacing: 0.02em;
}
.manifesto-toggle .chev {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 0.35rem;
}
.manifesto-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

/* ── AÇÃO ── */
.acao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.acao-card {
  background: #fff;
  border: 2px solid oklch(90% 0.05 148);
  border-radius: 8px;
  padding: 2.25rem;
  display: flex; flex-direction: column;
}
.acao-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--preto-mata);
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--verde-gelo);
}
.acao-lista { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.acao-lista li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; line-height: 1.5; color: oklch(38% 0.04 148);
}
.acao-lista li::before {
  content: '→';
  color: var(--verde-medio); font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.acao-card-cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

.acao-rppn-feature {
  margin-top: 2.5rem;
  background: var(--verde-floresta);
  color: #fff;
  border-radius: 8px;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.acao-rppn-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, oklch(66% 0.19 140 / 0.2) 0%, transparent 50%);
  pointer-events: none;
}
.acao-rppn-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-claro);
  font-weight: 600;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 0.5rem 0;
  border-left: 2px solid var(--verde-claro);
  padding-left: 12px;
  position: relative; z-index: 1;
}
.acao-rppn-body { position: relative; z-index: 1; }
.acao-rppn-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
  line-height: 1.15;
  text-wrap: balance;
}
.acao-rppn-body p {
  font-size: 0.95rem; line-height: 1.6;
  color: oklch(100% 0 0 / 0.78);
  text-wrap: pretty;
  max-width: 620px;
}
.acao-rppn-cta { position: relative; z-index: 1; }
.acao-rppn-cta .btn-rppn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--verde-claro);
  color: var(--verde-floresta);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.acao-rppn-cta .btn-rppn:hover { background: var(--verde-menta); transform: scale(1.02); }

@media (max-width: 800px) {
  .acao-grid { grid-template-columns: 1fr; }
  .acao-card { min-width: 0; }
  .acao-card .btn-verde { white-space: normal; text-align: center; line-height: 1.3; }
  .acao-rppn-feature {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: left;
  }
  .acao-rppn-eyebrow {
    writing-mode: horizontal-tb;
    transform: none;
    border-left: none;
    border-bottom: 2px solid var(--verde-claro);
    padding: 0 0 6px 0;
    align-self: flex-start;
  }
}

/* ── ÓRGÃOS AMBIENTAIS ── */
.orgaos {
  margin-top: 2.5rem;
  background: var(--verde-gelo);
  border-radius: 10px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.orgaos-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--verde-medio);
  margin-bottom: 0.5rem;
}
.orgaos h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--verde-floresta); line-height: 1.2;
  margin-bottom: 0.5rem; text-wrap: balance;
  letter-spacing: -0.01em;
}
.orgaos > p {
  font-size: 0.9rem; line-height: 1.6; color: oklch(40% 0.04 148);
  max-width: 640px; margin-bottom: 1.75rem; text-wrap: pretty;
}
/* Top row: intro text + featured ICMBio card */
.orgaos-top {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 380px);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  margin-bottom: 1.5rem;
}
.orgaos-intro p {
  font-size: 0.9rem; line-height: 1.6; color: oklch(40% 0.04 148);
  max-width: 560px; text-wrap: pretty; margin-bottom: 0;
}
.orgao-featured {
  display: flex; flex-direction: column; gap: 0.3rem;
  background: var(--verde-floresta); border-radius: 10px;
  padding: 1.5rem 1.65rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s;
}
.orgao-featured:hover { transform: translateY(-2px); box-shadow: 0 10px 30px oklch(0% 0 0 / 0.16); }
.orgao-featured-tag {
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--verde-claro);
  margin-bottom: 0.15rem;
}
.orgao-featured .orgao-name { color: #fff; font-size: 1.3rem; }
.orgao-featured .orgao-name .arrow { color: var(--verde-claro); }
.orgao-featured .orgao-url { color: oklch(82% 0.07 148); }
.orgao-featured .orgao-desc { color: oklch(88% 0.03 148); font-size: 0.82rem; margin-top: 0.35rem; }
.orgaos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
@media (max-width: 720px) {
  .orgaos-top { grid-template-columns: 1fr; }
}
.orgao-link {
  display: flex; flex-direction: column; gap: 0.2rem;
  background: #fff; border-radius: 8px;
  padding: 1rem 1.15rem;
  text-decoration: none;
  border: 1px solid oklch(88% 0.04 148);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  min-width: 0;
}
.orgao-link:hover {
  border-color: var(--verde-medio);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px oklch(0% 0 0 / 0.07);
}
.orgao-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--preto-mata); line-height: 1.25;
  display: flex; align-items: center; gap: 0.4rem;
}
.orgao-name .arrow { color: var(--verde-medio); transition: transform 0.2s; font-size: 0.85em; }
.orgao-link:hover .orgao-name .arrow { transform: translate(2px, -2px); }
.orgao-url {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--verde-escuro); letter-spacing: 0.01em;
  word-break: break-word;
}
.orgao-desc {
  font-size: 0.76rem; line-height: 1.45; color: oklch(46% 0.04 148);
  text-wrap: pretty; margin-top: 0.25rem;
}

/* ── GALERIA · CARROSSEL ── */
.galeria-section {
  background: var(--branco);
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}

/* Header strip above the marquee */
.galeria-strip-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(1.25rem, 2.5vw, 2rem);
  font-family: var(--font-body);
  color: var(--branco);
  flex-wrap: wrap;
}
.galeria-strip-hint-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--preto-mata);
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.1;
}
.galeria-strip-hint-label::before {
  content: "";
  width: 40px; height: 2px;
  background: var(--verde-medio);
  flex-shrink: 0;
}
.galeria-strip-hint-action {
  font-size: 0.82rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.galeria-strip-hint-action svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

/* Marquee container */
.galeria-marquee {
  position: relative;
  overflow: hidden;
  --marquee-h: clamp(340px, 46vw, 580px); /* @kind spacing */
}
.galeria-marquee::before,
.galeria-marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 6vw, 120px);
  z-index: 3;
  pointer-events: none;
}
.galeria-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--branco) 0%, oklch(100% 0 0 / 0) 100%);
}
.galeria-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--branco) 0%, oklch(100% 0 0 / 0) 100%);
}
.galeria-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee-scroll 90s linear infinite;
  will-change: transform;
}
.galeria-marquee:hover .galeria-marquee-track,
.galeria-marquee:focus-within .galeria-marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.galeria-marquee-item {
  position: relative;
  height: var(--marquee-h);
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--verde-gelo);
}
.galeria-marquee-item.tall  { width: calc(var(--marquee-h) * 0.7); }
.galeria-marquee-item.wide  { width: calc(var(--marquee-h) * 1.5); }
.galeria-marquee-item.square{ width: var(--marquee-h); }
.galeria-marquee-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.4s ease;
  filter: saturate(0.95);
}
.galeria-marquee-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.galeria-marquee-item .galeria-mq-cap {
  display: none;
}
.galeria-marquee-item:hover .galeria-mq-cap {
  opacity: 1;
  transform: translateY(0);
}
.galeria-marquee-item .galeria-mq-cap strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
  color: var(--branco);
}
.galeria-marquee-item .galeria-mq-cap span {
  display: block;
  font-size: 0.72rem;
  color: oklch(100% 0 0 / 0.78);
}

@media (max-width: 720px) {
  .galeria-marquee { --marquee-h: clamp(240px, 60vw, 360px); /* @kind spacing */ }
  .galeria-strip-hint { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .galeria-marquee-track { animation: none; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: oklch(8% 0.01 148 / 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-stage {
  position: relative;
  width: min(92vw, 1600px);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0 5.5rem;
}
.lightbox-img-wrap {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 20px 80px oklch(0% 0 0 / 0.4);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lightbox-img.loaded {
  opacity: 1;
  transform: scale(1);
}
.lightbox-cap {
  position: absolute;
  left: 0; right: 0; bottom: 1.25rem;
  text-align: center;
  color: var(--branco);
  font-family: var(--font-body);
  padding: 0 4rem;
}
.lightbox-cap strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  margin-bottom: 0.2rem;
}
.lightbox-cap span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.7;
  letter-spacing: 0.02em;
}
.lightbox-counter {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  color: oklch(100% 0 0 / 0.55);
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.08);
  border: 1px solid oklch(100% 0 0 / 0.16);
  color: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: oklch(100% 0 0 / 0.16);
}
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 720px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-cap { padding: 0 1rem; }
  .lightbox-stage { padding: 3.5rem 0 5rem; }
}
body.no-scroll { overflow: hidden; }

/* ── PARCEIROS ── */
.parceiros { background: var(--areia); }
.creditos-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.75rem;
}
.creditos-block + .creditos-block { margin-top: 2.5rem; }
.creditos-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-medio);
  position: relative;
  padding: 0 1rem;
}
.creditos-label::before,
.creditos-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: oklch(75% 0.05 75);
}
.creditos-label::before { right: 100%; }
.creditos-label::after { left: 100%; }
.creditos-tile {
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 0.25rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
a.creditos-tile:hover { opacity: 0.85; transform: translateY(-2px); }
.creditos-tile.lg { min-height: 110px; }
.creditos-tile img {
  width: auto;
  height: auto;
  max-height: 72px;
  max-width: 280px;
  display: block;
  object-fit: contain;
}
.creditos-tile.lg img { max-height: 88px; max-width: 340px; }

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 1080px;
  margin-left: auto; margin-right: auto;
  align-items: center;
}
.parceiro-tile {
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.parceiro-tile:hover { transform: translateY(-2px); opacity: 0.85; }
.parceiro-tile img,
.parceiro-tile svg {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
/* Per-logo calibrated sizes for visual balance */
.parceiro-tile[data-logo="lageamb"]    img { max-height: 44px; max-width: 220px; }
.parceiro-tile[data-logo="mar-brasil"] img { max-height: 86px; max-width: 90px; }
.parceiro-tile[data-logo="grma"]       img { max-height: 50px; max-width: 230px; }
.parceiro-tile[data-logo="iat"]        img { max-height: 94px; max-width: 170px; }
.parceiro-tile[data-logo="icmbio"]     img { max-height: 92px; max-width: 110px; }
.parceiro-tile[data-logo="ojc"]        img { max-height: 68px; max-width: 150px; }
.parceiro-tile[data-logo="spvs"]       img { max-height: 64px; max-width: 170px; }
.parceiro-tile[data-logo="ufpr"]       img { max-height: 80px; max-width: 130px; }

.financiamento-note {
  margin-top: 3.5rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: oklch(48% 0.04 148);
  text-align: center;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  border-top: 1px solid oklch(82% 0.03 75);
  padding-top: 2rem;
  text-wrap: pretty;
}
.financiamento-note strong { color: var(--verde-escuro); }
@media (max-width: 900px) {
  .parceiros-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
  .creditos-tile.lg img { max-height: 64px; max-width: 280px; }
}

/* ── SEMINÁRIO ── */
.seminario {
  background: var(--areia);
  position: relative;
}
.seminario .section-inner { padding-top: clamp(4rem, 8vw, 6rem); padding-bottom: clamp(4rem, 8vw, 6rem); }
.seminario-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  margin-top: 2.75rem;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px oklch(0% 0 0 / 0.08);
}
.seminario-visual {
  position: relative;
  min-height: 460px;
  background-image: url('images/Superagui.jpg');
  background-size: cover;
  background-position: center;
}
.seminario-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, oklch(28% 0.08 148 / 0.55) 0%, oklch(28% 0.08 148 / 0.15) 100%);
}
.seminario-date-overlay {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: oklch(100% 0 0 / 0.95);
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 84px;
  z-index: 1;
  box-shadow: 0 4px 16px oklch(0% 0 0 / 0.15);
}
.seminario-date-overlay .month {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vermelho-vivo);
  margin-bottom: 2px;
}
.seminario-date-overlay .day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--preto-mata);
  line-height: 1;
}
.seminario-date-overlay .year {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: oklch(50% 0.04 148);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.seminario-tag-overlay {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.seminario-tag-overlay .place {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.seminario-tag-overlay .place-detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: oklch(90% 0.04 148);
  font-weight: 400;
}
.seminario-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.seminario-content .badge-pill {
  align-self: flex-start;
  background: oklch(95% 0.08 28);
  color: var(--vermelho-escuro);
  margin-bottom: 1rem;
}
.seminario-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--preto-mata);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}
.seminario-content > p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: oklch(38% 0.04 148);
  margin-bottom: 1.5rem;
  text-wrap: pretty;
}
.seminario-content > p strong { color: var(--verde-escuro); }
.seminario-programa {
  border-top: 1px solid oklch(88% 0.02 148);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}
.seminario-programa h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 0.85rem;
}
.seminario-programa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.seminario-programa-list li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  font-size: 0.83rem;
  line-height: 1.5;
  color: oklch(35% 0.04 148);
}
.seminario-programa-list li .slot {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--verde-escuro);
  font-weight: 600;
  padding-top: 1px;
  line-height: 1.35;
}
.seminario-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.btn-seminario-primary {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--verde-escuro);
  color: #fff;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.88rem; padding: 11px 22px;
  border-radius: 4px; border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.btn-seminario-primary:hover { background: var(--verde-floresta); transform: scale(1.02); }
.btn-seminario-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--verde-escuro);
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.88rem; padding: 11px 22px;
  border-radius: 4px;
  border: 1.5px solid oklch(85% 0.04 148);
  text-decoration: none;
  transition: all 0.15s;
}
.btn-seminario-ghost:hover { border-color: var(--verde-escuro); background: var(--verde-gelo); }

/* ── JOGOS / QUIZ FATO OU MITO ── */
.jogos { background: #fff; }
.jogos-header { max-width: 720px; }

.quiz-wrap {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.quiz {
  background: linear-gradient(180deg, oklch(98% 0.02 148) 0%, #fff 100%);
  border: 1px solid oklch(90% 0.04 148);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.5rem, 3vw, 2.6rem);
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.05);
  min-height: 460px;
  display: flex;
  flex-direction: column;
}

.quiz-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.quiz-counter {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde-escuro);
  letter-spacing: 0.04em;
}
.quiz-counter b { color: var(--verde-floresta); }
.quiz-progress {
  flex: 1;
  height: 4px;
  background: oklch(92% 0.03 148);
  border-radius: 100px;
  overflow: hidden;
  max-width: 240px;
}
.quiz-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--verde-medio), var(--verde-escuro));
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height: 1.22;
  color: var(--preto-mata);
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin-bottom: 1.75rem;
  flex: 1;
}

.quiz-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quiz-btn {
  background: #fff;
  border: 2px solid oklch(88% 0.04 148);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--preto-mata);
  transition: border-color 0.2s, background 0.2s, transform 0.15s, color 0.2s;
}
.quiz-btn:hover { transform: translateY(-2px); }
.quiz-btn[data-choice="fato"]:hover { border-color: var(--verde-floresta); background: var(--verde-gelo); color: var(--verde-floresta); }
.quiz-btn[data-choice="mito"]:hover { border-color: var(--vermelho-vivo); background: oklch(96% 0.06 25); color: var(--vermelho-escuro); }
.quiz-btn .ic {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}
.quiz-btn[data-choice="fato"] .ic { background: var(--verde-floresta); }
.quiz-btn[data-choice="mito"] .ic { background: var(--vermelho-vivo); }

/* Reveal state */
.quiz.is-revealed .quiz-choices { display: none; }
.quiz-reveal { display: none; }
.quiz.is-revealed .quiz-reveal { display: flex; flex-direction: column; gap: 1.1rem; }

.quiz-verdict {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.1rem 0.55rem 0.7rem;
  border-radius: 100px;
}
.quiz-verdict .badge {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}
.quiz-verdict.correct { background: var(--verde-gelo); color: var(--verde-floresta); }
.quiz-verdict.correct .badge { background: var(--verde-floresta); }
.quiz-verdict.wrong { background: oklch(96% 0.06 25); color: var(--vermelho-escuro); }
.quiz-verdict.wrong .badge { background: var(--vermelho-vivo); }

.quiz-truth {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(46% 0.04 148);
}
.quiz-truth b { color: var(--verde-floresta); }
.quiz-truth.is-mito b { color: var(--vermelho-vivo); }

.quiz-explanation {
  font-size: 0.96rem;
  line-height: 1.65;
  color: oklch(30% 0.04 148);
  text-wrap: pretty;
  max-width: 60ch;
}

.quiz-next {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--verde-escuro);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, gap 0.15s;
}
.quiz-next:hover { background: var(--verde-floresta); gap: 10px; }

/* End screen */
.quiz.is-finished .quiz-meta,
.quiz.is-finished .quiz-question,
.quiz.is-finished .quiz-choices,
.quiz.is-finished .quiz-reveal { display: none; }
.quiz-end { display: none; flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; padding: 1rem 0 0.5rem; }
.quiz.is-finished .quiz-end { display: flex; }
.quiz-end-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-medio);
}
.quiz-end-score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
  color: var(--verde-floresta);
  letter-spacing: -0.02em;
}
.quiz-end-score small {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: oklch(50% 0.04 148);
  letter-spacing: 0.02em;
}
.quiz-end-msg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--preto-mata);
  text-wrap: balance;
  max-width: 36ch;
}
.quiz-end-sub {
  font-size: 0.92rem;
  line-height: 1.65;
  color: oklch(38% 0.04 148);
  max-width: 50ch;
  text-wrap: pretty;
}
.quiz-restart {
  background: transparent;
  border: 1.5px solid var(--verde-escuro);
  color: var(--verde-escuro);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  transition: background 0.2s, color 0.2s;
}
.quiz-restart:hover { background: var(--verde-escuro); color: #fff; }

/* Side panel */
.quiz-aside {
  background: var(--verde-floresta);
  color: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.quiz-aside-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verde-claro);
}
.quiz-aside h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.18;
  color: #fff;
  text-wrap: balance;
  letter-spacing: -0.005em;
}
.quiz-aside p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: oklch(82% 0.06 148);
  text-wrap: pretty;
}
.quiz-aside-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}
.quiz-aside-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.quiz-aside-stat-num {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--verde-claro);
  letter-spacing: -0.01em;
}
.quiz-aside-stat-label {
  font-size: 0.7rem;
  line-height: 1.4;
  color: oklch(78% 0.06 148);
  text-wrap: pretty;
}

/* Legacy jogo styles kept for backward compat — unused now */
.jogos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.jogo-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px oklch(0% 0 0 / 0.07);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.jogo-card:hover {
  box-shadow: 0 12px 36px oklch(0% 0 0 / 0.13);
  transform: translateY(-3px);
}
.jogo-thumb {
  aspect-ratio: 5/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.jogo-thumb-emoji {
  font-size: 3.4rem;
  filter: drop-shadow(0 4px 14px oklch(0% 0 0 / 0.15));
  position: relative;
  z-index: 1;
}
.jogo-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, oklch(100% 0 0 / 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 78%, oklch(100% 0 0 / 0.14) 0 5px, transparent 6px),
    radial-gradient(circle at 60% 30%, oklch(100% 0 0 / 0.12) 0 3px, transparent 4px);
  opacity: 0.9;
}
.jogo-thumb.t-verde { background: linear-gradient(135deg, var(--verde-medio) 0%, var(--verde-escuro) 100%); }
.jogo-thumb.t-ambar { background: linear-gradient(135deg, var(--ambar) 0%, oklch(58% 0.18 38) 100%); }
.jogo-thumb.t-rosa  { background: linear-gradient(135deg, var(--rosa-colhereiro) 0%, oklch(58% 0.18 355) 100%); }
.jogo-thumb.t-azul  { background: linear-gradient(135deg, oklch(62% 0.10 220) 0%, oklch(38% 0.12 230) 100%); }
.jogo-status-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: oklch(100% 0 0 / 0.95);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  color: var(--preto-mata);
  z-index: 2;
}
.jogo-status-tag.dev { color: oklch(40% 0.14 38); background: oklch(96% 0.04 75); }
.jogo-status-tag.live { color: var(--verde-escuro); background: var(--verde-gelo); }
.jogo-status-tag.soon { color: oklch(40% 0.10 230); background: oklch(94% 0.04 230); }
.jogo-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.jogo-audience {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-medio);
  margin-bottom: 0.5rem;
}
.jogo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--preto-mata);
  margin-bottom: 0.6rem;
  text-wrap: balance;
}
.jogo-desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: oklch(40% 0.04 148);
  margin-bottom: 1.25rem;
  flex: 1;
  text-wrap: pretty;
}
.jogo-meta {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: oklch(48% 0.04 148);
  padding-top: 0.85rem;
  border-top: 1px solid oklch(92% 0.02 148);
  margin-bottom: 1rem;
}
.jogo-meta span { display: inline-flex; align-items: center; gap: 4px; }
.jogo-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.83rem;
  color: var(--verde-escuro);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s, color 0.15s;
}
.jogo-cta:hover { gap: 8px; color: var(--verde-floresta); }
.jogo-cta.disabled {
  color: oklch(60% 0.03 148);
  cursor: not-allowed;
  pointer-events: none;
}
.jogos-callout {
  margin-top: 2.5rem;
  background: var(--verde-gelo);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.jogos-callout-icon { font-size: 1.6rem; flex-shrink: 0; }
.jogos-callout-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: oklch(36% 0.06 148);
  text-wrap: pretty;
}
.jogos-callout-text strong { color: var(--verde-escuro); }
.jogos-callout a {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.84rem;
  color: var(--verde-escuro);
  text-decoration: none;
  white-space: nowrap;
}
.jogos-callout a:hover { text-decoration: underline; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--verde-escuro); }
.newsletter-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.newsletter h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff; line-height: 1.15; margin-bottom: 0.75rem;
}
.newsletter p {
  font-size: 0.95rem; font-weight: 300; line-height: 1.65;
  color: oklch(80% 0.07 148);
  margin-bottom: 2rem; text-wrap: pretty;
}
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: oklch(100% 0 0 / 0.1);
  border: 1.5px solid oklch(100% 0 0 / 0.2);
  border-radius: 4px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: oklch(70% 0.05 148); }
.newsletter-form input:focus { border-color: var(--verde-claro); }
.newsletter-form button {
  background: var(--vermelho-vivo);
  color: #fff; border: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  padding: 12px 22px; border-radius: 4px;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--vermelho-escuro); transform: scale(1.02); }

/* ── FOOTER ── */
footer {
  background: var(--verde-floresta);
  padding: 3rem clamp(1.5rem, 6vw, 5rem) 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid oklch(100% 0 0 / 0.1);
}
.footer-brand {}
.footer-brand-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem;
}
.footer-brand-tagline {
  font-size: 0.78rem; color: oklch(62% 0.06 148);
  line-height: 1.6; margin-bottom: 1.25rem;
  max-width: 260px; text-wrap: pretty;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: oklch(100% 0 0 / 0.08);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: oklch(78% 0.06 148); text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.footer-social a svg { width: 16px; height: 16px; display: block; }
.footer-social a:hover { background: var(--verde-medio); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--verde-claro);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col ul a {
  font-size: 0.82rem; color: oklch(65% 0.05 148);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.72rem; color: oklch(45% 0.04 148);
}
.footer-bottom a { color: oklch(55% 0.06 148); text-decoration: none; }
.footer-bottom a:hover { color: var(--verde-claro); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  nav.nav-open { background: oklch(16% 0.03 148 / 0.96); backdrop-filter: blur(14px); }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.25rem clamp(1.5rem, 6vw, 4rem) 1.5rem;
    background: oklch(16% 0.03 148 / 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid oklch(100% 0 0 / 0.1);
    box-shadow: 0 18px 44px oklch(0% 0 0 / 0.38);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  nav.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid oklch(100% 0 0 / 0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 1.1rem;
    text-align: center;
    padding: 13px 18px !important;
    font-size: 0.95rem;
  }
  .nav-links-footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid oklch(100% 0 0 / 0.1);
  }
  .intro-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro-strip-item { border-right: none; border-bottom: 1px solid oklch(100% 0 0 / 0.12); padding: 0 0 1.5rem; }
  .intro-strip-item:last-child { border-bottom: none; padding-bottom: 0; }
  .oque-grid { grid-template-columns: 1fr; gap: 2rem; }
  .oque-visual { aspect-ratio: 16/9; }
  .servicos-grid { grid-template-columns: 1fr; }
  .ameacas-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .seminario-card { grid-template-columns: 1fr; }
  .seminario-visual { min-height: 280px; }
  .jogos-grid { grid-template-columns: 1fr; }
  .quiz-wrap { grid-template-columns: 1fr; }
  .quiz-choices { grid-template-columns: 1fr; }
  .quiz-aside-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .jogos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Ajustes de edição ── */
#manifesto-full :is(h1,h2,h3,h4,h5,h6,p,li,dt,dd,blockquote,figcaption,label,span,a,em,strong,small,td,th,caption) >b { font-weight: 600 !important }