/*
 * reset.css — normalize y base tipográfica únicamente (LEY-150)
 * Sin variables de diseño. Sin colores hardcoded.
 */

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

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: transparent; font: inherit; }
input, textarea { font: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
