/* =========================
   ROOT / PALETA DE CORES
========================= */

:root {
  --blue-primary: #0A3D91;
  --blue-secondary: #114FA3;
  --blue-accent: #1E6BD6;
  --dark-bg: #0F172A;
  --dark-card: #111827;
  --text-light: #E5E7EB;
  --text-muted: #9CA3AF;
  --white: #FFFFFF;
}

/* =========================
   RESET / BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

section {
  padding: 80px 10%;
}

h1,
h2,
h3,
h4 {
  color: var(--white);
}

a {
  text-decoration: none;
}



