/* ─────────────────────────────────────────────────────────────
   Instituto Senders · shared base stylesheet
   Loaded once on every page via the base layout.
   Contains ONLY the site-wide design core: fonts, reset,
   typography base, color tokens, and page shell.
   (Page-specific component CSS still lives inside each page.)
   ───────────────────────────────────────────────────────────── */

/* Inter, self-hosted (no Google/external requests; LGPD privacy-by-design) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

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

/* ─── TYPOGRAPHY BASE (site-wide standard: balance headings, avoid widows/orphans) ─── */
h1, h2, h3, h4, h5, h6 { text-wrap: balance; hyphens: none; }
p, li, blockquote, figcaption, dd { text-wrap: pretty; overflow-wrap: break-word; }

:root {
  --blue: #002D9E;
  --blue-dark: #001F6E;
  --blue-light: #1a47c4;
  --gray: #7A7A7A;
  --light: #F6F6F6;
  --white: #FFFFFF;
  --text: #1a1a2e;
}

html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: clip; max-width: 100%; line-height: 1.7; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* NOTE: the font-rendering fine-tune the site owner wanted goes here later, e.g.
   body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
   Changing it here updates every page at once. */
