/* ══════════════════════════════════════════
   style.css — Base global, variáveis e reset
   Alobaça v3 · Tata Hiago Salles
   ══════════════════════════════════════════ */

:root {
  --bg:        #0a0806;
  --bg2:       #110e09;
  --bg3:       #181210;
  --gold:      #c9a84c;
  --gold2:     #e8c96e;
  --gold-dim:  #7a6330;
  --cream:     #f5ede0;
  --cream-dim: #c8b99a;
  --red:       #8b2c2c;
  --text:      #e8dfc8;
  --text-gold: #e8c96e;
  --text-dim:  #9a8e78;
  --border:    rgba(201,168,76,0.18);
  --border2:   rgba(201,168,76,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* Textura de ruído global */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 999;
}

/* ── Tipografia base ── */
h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
h2 em {
  font-style: italic;
  font-family: 'IM Fell English', Georgia, serif;
  color: var(--gold);
}
h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
}
p {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
}
p:last-child { margin-bottom: 0; }

/* ── Layout base ── */
section { position: relative; padding: 90px 24px; }
.container      { max-width: 860px;  margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 20px;
  display: block;
}

/* ── Botões ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 44px;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  border: 1px solid var(--gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}

/* ── Reveal animado ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animações ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Footer ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border2);
  padding: 32px 24px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.footer-seal { margin-top: 8px; font-size: 10px; opacity: 0.5; }
