/* Traducido de docs/design-tokens.json v1.0.0 */
:root {
  /* ── Colors: Brand ── */
  --color-primary: #e32122;
  --color-accent: #ecff2e; /* Solo sobre fondos oscuros */
  --color-accent-safe: #7a8b00; /* Variante accesible sobre fondos claros */

  /* ── Colors: Neutral ── */
  --neutral-0: #ffffff;
  --neutral-50: #f5f4f0;
  --neutral-100: #eceae4;
  --neutral-200: #d8d7cf;
  --neutral-400: #8a8980;
  --neutral-600: #57564f;
  --neutral-800: #1f1e1b;
  --neutral-900: #111111;
  --neutral-950: #0b0a08;

  /* ── Colors: Surface ── */
  --surface-dark-1: #1f1e1b;
  --surface-dark-2: #2c2b27;
  --surface-light-1: #ffffff;
  --surface-light-2: #f5f4f0;

  /* ── Colors: Interactive ── */
  --interactive-primary: #ecff2e;
  --interactive-primary-hover: #d4e629;
  --interactive-primary-active: #b5c41f;
  --interactive-primary-disabled: #8a8980;
  --interactive-secondary: #2c2b27;
  --interactive-secondary-hover: #111111;
  --interactive-focus-ring: #ecff2e;
  --interactive-whatsapp: #25d366;

  /* ── Colors: Semantic ── */
  --color-success: #2a7d3b;
  --color-warning: #b45309;
  --color-error: #b91c1c;
  --color-info: #1d4ed8;

  /* ── Colors: Text ── */
  --text-on-dark: #ffffff;
  --text-on-dark-secondary: #8a8980;
  --text-on-dark-muted: #57564f;
  --text-on-light: #111111;
  --text-on-light-secondary: #57564f;
  --text-on-light-muted: #8a8980;
  --text-on-accent: #0b0a08;

  /* ── Typography ── */
  --font-sans: Inter, system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", Menlo, Consolas, monospace;

  --text-2xs: 0.6875rem;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  --tracking-tighter: -0.04em;
  --tracking-tight: -0.02em;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.08em;
  --tracking-caps: 0.12em;

  /* ── Spacing (base 8px) ── */
  --space-0: 0px;
  --space-px: 1px;
  --space-0-5: 4px;
  --space-1: 8px;
  --space-1-5: 12px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;
  --space-20: 160px;
  --space-24: 192px;

  /* ── Border ── */
  --radius-none: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  --border-default: #d8d7cf;
  --border-strong: #8a8980;
  --border-focus: #ecff2e;
  --border-error: #b91c1c;

  /* ── Shadows ── */
  --shadow-none: none;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.12), 0 1px 2px -1px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.14), 0 2px 4px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.18), 0 4px 8px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.22);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.08);

  /* ── Motion ── */
  --duration-fast: 100ms;
  --duration-normal: 200ms;
  --duration-slow: 300ms;
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-enter: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --transition: var(--duration-normal) var(--ease-default);

  /* ── Layout ── */
  --container-max: 1280px;
  --sidebar-width: 260px;
}
