/* ============================================================
   base.css — Lokal
   Reset universal, body y tipografía global
   ============================================================ */

/* ── FUENTES (Google Fonts) ──
   Asegúrate de tener esto en el <head> del index.html:
   <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:ital,wght@0,700;0,900;1,900&display=swap" rel="stylesheet">
   ─────────────────────────────────────────────────────────── */

/* ── RESET UNIVERSAL Y SCROLLBAR GLOBAL ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--crema-oscura) transparent;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--crema-oscura);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tierra);
}

/* ── BODY ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blanco);
  color: var(--cafe);
  min-height: 100vh;
}

/* ── CLASES DE UTILIDAD ── */
.hidden {
  display: none !important;
}

