/* <!-- reset.css - Minimal Reset --> */
/* 1) Box sizing moderno */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2) Eliminar márgenes por defecto y asegurar altura base */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    /* legibilidad */
    -webkit-text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    color: inherit;
    background: transparent;
}

/* 3) Imágenes, videos, iframes: responsivos y sin overflow */
img,
picture,
video,
canvas,
svg,
iframe {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 4) Enlaces y texto */
a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

a:focus,
a:hover {
    outline-offset: 2px;
}

/* 5) Tipografía más consistente para headings y párrafos */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: inherit;
}

/* 6) Listas sin estilos por defecto */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 7) Tablas limpias */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 8) Formularios y controles (heredan fuentes y se neutralizan apariencias) */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    border: none;
    /* appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; */
    box-shadow: none;
    outline: none;
}

textarea {
    resize: none;
    overflow: auto;
}

button {
    cursor: pointer;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/* 14) Valores por defecto para layout moderno */
:root {
    --max-content-width: 1200px;
    --gutter: 1rem;
}