/* reset.css */

/* 1. Elimina márgenes y paddings por defecto */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Establece altura completa para layout flexible */
html, body {
  height: 100%;
}

/* 3. Mejora tipografía y legibilidad */
body {
  line-height: 1.5;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 4. Elimina estilos por defecto en listas */
ul, ol {
  list-style: none;
}

/* 5. Normaliza enlaces */
a {
  text-decoration: none;
  color: inherit;
}

/* 6. Elimina bordes en imágenes */
img, picture {
  max-width: 100%;
  display: block;
  border: 0;
}

/* 7. Normaliza botones y formularios */
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 8. Establece box-sizing heredado */
*, *::before, *::after {
  box-sizing: inherit;
}