/* ===========================================
   base.css — Tipografia base e utilitários
   =========================================== */

/* ---- Fonte de destaque (eyebrow dos cabeçalhos) ---- */
@font-face {
  font-family: 'Northura Light UltCond';
  src: url('../fonts/Northura-Light.woff2') format('woff2'),
       url('../fonts/Northura-Light.woff') format('woff'),
       url('../fonts/Northura-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-base);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  color: var(--text-body);
  background: var(--white);
}

/* ---- Container central ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-16);
}

/* ---- Utilitários de acessibilidade ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Evita rolagem do body com o menu mobile aberto */
body.is-locked {
  overflow: hidden;
}
