/* ═══════════════════════════════════════════════════════════════════
   BASE — base.css
   ──────────────────────────────────────────────────────────────────
   Reset, html, body y tipografía base.
   No contiene estilos de componentes específicos.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Reset universal ──────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Scroll suave en toda la página ──────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

/* ── Cuerpo principal ────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--color-gray-800);
  line-height: var(--line-height-base);
  background: var(--color-white);
  overflow-x: hidden;   /* Previene scroll horizontal en mobile */
}

/* ── Imágenes y multimedia responsivas ──────────────────────── */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Links sin decoración por defecto ──────────────────────── */
a {
  text-decoration: none;
  color: inherit;
}

/* ── Listas sin viñeta por defecto ─────────────────────────── */
ul, ol {
  list-style: none;
}

/* ── Botones heredan fuente del body ───────────────────────── */
button, input, select, textarea {
  font-family: inherit;
}
