/* ============================================================
   reset.css
   Browser normalization. Cero tokens, cero opiniones de marca.
   Solo lo mínimo para que el resto de CSS no luche contra los UAs.
============================================================ */

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

html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
}
img, svg, video, canvas { display: block; max-width: 100%; }

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

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