/* ── Reset + Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none; /* Cursor personalizado */
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400; /* Bebas Neue solo tiene regular */
  line-height: .95;
  letter-spacing: .02em;
}

:focus-visible {
  outline: 1px solid var(--color-gold);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* Restaurar cursor en inputs para usabilidad */
input, textarea, select, a, button {
  cursor: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
