/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0D1B2A;
  --navy-2: #132236;
  --navy-3: #0A1520;
  --gold:   #C8A84B;
  --gold-l: #E2C06E;
  --white:  #FFFFFF;
  --off:    #F7F6F2;
  --muted:  #94A3B8;
  --text:   #1E293B;
  --slate:  #64748B;
  --border: rgba(200,168,75,0.18);
  --border-light: #E2E8F0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy-3);
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar a, .topbar span {
  color: var(--muted);
  text-decoration: none;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.topbar a:hover { color: var(--gold); }
.topbar .sep { color: rgba(255,255,255,0.12); }

/* ── NAVBAR ── */
.navbar {
  background: var(--navy-2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 20px;
  letter-spacing: .4px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  background: var(--gold) !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover {
  background: var(--gold-l) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 780px) {
  .navbar { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 12px 16px 20px;
    gap: 2px;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; border-radius: 6px; }
}

/* ── LAYOUT HELPERS ── */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 80px 40px; }
@media (max-width: 600px) { section { padding: 60px 20px; } }

.divider {
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 16px;
}
.divider.center { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 16.5px;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section-sub.light { color: var(--muted); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 15px 30px;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(200,168,75,0.3);
}
.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,168,75,0.45);
}
.btn-lg {
  padding: 18px 38px;
  font-size: 17px;
  box-shadow: 0 4px 24px rgba(200,168,75,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 13px 28px;
  font-size: 15px;
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(200,168,75,0.1);
  transform: translateY(-1px);
}
.btn-microcopy {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--slate);
}

/* ── PAGE HERO (seções internas) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 40px 80px;
  text-align: center;
}
.page-hero .section-title.light { font-size: clamp(28px, 4vw, 44px); }
.page-hero .section-sub.light { margin: 0 auto 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-3);
  padding: 56px 40px 28px;
  color: var(--slate);
  font-size: 14px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand .logo { font-size: 18px; display: block; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: var(--slate); line-height: 1.7; margin-bottom: 16px; }
.footer-crc { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-col h5 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  color: var(--slate);
  text-decoration: none;
  display: block;
  font-size: 13.5px;
  margin-bottom: 9px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 300;
  text-decoration: none;
  font-size: 26px;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── CARDS REUTILIZÁVEIS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover {
  border-color: rgba(200,168,75,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: background .2s;
}
.card-dark:hover { background: rgba(255,255,255,0.07); }

/* ── CHECK / X MARKS ── */
.check-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(200,168,75,0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  flex-shrink: 0;
}
.x-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: #FEF2F2;
  color: #DC2626;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item.dark {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 15px; font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: 'Inter', sans-serif;
}
.faq-item.dark .faq-q { color: var(--white); }
.faq-q:hover { color: var(--gold); }
.faq-arrow { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px; color: var(--slate); line-height: 1.7;
}
.faq-item.dark .faq-a { color: var(--muted); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: 64px 40px;
  text-align: center;
}
.cta-strip .section-title.light { margin-bottom: 14px; }
.cta-strip p { color: var(--muted); font-size: 16px; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-micros {
  display: flex; justify-content: center;
  gap: 28px; margin-top: 20px; flex-wrap: wrap;
}
.cta-micro {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--slate);
}
.cta-micro::before { content: "✓"; color: var(--gold); font-weight: 700; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
