/* ── RESET & VARIÁVEIS ── */
:root {
  --bg: #0a0a0a;
  --surface: #111;
  --surface2: #181818;
  --border: #222;
  --border2: #2e2e2e;
  --accent: #ffd700;
  --accent2: #f0c040;
  --text: #f0ece4;
  --muted: #666;
  --muted2: #999;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon { font-size: 1.5rem; }

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.nav-logo-text span { color: var(--accent); }
.nav-logo-sub { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: -2px; }

.nav-links { display: flex; gap: 28px; align-items: center; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 9px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--accent2) !important; transform: translateY(-2px) !important; }

/* ── BOTÕES ── */
.btn-gold {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 2px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-gold:hover { background: var(--accent2); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 2px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── SEÇÃO PADRÃO ── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-label::after { content: ''; width: 36px; height: 1px; background: var(--accent); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-title span { color: var(--accent); }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.marquee {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  white-space: nowrap;
}

.marquee span.dot { color: var(--accent); font-size: 0.6rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── WHATSAPP ── */
.btn-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  z-index: 999;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s;
}

.btn-whatsapp:hover { transform: scale(1.1); }
.btn-whatsapp img { width: 100%; border-radius: 50%; }

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 48px 60px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-logo-text span { color: var(--accent); }

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: var(--muted2);
  margin-bottom: 8px;
  display: block;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-col a:hover { color: var(--accent); }

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

.footer-copy { font-size: 0.78rem; color: var(--muted); }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

/* ── REVEAL ── */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.hidden { opacity: 0; transform: translateY(24px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 20px 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
