/* ── Reset & elementos base — compartilhado por todas as páginas ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, Arial, sans-serif;
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; }
address { font-style: normal; }
ul  { list-style: none; }

/* Fonte da marca (mesma família da logo) */
.brand-font {
  font-family: 'Luckiest Guy', 'Inter', cursive;
  letter-spacing: .01em;
}

/* Só visível para leitores de tela */
.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;
}

section[id] { scroll-margin-top: 72px; }
