/* === Reset CSS Moderno === */

/* Quitar márgenes y paddings por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Asegurar que HTML y body ocupen toda la pantalla */
html, body {
    height: 100%;
}

/* Heredar tipografía y mejorar renderizado */
body {
    font-family: inherit;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Quitar estilo predeterminado a listas */
ul, ol {
    list-style: none;
}

/* Quitar estilos por defecto en botones e inputs */
button, input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}

/* Quitar subrayado y colores por defecto en enlaces */
a {
    text-decoration: none;
    color: inherit;
}

/* Asegurar imágenes responsivas */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* Quitar bordes de tablas */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Evitar que elementos tipográficos rompan el layout */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
