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

/* 2. Establece herencia de tipografía y color para inputs y elementos de formulario */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* 3. Corrige comportamiento de listas */
ul,
ol {
  list-style: none;
}

/* 4. Enlaces sin decoración por defecto */
a {
  text-decoration: none;
  color: inherit;
}

/* 5. Elimina estilos por defecto en tablas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 6. HTML5 elements como bloques en navegadores antiguos */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* 7. Imagenes y medios responsivos por defecto */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 8. Mejora la legibilidad */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* 9. Evita que elementos grandes desborden por padding o border */
*:before,
*:after {
  box-sizing: inherit;
}

























