/* ============================================================
   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 ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

