:root{
  /* Paleta institucional neutra */
  --primary:#0F3D5C;
  --primary-700:#0B2E47;
  --primary-100:#E6EEF4;
  --secondary:#1E8A7A;
  --secondary-100:#E3F4F0;
  --accent:#E8A93C;
  --accent-700:#C48A1F;
  --danger:#D8412F;
  --danger-100:#FDECEA;
  --warning:#E8A93C;
  --success:#2F9E6B;
  --success-100:#E6F4EC;

  --bg:#01050e;
  --surface:#bdb0b0;
  --surface-2:#c4c6c9;
  --text:#4713e4;
  --muted:#64748B;
  --border:rgba(15,61,92,.12);
  --border-strong:rgba(15,61,92,.22);

  /* Espaçamentos */
  --space-xs:6px;
  --space-sm:10px;
  --space-md:16px;
  --space-lg:24px;
  --space-xl:32px;
  --space-2xl:48px;

  /* Raio */
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:16px;
  --radius-xl:20px;

  /* Sombras em níveis */
  --shadow-sm:0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow-md:0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.05);
  --shadow-lg:0 12px 28px rgba(15,23,42,.12), 0 4px 10px rgba(15,23,42,.06);

  /* Tipografia */
  --font-sans:'Inter','Segoe UI',-apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
}

*,*::before,*::after{box-sizing:border-box}

html,body{margin:0;padding:0}
body{
  font-family:var(--font-sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ===== TIPOGRAFIA ===== */
h1,h2,h3,h4{margin:0;font-weight:700;letter-spacing:-.01em;color:var(--text)}
h1{font-size:22px;line-height:1.3}
h2{font-size:18px;line-height:1.35}
h3{font-size:15px;line-height:1.4}
h4{font-size:13px;line-height:1.4;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;font-weight:700}
p{margin:0}
.text-muted{color:var(--muted);font-size:13px}
.text-strong{font-weight:700;color:var(--text)}

/* Evita sobreposição de textos */
h1,h2,h3,h4,p,span,li,button,a,td,th{
  word-break:normal;
  overflow-wrap:break-word;
  hyphens:auto;
}