/*! minireset.css v0.1 | Custom by PADHEC & ChatGPT | MIT License */

/* Reset de márgenes y paddings comunes */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/* Tipografía base sin peso ni tamaño heredado por defecto */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* Quitar viñetas en listas */
ul,
ol {
  list-style: none;
}

/* Inputs base */
button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Box sizing universal */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Imágenes y video con dimensiones fluidas */
img,
video {
  height: auto;
  max-width: 100%;
  display: block;
}

/* Iframes sin borde */
iframe {
  border: 0;
}

/* Tablas sin espacio entre celdas */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Celdas sin padding extra */
td,
th {
  padding: 0;
  text-align: left;
}

/* Añadido: elementos semánticos de HTML5 con display block (por compatibilidad máxima) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}