:root {
  --navy: #1e3a7b;
  --navy-dark: #0f1729;
  --laranja: #e85d26;
  --off-white: #f8f7f4;
  --texto: #1a1a2e;
  --fonte-titulo: 'Cormorant Garamond', serif;
  --fonte-corpo: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--fonte-corpo);
  color: var(--texto);
  background: var(--off-white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  font-weight: 600;
  line-height: 1.2;
}
