/* ===== Design Tokens =====
   Tokens compartilháveis com o Compass (cores, radius, sombras, layout).
   Quando o portal for absorvido pelo Compass, troca-se este arquivo —
   não as regras do style.css. */

:root {
  --sh-blue: #1d4ed8;
  --sh-blue-light: #2563eb;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --bg: #0e1726;
  --bg-card: #162035;
  --bg-surface: #1c2842;
  --bg-elevated: #203252;
  --sidebar-bg: #0a1120;
  --sidebar-hover: rgba(59,130,246,.13);
  --sidebar-active-bg: rgba(59,130,246,.18);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);
  --success: #22c55e;
  --success-bg: rgba(34,197,94,.15);
  --warning: #f59e0b;
  --warning-bg: rgba(245,158,11,.15);
  --danger: #ef4444;
  --danger-bg: rgba(239,68,68,.15);
  --neutral: #475569;
  --radius: 8px;
  --radius-lg: 10px;
  --shadow: 0 1px 4px rgba(0,0,0,.4);
  --shadow-md: 0 4px 14px rgba(0,0,0,.5);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.6);
  --header-h: 54px;
  --sidebar-w: 216px;
  --transition: 120ms ease;
}

:root[data-theme="light"] {
  --bg: #f1f5f9;
  --bg-card: #ffffff;
  --bg-surface: #f8fafc;
  --bg-elevated: #e2e8f0;
  --text: #1e293b;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border: rgba(0,0,0,.09);
  --border-strong: rgba(0,0,0,.16);
  --shadow: 0 1px 4px rgba(0,0,0,.10);
  --shadow-md: 0 4px 14px rgba(0,0,0,.14);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.20);
}
