/* ========================================
   reset.css — normalizacion basica
   ======================================== */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui, 'Inter', system-ui, -apple-system, sans-serif);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-display, 'Fredoka', system-ui, sans-serif);
  line-height: 1.2;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}

input, select {
  font-family: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent, #C9A96E);
  color: var(--bg-primary, #1B3A1B);
}
