/* Tipografías base para todo el sitio */
:root{
  --font-sans: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

/* Aplicar globalmente */
html, body, input, select, textarea, button {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tamaños base fluidos */
html { font-size: 16px; }
@media (max-width: 420px){ html { font-size: 15.5px; } }