/* ══════════════════════════════════════════
   hero.css — Hero, Countdown e Sticky Bar
   Alobaça v3 · Tata Hiago Salles
   ══════════════════════════════════════════ */

/* ── Sticky Bar ── */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,8,6,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .price-text {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--cream-dim);
  letter-spacing: 0.05em;
}
.sticky-bar .price-text strong { color: var(--gold2); font-size: 15px; }
.btn-sticky {
  background: var(--gold);
  color: var(--bg);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-sticky:hover { background: var(--gold2); }

/* Countdown compacto (sticky) */
.sticky-countdown { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--cream-dim); }
.sticky-countdown .cd-unit { text-align: center; min-width: 36px; }
.sticky-countdown .cd-num  { font-family: 'Cinzel', serif; font-size: 16px; color: var(--gold2); display: block; line-height: 1; }
.sticky-countdown .cd-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); }
.sticky-countdown .cd-sep  { color: var(--gold-dim); font-size: 18px; margin-bottom: 8px; }

/* ── Urgency Banner ── */
.urgency-banner {
  background: var(--red);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #f5dada;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.urgency-banner span { color: #ffcfcf; font-weight: 600; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
  background-color: var(--bg);
}

/* Fumaça de fundo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/bg-fumaca-ritual.png');
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
  pointer-events: none;
}

/* Gradiente sobre a fumaça */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(139,44,44,0.08) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-ornament {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold2);
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-ornament::before,
.hero-ornament::after { content: '✦'; margin: 0 12px; font-size: 8px; vertical-align: middle; }

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 400;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  font-family: 'IM Fell English', Georgia, serif;
  color: var(--gold);
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

/* Imagem do Tata no hero (opcional) */
.hero-img {
  width: clamp(160px, 22vw, 260px);
  margin: 0 auto 24px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.35s forwards;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.12));
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 32px auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-sub strong { color: var(--cream); font-weight: 400; }

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-proof { font-size: 13px; color: var(--text-gold); letter-spacing: 0.05em; }
.hero-proof span { color: var(--gold2); }

/* ── Countdown Hero ── */
.countdown-hero {
  margin: 48px 0 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}
.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.countdown-wrap { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.cd-block { display: flex; flex-direction: column; align-items: center; min-width: 72px; }
.cd-num-big {
  font-family: 'Cinzel', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--gold2);
  line-height: 1;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-lbl-big { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-top: 8px; }
.cd-sep-big { font-family: 'Cinzel', serif; font-size: 32px; color: var(--gold-dim); line-height: 72px; margin: 0 2px; }

/* ── Hero Trust Strip ── */
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  padding: 18px 32px;
  border: 1px solid var(--border2);
  background: rgba(201,168,76,0.04);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.0s forwards;
  flex-wrap: wrap;
}
.hts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hts-num {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: 0.04em;
}
.hts-label {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
}
.hts-sep {
  color: var(--gold-dim);
  font-size: 7px;
}
