/* ==========================================================================
   D&F Services SPA — Design tokens
   Copiado literalmente desde /dyf_website/src/styles/tokens.css
   ========================================================================== */

:root {
  /* Brand palette */
  --color-primary: #0d426c;
  --color-primary-50: #eaf1f7;
  --color-primary-100: #cfddea;
  --color-primary-200: #9fbcd5;
  --color-primary-300: #6f9bc1;
  --color-primary-400: #3f79ac;
  --color-primary-500: #0d426c;
  --color-primary-600: #0a3558;
  --color-primary-700: #082844;

  --color-navy: #0c1f2d;
  --color-navy-2: #0e1b2e;
  --color-navy-3: #14283b;

  --color-gray: #a1a1a1;
  --color-gray-soft: #d8dde3;
  --color-light: #f5f7fa;
  --color-light-2: #eef2f6;

  --color-white: #ffffff;
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-border: #e3e7ec;
  --color-success: #2f855a;
  --color-error: #c53030;

  /* Status helpers (añadidos para esta webapp) */
  --color-warning: #c97a1a;
  --color-warning-bg: #fdf3e3;
  --color-success-bg: #e6f4ed;
  --color-error-bg: #fdecec;
  --color-info-bg: #eaf1f7;

  /* Typography */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Manrope', 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fs-12: 0.75rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-30: 1.875rem;
  --fs-36: 2.25rem;
  --fs-44: 2.75rem;
  --fs-52: 3.25rem;
  --fs-60: 3.75rem;

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

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

  --ls-tight: -0.02em;
  --ls-snug: -0.01em;
  --ls-wide: 0.04em;
  --ls-wider: 0.12em;

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 880px;
  --container-wide: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 30, 45, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 30, 45, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 30, 45, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 30, 45, 0.12);

  /* Transitions */
  --t-fast: 160ms ease;
  --t-base: 240ms ease;
  --t-slow: 400ms ease;

  /* Header */
  --header-height: 76px;
  --sidebar-width: 240px;
}
