/* Bastidores da Sindicatura — Sistema visual */
/* Provicali (briefing) não está disponível em Google Fonts. Bodoni Moda é a aproximação editorial mais próxima. */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Epilogue:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  /* Paleta oficial Bastidores da Sindicatura */
  --onix: #1A1C29;
  --onix-90: #232532;
  --onix-deep: #121420;
  --graphite: #3B3F4A;
  --graphite-light: #5a5f6c;

  --sand: #DABDA9;
  --sand-light: #E7CFC0;
  --sand-deep: #B89579;

  --offwhite: #F7F5F2;
  --offwhite-warm: #EFEAE1;

  --lavender: #B8C0FF;
  --lavender-light: #D2D7FF;
  --lavender-deep: #8A92D0;

  /* Tipografia */
  --font-display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  --font-sans: 'Epilogue', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Escala (artboard 1440) */
  --t-hero: 148px;
  --t-h1: 104px;
  --t-h2: 72px;
  --t-h3: 48px;
  --t-h4: 32px;
  --t-eyebrow: 12px;
  --t-body-l: 22px;
  --t-body: 18px;
  --t-small: 14px;
  --t-micro: 11px;

  /* Espaçamento */
  --pad-x: 96px;
  --pad-y: 140px;
}

/* Reset leve */
.bs-root, .bs-root *,
.bs-root *::before, .bs-root *::after { box-sizing: border-box; }

.bs-root {
  font-family: var(--font-sans);
  color: var(--offwhite);
  font-size: var(--t-body);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--onix);
}

.bs-root img { display: block; max-width: 100%; }
.bs-root button { font-family: inherit; }
.bs-root input, .bs-root select, .bs-root textarea {
  font-family: inherit; font-size: inherit; color: inherit;
}

/* Tipografia utilitária */
.bs-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.bs-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.bs-display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* Acento de linha fina */
.bs-rule {
  display: inline-block;
  height: 1px;
  background: var(--sand);
  width: 48px;
  vertical-align: middle;
}
