/* === RESET BÁSICO UNIVERSAL === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Altura base para layouts completos */
html, body {
  height: 100%;
  font-family: sans-serif; /* fallback seguro */
}

/* Elimina estilos por defecto de listas */
ul, ol {
  list-style: none;
}

/* Imágenes se comportan */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Enlaces sin subrayado ni color extraño */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset para inputs y botones */
input, textarea, select, button {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Botón visible y usable */
button {
  cursor: pointer;
}
