/* ============================================================
   QAD Calidad — Base
   Reset, box-sizing, tipografía base y elementos sin clase
   (body, headings, enlaces). No declarar aquí componentes ni
   utilidades — ver components/ y utilities.css.
   ============================================================ */

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

html {
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
}

body {
  background: var(--color-bg);
  color: var(--color-text-body);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
input, textarea, select, button { font-family: inherit; }

/* Ítems en versalitas: navegación y etiquetas en mayúsculas de la guía de
   marca (nunca las cifras de paneles de estadísticas, que van en texto
   normal — ver components/cards.css) */
.small-caps {
  font-variant: small-caps;
  letter-spacing: 0.04em;
}
