/* ─── FONTES LOCAIS (Glacial Indifference) ───────────────── */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── VARIÁVEIS DE CORES FFA ──────────────────────────────── */
:root {
  --azul: #29275a;
  --vermelho: #c51516;
  --branco: #ffffff;

  /* Derivados */
  --azul-escuro: #1c1a40;
  --azul-claro: #3d3a82;
  --vermelho-escuro: #9c1011;
  
  --cinza-claro: #f4f6f9;
  --cinza-texto: #444444;
  --overlay: rgba(41, 39, 90, 0.45);
}

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

html { 
  scroll-padding-top: 100px;
  scroll-behavior: smooth; 
}

/* ─── APLICAÇÃO DAS FONTES ──────────────────────────────── */
body {
  padding-top: 100px;
  /* Glacial Indifference para todo o texto corrido */
  font-family: 'Glacial Indifference', sans-serif;
  color: var(--cinza-texto);
  background: var(--branco);
}

/* Bebas Neue apenas para os títulos e destaques */
h1, h2, h3, h4, h5, h6, .fonte-destaque, .hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-weight: 400; 
}