/* ============================================================
   ÔXI — COZINHA NORDESTINA
   Design System · Reset & Base
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--preto);
  background-color: var(--areia);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Cursor padrão desabilitado — cursor customizado via JS */
body.custom-cursor-active,
body.custom-cursor-active * {
  cursor: none;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── TIPOGRAFIA BASE ────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--cinza-texto);
}

/* ── SELEÇÃO DE TEXTO ───────────────────────────────────── */
::selection {
  background-color: var(--ferrugem);
  color: var(--areia);
}

/* ── FOCUS ACESSÍVEL ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--ferrugem);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── SCROLLBAR CUSTOMIZADA ──────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--areia-escuro);
}
::-webkit-scrollbar-thumb {
  background: var(--verde-musgo);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ferrugem);
}
