/* =============================================================================
   reset.css — De Frente al Futuro
   Complemento al reset de BlankSlate (gaps que no cubre)
   ============================================================================= */


/* ─── Complemento al reset ──────────────────────────────────────────────────── */

/* BlankSlate no resetea color ni text-decoration en links */
a {
    color: inherit;
    text-decoration: none;
}

/* BlankSlate solo limpia appearance en inputs específicos; cubrimos todos */
button,
input,
select,
textarea {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

textarea {
    cursor: text;
    resize: vertical;
}

/* outline en todos los interactivos, no solo button */
:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* img como bloque evita el espacio fantasma de inline */
img,
video,
svg {
    display: block;
    max-width: 100%;
}


