@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --gold: #d4af37;
  --gold-light: #f0c870;
  --gold-dark: #9a7d1a;
  --bg: #0d1117;
  --bg-mid: #131b24;
  --bg-card: #1a2332;
  --border: rgba(212,175,55,0.15);
  --text: #e8e0d0;
  --text-muted: #9a8f7e;
  --green: #22c55e;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,17,23,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}

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

.nav-cta {
  background: var(--gold);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px !important;
  white-space: nowrap;
  transition: opacity 0.15s !important;
}

.nav-cta:hover { opacity: 0.9; color: #000 !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-mid);
    padding: 20px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: block; }
}

/* ── FOOTER ── */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 60px 24px 30px;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }

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

.footer-bottom p { color: var(--text-muted); font-size: 12px; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── HERO ── */
.page-hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, #1e2d1a 0%, var(--bg) 60%);
}

.page-hero .tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold-dark);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 560px;
  margin: 0 auto;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover { transform: translateY(-3px); border-color: rgba(212,175,55,0.35); }

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-light); }

.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(34,197,94,0.3); }
.btn-green:hover { opacity: 0.9; }

/* ── SEÇÃO ── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
}

/* ── LEGAL ── */
.legal-content h2 { font-family: 'Playfair Display', serif; color: var(--gold-light); font-size: 22px; margin: 36px 0 12px; }
.legal-content h3 { color: var(--text); font-size: 16px; margin: 24px 0 8px; }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; line-height: 1.75; }
.legal-content ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 6px; font-size: 15px; line-height: 1.7; }
.legal-content a { color: var(--gold); text-decoration: none; }
