/* ========================================
   FCamargo — Design Tokens Globais
   Carregado antes de todos os outros CSS.
   ======================================== */

:root {
  /* Cores base */
  --white: #ffffff;
  --gray-light: #f5f5f7;
  --gray: #8a8a8e;
  --dark: #1c1c1e;

  /* Aliases para compatibilidade (usados em financeiro, relatorios, editar-pedido) */
  --text: #1c1c1e;
  --text-muted: #8a8a8e;
  --border: #e8e8e8;

  /* Cores accent */
  --accent1: #e84c3d;
  --accent2: #f39c12;
  --accent3: #27ae60;
  --accent4: #2980b9;
  --accent5: #8e44ad;

  /* Backgrounds semânticos (danger, warning, success, info, purple) */
  --bg-red: #fdedec;
  --bg-orange: #fef3e2;
  --bg-green: #eafaf1;
  --bg-blue: #e8f4fd;
  --bg-purple: #f5eef8;

  /* Cores de texto sobre backgrounds semânticos */
  --text-orange: #d68910;

  /* Badges de status de pedido (padronizados) */
  --badge-producao-bg: #fff3cd;
  --badge-producao-text: #856404;
  --badge-concluido-bg: #d4f4e3;
  --badge-concluido-text: #1e6b3e;
  --badge-entregue-bg: #dbeafe;
  --badge-entregue-text: #1d4ed8;

  /* Cores de feedback (sucesso/erro) */
  --bg-sucesso: #dcfce7;
  --text-sucesso: #166534;
  --bg-erro: #fee2e2;
  --text-erro: #b91c1c;

  /* Sombras */
  --shadow-sm: 0 1px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}
