/* ─── GOOGLE FONTS ────────────────────────────────────
   Importe no <head> do HTML:
   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap" rel="stylesheet"/>
──────────────────────────────────────────────────── */

/* ─── VARIÁVEIS ──────────────────────────────────── */
:root {
  --azul: #153d6a;
  --amarelo: #ffc300;
  --branco: #ffffff;

  /* derivados úteis */
  --azul-escuro: #0d2a4a;
  --azul-claro: #1e5294;
  --amarelo-escuro: #e0ab00;
  --cinza-claro: #f4f6f9;
  --cinza-texto: #444;
  --overlay: rgba(13, 30, 55, 0.58);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cinza-texto);
  background: var(--branco);
}
