/**
 * ConfMonit WebCliente — Design Tokens (White Label)
 * Base dark fixa; --brand-* injetada pelo whitelabel.js
 */
:root {
  /* Brand (default verde; sobrescrito pelo franqueado) */
  --brand-primary: #19c37d;
  --brand-primary-hover: #14a86d;
  --brand-primary-active: #109960;
  --brand-primary-soft: rgba(25, 195, 125, 0.12);
  --brand-primary-muted: rgba(25, 195, 125, 0.28);

  /* Backgrounds (fixos — não mudam por franqueado) */
  --background-primary: #070b12;
  --background-secondary: #0b111a;
  --background-tertiary: #101722;

  /* Surfaces */
  --surface: #111923;
  --surface-hover: #151f2b;
  --surface-elevated: #182431;
  --surface-inset: #0d131c;

  /* Text */
  --text-primary: #e8eef5;
  --text-secondary: #a8b3c2;
  --text-muted: #718096;

  /* Borders */
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.24);
  --border-active: var(--brand-primary-muted);

  /* Semantic (independentes da marca) */
  --success: #22c55e;
  --success-soft: rgba(34, 197, 94, 0.15);
  --warning: #f59e0b;
  --warning-soft: rgba(245, 158, 11, 0.15);
  --danger: #ef4444;
  --danger-soft: rgba(239, 68, 68, 0.15);
  --info: #06b6d4;
  --info-soft: rgba(6, 182, 212, 0.15);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);

  /* Motion */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;

  /* Layout */
  --wc-header-h: 3.75rem;
  --wc-sidebar-w: 15.5rem;
  --wc-sidebar-w-collapsed: 4.25rem;

  /* Legacy aliases (compatibilidade wc-theme.css) */
  --wc-primary: var(--brand-primary);
  --wc-primary-dark: var(--brand-primary-active);
  --wc-accent: var(--warning);
  --wc-danger: var(--danger);
  --wc-surface: var(--background-secondary);
  --wc-border: var(--border);
  --wc-text: var(--text-primary);
}
