/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --black:    #0A0A0A;
  --white:    #FFFFFF;
  --grey-1:   #888888;
  --grey-2:   #444444;
  --red:      #FF0033;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: var(--grey-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 60px;
  padding-inline: 24px;
  width: min(1200px, 100%);
  margin-inline: auto;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  opacity: 0.75;
}

.nav-link:hover { opacity: 1; }

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 9px 20px;
  text-decoration: none;
  border: 1px solid var(--white);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: transparent;
  color: var(--white);
}

/* Botão hamburger (só mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu mobile dropdown */
.nav-mobile {
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--grey-2);
  padding: 8px 0 16px;
}

.nav-mobile ul { list-style: none; }

.nav-mobile-link {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--grey-1);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile-link:hover { color: var(--white); }

.nav-mobile-cta {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  border-top: 1px solid var(--grey-2);
  margin-top: 8px;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas { display: block; }
a { color: inherit; text-decoration: none; }

/* ── UTILITÁRIOS ─────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
}

/* ── BOTÃO CTA ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 18px 40px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.btn-large {
  font-size: 1rem;
  padding: 22px 56px;
  letter-spacing: 0.15em;
}

/* ── REVEAL ANIMATION ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: 60px;
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: hero-zoom 12s ease forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}


.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, #0A0A0A 0%, #0A0A0Aaa 40%, transparent 100%);
  pointer-events: none;
}

.hero-title-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hero-cta-wrap {
  position: relative;
  z-index: 2;
  padding: 0 48px 48px;
  width: min(1200px, 100%);
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fade-up 0.7s 0.8s ease forwards;
}

.hero-cta-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--grey-1);
  text-transform: uppercase;
}

.btn-hero {
  font-size: 0.9rem;
  padding: 20px 48px;
  letter-spacing: 0.14em;
}

/* Hero meta: lote tag + when */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: -6px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--grey-2);
  padding: 7px 14px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.6);
  animation: node-pulse 2.4s ease-out infinite;
}

@keyframes node-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 0, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 0, 51, 0); }
}

.hero-when {
  font-family: 'Courier New', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--grey-1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-dot { animation: none; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  color: var(--grey-2);
  animation: bounce 2s 1.8s ease infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════
   MELHORIA A — CHAMADO: tipografia em display
══════════════════════════════════════════════════════ */
.chamado {
  border-top: 1px solid var(--grey-2);
  padding-block: 100px 80px;
}

.chamado-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--grey-1);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.chamado-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 64px;
}

.chamado-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--grey-2);
  padding-top: 48px;
}

.chamado-col p {
  font-size: 1rem;
  color: var(--grey-1);
  line-height: 1.75;
  margin-bottom: 20px;
}

.chamado-col p:last-child { margin-bottom: 0; }

.chamado-col strong {
  color: var(--white);
  font-weight: 600;
}

.chamado-col blockquote {
  border-left: 2px solid var(--white);
  padding-left: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.45;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   MELHORIA D — PILARES: Daniel full-width + 3 em linha
══════════════════════════════════════════════════════ */
.pilares {
  border-top: 1px solid var(--grey-2);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 48px;
  color: var(--white);
}

.pilares-grid {
  display: grid;
  /* Daniel ocupa as 3 colunas; os outros 3 ficam em 3 colunas */
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-2);
  border: 1px solid var(--grey-2);
}

/* Card destaque: Daniel full-width */
.pilar-featured {
  grid-column: 1 / -1;
  background: var(--black);
  padding: 0;
}

.pilar-featured-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  min-height: 200px;
}

.pilar-featured-inner > div:first-child {
  padding: 40px 32px;
  border-right: 1px solid var(--grey-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}

.pilar-featured-inner > p {
  padding: 40px 48px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--grey-1);
  line-height: 1.65;
  align-self: center;
}

.pilar-featured .pilar-ref {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--grey-1);
  text-transform: uppercase;
}

.pilar-featured h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
}

/* Cards menores: Davi, Ester, Timóteo */
.pilar {
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pilar-ref {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--grey-1);
  text-transform: uppercase;
}

.pilar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.2;
}

.pilar p {
  font-size: 0.88rem;
  color: var(--grey-1);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   MELHORIA C — EVENTO: data, local, horário
══════════════════════════════════════════════════════ */
.evento {
  position: relative;
  padding-block: 80px;
  border-top: 1px solid var(--grey-2);
  overflow: hidden;
}

.evento-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--grey-1);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.evento-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--grey-2);
}

.evento-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px 32px;
}

.evento-sep {
  width: 1px;
  background: var(--grey-2);
  flex-shrink: 0;
}

.evento-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--grey-1);
  text-transform: uppercase;
}

.evento-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
}

.evento-link {
  text-decoration: none;
  transition: opacity 0.2s;
}
.evento-link:hover { opacity: 0.7; }

.evento-address {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--grey-1);
  margin-top: 6px;
  text-transform: none;
}

/* Programação */
.programacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-2);
  border: 1px solid var(--grey-2);
  border-top: none;
}

.prog-dia {
  background: var(--black);
  padding: 36px 32px;
}

.prog-dia-titulo {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--grey-1);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.prog-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prog-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-block: 14px;
  border-bottom: 1px solid var(--grey-2);
}

.prog-item:last-child { border-bottom: none; }

.prog-hora {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--grey-1);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.prog-desc {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}

.prog-intervalo .prog-hora,
.prog-intervalo .prog-desc {
  color: var(--grey-2);
}

.evento-cta {
  margin-top: 40px;
}

/* ── CONTADOR + LOTE ─────────────────────────────────── */
.countdown-wrap {
  border: 1px solid var(--grey-2);
  padding: 28px 32px 32px;
  margin-bottom: 32px;
}

.countdown-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--grey-1);
  text-transform: uppercase;
}

.cd-lote {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--white);
  text-transform: uppercase;
  border-left: 2px solid var(--red);
  padding-left: 10px;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 3vw, 28px);
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.cd-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.cd-lab {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-1);
}

.cd-sep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 0.9;
  color: var(--grey-2);
  padding-top: 2px;
}

.lote {
  margin-top: 28px;
}

.lote-bar {
  height: 4px;
  background: var(--grey-2);
  overflow: hidden;
}

.lote-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--white);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lote-fill.filled { width: 68%; }

.lote-note {
  display: block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--grey-1);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════
   CTA INTERMEDIÁRIO
══════════════════════════════════════════════════════ */
.cta-mid {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#map-canvas-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.route-svg-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-mid-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.cta-mid-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--grey-1);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-mid-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   MELHORIA B — DECLARAÇÃO: billboard tipográfico
══════════════════════════════════════════════════════ */
.declaracao {
  border-top: 1px solid var(--grey-2);
  padding-block: 100px 80px;
  overflow: hidden;
}

.decl-billboard {
  padding-inline: clamp(16px, 3vw, 48px);
  margin-bottom: 64px;
}

.decl-line-text {
  font-family: var(--font-display);
  font-weight: 700;
  /* grande o suficiente para criar impacto mas não vazar */
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--white);
  display: block;
}

/* Segunda linha recuada — cria tensão visual */
.decl-indent {
  padding-left: clamp(2rem, 8vw, 10rem);
  color: var(--grey-1);
}

.decl-sub-wrap {
  border-top: 1px solid var(--grey-2);
  padding-top: 40px;
}

.decl-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--grey-1);
  line-height: 1.8;
  max-width: 520px;
}

.decl-question {
  display: block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* Variante invertida — quebra de ritmo (fundo branco) */
.declaracao-invert {
  position: relative;
  background: var(--white);
  border-top: none;
  isolation: isolate;
}

.declaracao-invert .decl-billboard,
.declaracao-invert .decl-sub-wrap {
  position: relative;
  z-index: 2;
}

.declaracao-invert .decl-line-text { color: var(--black); }
.declaracao-invert .decl-indent { color: #c2c2c2; }
.declaracao-invert .decl-sub-wrap { border-top-color: #dcdcdc; }
.declaracao-invert .decl-sub { color: #5a5a5a; }
.declaracao-invert .decl-question { color: var(--black); }

.decl-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decl-node {
  position: absolute;
  bottom: clamp(40px, 7vw, 80px);
  right: clamp(16px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  pointer-events: none;
}

.decl-node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.5);
  animation: node-pulse 2.4s ease-out infinite;
}

.decl-node-coord {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--black);
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  position: relative;
  border-top: 1px solid var(--grey-2);
  overflow: hidden;
}

.footer-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 100%, #1a1a1a 0%, var(--black) 70%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding-block: 100px 60px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.footer-coords {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--grey-1);
  letter-spacing: 0.1em;
}

.footer-node {
  color: var(--red);
  font-size: 1.2rem;
}

.footer-coord-text {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.footer-phrase {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 700px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--grey-2);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--grey-1);
  text-transform: uppercase;
}

/* ── STICKY CTA (mobile) ─────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--grey-2);
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta.show { transform: translateY(0); }

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.sticky-cta-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.sticky-cta-lote {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-1);
}

.sticky-cta-btn {
  flex-shrink: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 22px;
}

/* ── MICRO-INTERAÇÕES ────────────────────────────────── */
.btn-primary {
  transition: background 0.2s, color 0.2s, transform 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); }

.pilar { transition: background 0.25s ease; }
.pilar:hover { background: #141414; }

.evento-item { transition: background 0.25s ease; }

/* ── RESPONSIVO ──────────────────────────────────────── */
@media (max-width: 640px) {
  .section { padding-block: 72px; }

  /* NAV MOBILE */
  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  /* Oculta conteúdo do nav sobre o hero no mobile (menu fechado e não scrollado) */
  .nav:not(.scrolled):not(.nav-open) .nav-brand {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .nav-brand { transition: opacity 0.3s ease; }

  /* HERO MOBILE */
  .hero {
    margin-top: 0;
    min-height: auto;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: contain;
    background-position: center center;
    background-color: var(--black);
    flex-shrink: 0;
  }

  .hero-fade { display: none; }

  .hero-cta-wrap {
    position: relative;
    padding: 28px 24px 44px;
    background: var(--black);
    border-top: 1px solid var(--grey-2);
    justify-content: center;
    opacity: 0;
    animation: fade-up 0.5s 0.2s ease forwards;
  }

  .scroll-hint { display: none; }

  /* CHAMADO MOBILE */
  .chamado-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* PILARES MOBILE */
  .pilares-grid {
    grid-template-columns: 1fr;
  }

  .pilar-featured-inner {
    grid-template-columns: 1fr;
  }

  .pilar-featured-inner > div:first-child {
    border-right: none;
    border-bottom: 1px solid var(--grey-2);
    justify-content: flex-start;
  }

  .pilar-featured-inner > p {
    padding: 28px 28px 36px;
  }

  /* EVENTO MOBILE */
  .evento-grid {
    flex-direction: column;
  }

  .evento-sep {
    width: 100%;
    height: 1px;
    flex-shrink: 0;
  }

  /* PROGRAMAÇÃO MOBILE */
  .programacao {
    grid-template-columns: 1fr;
  }

  /* DECLARAÇÃO MOBILE */
  .decl-line-text {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .decl-indent {
    padding-left: clamp(1.5rem, 8vw, 4rem);
  }

  /* FOOTER MOBILE */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* STICKY CTA: só no mobile */
  .sticky-cta { display: flex; }

  /* COUNTDOWN MOBILE */
  .countdown-wrap { padding: 22px 20px 26px; }
  .countdown { gap: 8px; }
  .cd-sep { display: none; }
  .cd-unit {
    flex: 1;
    align-items: center;
    gap: 6px;
  }
  .cd-num { font-size: clamp(2rem, 11vw, 3rem); }
}
