/* =========================================================================
   reset.css — Reset moderno y ligero. Sin dependencias, sin decoración.
   Objetivo: neutralizar estilos por defecto del navegador.
   La identidad visual se aplica en base.css.
   ========================================================================= */

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

* {
    margin: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
}

/* Los headings recuperan tamaño/peso en base.css */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Listas marcadas explícitamente como lista de contenido */
ul[role="list"],
ol[role="list"] {
    list-style: none;
    padding: 0;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
    background: none;
    border: 0;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

[hidden] {
    display: none !important;
}
