/* ============================================================
   MOZCONTRATA · Design tokens
   Cores extraídas da logo oficial (contrataicon.png)
   ============================================================ */
:root {
  /* Marca — azul forte */
  --brand-50: #f0f6ff;
  --brand-100: #dbe8ff;
  --brand-200: #b6ccff;
  --brand-300: #84a8ff;
  --brand-400: #4d7dff;
  --brand-500: #0a56e6;
  --brand-600: #0047c9;
  --brand-700: #063a9e;
  --brand-800: #0d2b66;
  --brand-900: #0b1d3a;
  --brand-950: #081226;

  /* Destaque — laranja da gravata (usar com moderação) */
  --accent-500: #ff5000;
  --accent-600: #e64700;
  --accent-100: #ffe6d9;

  /* Neutros */
  --ink: #101820;
  --ink-soft: #3d4756;
  --slate: #5b6575;
  --slate-2: #8b95a5;
  --line: #e3e8f0;
  --line-soft: #ecf0f6;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef2f8;

  /* Tipografia */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.8125rem;
  --fs-md: 0.9375rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.3125rem;
  --fs-2xl: 1.625rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.625rem;
  --fs-hero: clamp(2.25rem, 4.6vw, 3.5rem);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 32, 0.05);
  --shadow-md: 0 1px 2px rgba(16, 24, 32, 0.05),
    0 6px 20px rgba(16, 24, 32, 0.07);
  --shadow-lg: 0 2px 6px rgba(16, 24, 32, 0.06),
    0 18px 48px rgba(16, 24, 32, 0.12);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 5rem;
  --space-16: 7rem;

  --container: 78rem;
  --nav-h: 4.25rem;

  --ok: #16a34a;
  --warn: #d97706;
  --danger: #dc2626;
  --info: var(--brand-500);

  --transition: 0.16s cubic-bezier(0.4, 0, 0.2, 1);

  color-scheme: light;
}