/* Reset moderno · base sólida para todo */

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

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    /* clip (no hidden): corta el desborde horizontal SIN crear scroll-container.
       hidden convertía html/body en scroll-container y hacía parpadear las cards
       position:sticky al scrollear (se veía la tarjeta de debajo). */
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    line-height: 1.5;
    font-family: var(--font-sans);
    color: var(--zander-black);
    background: var(--white);
    overflow-x: clip;
}

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

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

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

ul, ol { padding: 0; margin: 0; list-style: none; }

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

button { background: none; border: none; cursor: pointer; padding: 0; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
