/* Estilo compartilhado das páginas institucionais estáticas
   (/about/, /contact/, /privacy/ e afins). Mantém a identidade
   dourado/escuro do site principal sem depender do bundle React. */
:root { --gold: #c9a24b; --gold-light: #e6c877; --bg: #0c0c0c; --card: #161616; }
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(circle at 50% 0%, #1c1710 0%, var(--bg) 60%);
  color: #fff; min-height: 100vh; padding: 40px 24px 64px; line-height: 1.65;
}
.wrap { width: 100%; max-width: 760px; margin: 0 auto; }
header.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
header.top a.brand { display: inline-flex; align-items: center; text-decoration: none; }
header.top img { height: 44px; width: auto; }
header.top nav { display: flex; gap: 18px; flex-wrap: wrap; }
header.top nav a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; }
header.top nav a:hover { color: var(--gold-light); }
h1 { font-size: 30px; font-weight: 700; line-height: 1.25; }
.lead { color: rgba(255,255,255,.72); font-size: 16px; margin-top: 14px; }
h2 { font-size: 19px; font-weight: 700; color: var(--gold-light); margin-top: 36px; margin-bottom: 10px; }
h3 { font-size: 16px; font-weight: 600; margin-top: 22px; margin-bottom: 6px; }
p { color: rgba(255,255,255,.78); margin-top: 12px; }
ul, ol { color: rgba(255,255,255,.78); margin-top: 12px; padding-left: 22px; }
li { margin-top: 7px; }
a { color: var(--gold-light); }
.card { background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 22px 24px; margin-top: 20px; }
.cta { display: inline-block; margin-top: 26px; padding: 14px 28px; border-radius: 999px;
       background: linear-gradient(135deg, var(--gold-light), var(--gold));
       color: #1a1400; font-weight: 700; text-decoration: none; }
.meta { margin-top: 34px; font-size: 13px; color: rgba(255,255,255,.45); }
footer.bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
                font-size: 13px; color: rgba(255,255,255,.45); }
footer.bottom a { color: var(--gold); text-decoration: none; }
