/* Entre Duas — style.css · mobile-first */

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--mogno);
  color: var(--marfim);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS VARS ───────────────────────────────────────────────── */
:root {
  --raiz:         #0C0804;
  --mogno:        #160E06;
  --terra:        #221408;
  --ambar:        #C4851A;
  --marfim:       #F0E8DC;
  --ambar-smoke:  rgba(196, 133, 26, 0.07);
  --ambar-glow:   rgba(196, 133, 26, 0.18);
  --marfim-muted: rgba(240, 232, 220, 0.55);

  --max-w:   1140px;
  --side:    24px;
  --section: 100px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--marfim);
}
em, .italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}
.label-micro {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ambar);
}
.body-sm   { font-size: 0.875rem; }
.muted     { color: var(--marfim-muted); }
.amber     { color: var(--ambar); }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--side);
}
section { padding: var(--section) 0; }

/* ── RADIAL BG HELPER ───────────────────────────────────────── */
.bg-raiz  { background: var(--raiz); }
.bg-mogno { background: var(--mogno); }
.bg-terra { background: var(--terra); }

/* ── GRAIN OVERLAY ──────────────────────────────────────────── */
.grain-layer {
  position: fixed; inset: -50%; z-index: 0;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
}

/* ── L-FRAME CANTOS ─────────────────────────────────────────── */
.l-frame {
  position: relative;
}
.l-frame::before, .l-frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--ambar);
  border-style: solid;
}
.l-frame::before { top: 0; left: 0; border-width: 1.5px 0 0 1.5px; }
.l-frame::after  { bottom: 0; right: 0; border-width: 0 1.5px 1.5px 0; }

/* ── BUTTON ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--ambar);
  color: var(--raiz);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  position: relative;
}
.btn-primary::before, .btn-primary::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--raiz);
  border-style: solid;
}
.btn-primary::before { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.btn-primary::after  { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }
.btn-primary:hover {
  background: color-mix(in srgb, var(--ambar) 88%, white);
  transform: translateY(-2px);
  transition: background 0.3s, transform 0.3s;
}
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(196, 133, 26, 0.4);
  color: var(--ambar);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
  border-color: var(--ambar);
  background: var(--ambar-smoke);
}

/* ────────────────────────────────────────────────────────────
   1. HERO
──────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--raiz);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 90%, rgba(196, 133, 26, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 85%, rgba(196, 133, 26, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,133,26,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 100px 0 80px;
  max-width: 780px;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(196,133,26,0.4), transparent);
  max-width: 80px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ambar);
  font-weight: 400;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta p {
  font-size: 0.85rem;
  color: var(--marfim-muted);
  letter-spacing: 0.06em;
}
.hero-vagas {
  font-size: 0.8rem;
  color: var(--ambar);
  letter-spacing: 0.1em;
}
.hero-countdown {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgba(196,133,26,0.18);
  border-right: none;
  min-width: 72px;
}
.cd-unit:last-child { border-right: 1px solid rgba(196,133,26,0.18); }
.cd-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--marfim);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  display: block;
}
.cd-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ambar);
  margin-top: 6px;
}
.cd-ended {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ambar);
  font-size: 1.2rem;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(196,133,26,0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,133,26,0.6), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ────────────────────────────────────────────────────────────
   2. O QUE E
──────────────────────────────────────────────────────────── */
.sobre {
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(196,133,26,0.05) 0%, transparent 60%),
    var(--mogno);
}
.sobre-grid {
  display: grid;
  gap: 60px;
}
.sobre-header { max-width: 680px; }
.sobre-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 24px; }
.sobre-header p  { color: var(--marfim-muted); font-size: 0.95rem; max-width: 580px; line-height: 1.85; }
.sobre-frase {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ambar);
  border-left: 1px solid rgba(196,133,26,0.3);
  padding-left: 24px;
  margin-top: 32px;
}
.pilares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}
.pilar {
  padding: 36px 32px;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.12);
  position: relative;
}
.pilar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(196,133,26,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.pilar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.pilar p { font-size: 0.875rem; color: var(--marfim-muted); }

/* ────────────────────────────────────────────────────────────
   3. PARA QUEM
──────────────────────────────────────────────────────────── */
.para-quem {
  background:
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(196,133,26,0.06) 0%, transparent 60%),
    var(--terra);
}
.para-quem h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 48px; }
.sinais-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
  max-width: 680px;
}
.sinais-lista li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(196,133,26,0.1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--marfim-muted);
  line-height: 1.7;
}
.sinais-lista li::before {
  content: '—';
  color: var(--ambar);
  flex-shrink: 0;
  margin-top: 2px;
}
.sinais-lista li:first-child { border-top: 1px solid rgba(196,133,26,0.1); }
.destaque-frase {
  padding: 36px 40px;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.15);
  max-width: 680px;
}
.destaque-frase p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────
   4. ARQUITETURA DO DIA
──────────────────────────────────────────────────────────── */
.arquitetura {
  background:
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(196,133,26,0.07) 0%, transparent 60%),
    var(--mogno);
}
.arquitetura-header { max-width: 600px; margin-bottom: 64px; }
.arquitetura-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.arquitetura-header p { color: var(--marfim-muted); }
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--ambar), rgba(196,133,26,0.1));
}
.tl-item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(196,133,26,0.08);
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 36px;
  width: 9px; height: 9px;
  background: var(--ambar);
  border-radius: 50%;
  border: 2px solid var(--mogno);
  transform: translateX(-50%);
}
.tl-hora {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ambar);
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.tl-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--marfim);
  margin-bottom: 6px;
}
.tl-content p { font-size: 0.85rem; color: var(--marfim-muted); }

/* ────────────────────────────────────────────────────────────
   5. O ESPACO
──────────────────────────────────────────────────────────── */
.espaco {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(196,133,26,0.06) 0%, transparent 65%),
    var(--terra);
}
.espaco-grid {
  display: grid;
  gap: 60px;
}
.espaco-texto { max-width: 560px; }
.espaco-texto h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 24px; }
.espaco-texto p  { color: var(--marfim-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 20px; }
.espaco-frase {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ambar);
  margin-bottom: 24px;
}
.espaco-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,133,26,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.espaco-link:hover { color: var(--ambar); }
.espaco-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.espaco-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.img-placeholder {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,133,26,0.4);
  text-align: center;
  padding: 24px;
}

/* ────────────────────────────────────────────────────────────
   6. JANNA
──────────────────────────────────────────────────────────── */
.janna {
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%, rgba(196,133,26,0.06) 0%, transparent 65%),
    var(--mogno);
}
.janna-inner {
  display: grid;
  gap: 48px;
  align-items: start;
}
.janna-foto-wrap {
  display: flex;
  justify-content: flex-start;
}
.janna-foto {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.janna-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.foto-placeholder {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(196,133,26,0.4);
  text-align: center;
}
.janna-bio { max-width: 600px; }
.janna-bio h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 6px;
}
.janna-handle {
  font-size: 0.8rem;
  color: var(--ambar);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.janna-bio p {
  color: var(--marfim-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 28px;
}
.janna-frase {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ambar);
  border-left: 1px solid rgba(196,133,26,0.3);
  padding-left: 20px;
}

/* ────────────────────────────────────────────────────────────
   7. DEPOIMENTOS
──────────────────────────────────────────────────────────── */
.depoimentos {
  background: var(--terra);
  overflow: hidden;
}
.depoimentos-header { margin-bottom: 48px; }
.depoimentos-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.vagas-confirmadas {
  font-size: 0.8rem;
  color: var(--ambar);
  letter-spacing: 0.08em;
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: 100%;
}
.depoimento-card {
  flex: 0 0 100%;
  padding: 48px 40px;
  border: 1px solid rgba(196,133,26,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dep-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--marfim);
  line-height: 1.65;
}
.dep-text::before { content: '\201C'; color: var(--ambar); }
.dep-text::after  { content: '\201D'; color: var(--ambar); }
.dep-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dep-foto {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem;
  color: rgba(196,133,26,0.4);
  text-align: center;
  letter-spacing: 0.1em;
}
.dep-info-nome {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--marfim);
}
.dep-info-cidade {
  font-size: 0.75rem;
  color: var(--marfim-muted);
  letter-spacing: 0.06em;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(196,133,26,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--ambar);
  font-size: 1.1rem;
  transition: border-color 0.3s, background 0.3s;
}
.carousel-btn:hover {
  border-color: var(--ambar);
  background: var(--ambar-smoke);
}
.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 6px; height: 6px;
  background: rgba(196,133,26,0.2);
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--ambar);
  transform: scale(1.3);
}

/* ────────────────────────────────────────────────────────────
   8. PRESENCA (INGRESSOS)
──────────────────────────────────────────────────────────── */
.presenca {
  background:
    radial-gradient(ellipse 65% 50% at 50% 100%, rgba(196,133,26,0.10) 0%, transparent 65%),
    var(--mogno);
}
.presenca-header { text-align: center; margin-bottom: 64px; }
.presenca-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.presenca-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ambar);
}
.ingressos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 56px;
}
.ingresso {
  padding: 40px;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.15);
}
.ingresso-label {
  margin-bottom: 16px;
  display: block;
}
.ingresso h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.ingresso-desc {
  font-size: 0.875rem;
  color: var(--marfim-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.preco-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.preco-de {
  font-size: 0.95rem;
  color: var(--marfim-muted);
  text-decoration: line-through;
}
.preco-por {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--marfim);
}
.preco-parcela {
  font-size: 0.8rem;
  color: var(--marfim-muted);
}
.vagas-bar-wrap {
  max-width: 600px;
  margin: 0 auto 40px;
}
.vagas-bar-track {
  height: 3px;
  background: var(--terra);
  position: relative;
  overflow: hidden;
}
.vagas-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--ambar);
  width: var(--target-width, 65%);
}
.vagas-bar-text {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--marfim-muted);
}
.vagas-bar-text span:last-child { color: var(--ambar); }
.presenca-cta { text-align: center; margin-bottom: 20px; }
.presenca-nota {
  font-size: 0.78rem;
  color: var(--marfim-muted);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 64px;
  line-height: 1.7;
}
.continuidade-bloco {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px;
  background: var(--ambar-smoke);
  border: 1px solid rgba(196,133,26,0.15);
}
.continuidade-bloco h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.continuidade-bloco p {
  font-size: 0.875rem;
  color: var(--marfim-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   9. FAQ
──────────────────────────────────────────────────────────── */
.faq {
  background: var(--terra);
}
.faq h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 48px; }
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(196,133,26,0.12);
}
.faq-item:first-child { border-top: 1px solid rgba(196,133,26,0.12); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--marfim);
  text-align: left;
  gap: 16px;
}
.faq-marker {
  color: var(--ambar);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  min-width: 14px;
  text-align: right;
}
.faq-item.open .faq-marker { transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  max-height: 0;
}
.faq-body p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--marfim-muted);
  line-height: 1.8;
  max-width: 620px;
}

/* ────────────────────────────────────────────────────────────
   10. CTA FINAL
──────────────────────────────────────────────────────────── */
.cta-final {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,133,26,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(196,133,26,0.10) 0%, transparent 55%),
    var(--raiz);
  padding: 140px 0 160px;
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.cta-final-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ambar);
  margin-bottom: 56px;
}
.cta-final-cd {
  margin-bottom: 56px;
  display: flex;
  justify-content: center;
}
.cta-final-cd .hero-countdown {
  display: inline-flex;
}

/* ────────────────────────────────────────────────────────────
   11. RODAPE
──────────────────────────────────────────────────────────── */
.rodape {
  background: var(--raiz);
  border-top: 1px solid rgba(196,133,26,0.1);
  padding: 64px 0 48px;
}
.rodape-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.rodape-marca h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.rodape-marca em {
  font-size: 0.9rem;
  color: var(--ambar);
}
.rodape-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rodape-links a {
  font-size: 0.8rem;
  color: var(--marfim-muted);
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.rodape-links a:hover { color: var(--ambar); }
.rodape-bottom {
  border-top: 1px solid rgba(196,133,26,0.08);
  padding-top: 24px;
  font-size: 0.72rem;
  color: rgba(240,232,220,0.3);
  letter-spacing: 0.06em;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 768px
──────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  :root { --side: 48px; --section: 120px; }

  .pilares-grid { grid-template-columns: repeat(3, 1fr); }

  .sobre-grid { grid-template-columns: 1fr 1fr; }

  .espaco-grid { grid-template-columns: 1fr 1fr; align-items: center; }

  .janna-inner { grid-template-columns: auto 1fr; }

  .ingressos-grid { grid-template-columns: repeat(2, 1fr); }

  .rodape-inner { flex-direction: row; justify-content: space-between; align-items: flex-end; }

  .timeline::before { left: 72px; }
  .tl-item { grid-template-columns: 144px 1fr; }
  .tl-item::before { left: 68px; }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE — 1200px
──────────────────────────────────────────────────────────── */
@media (min-width: 1200px) {
  :root { --side: 64px; }

  .hero-inner { max-width: 820px; }

  .depoimento-card { flex-direction: row; gap: 48px; align-items: flex-start; }
  .dep-text { flex: 1; }
  .dep-author { flex-direction: column; align-items: flex-start; width: 180px; flex-shrink: 0; }
}
