/* Design tokens — Dashboard GLOBUS
   Tema claro é o padrão em :root; [data-theme="dark"] sobrescreve. */

:root {
  --font-sans: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Superfícies */
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-sidebar: #ffffff;
  --bg-topbar: #ffffff;
  --bg-hover: #f1f5f9;
  --border: #e2e8f0;

  /* Texto */
  --text: #0f172a;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  /* Marca */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #dbeafe;

  /* Status */
  --pago: #2563eb;
  --vencido: #dc2626;
  --naovencido: #94a3b8;
  --cancelado: #475569;
  --vencido-soft: #fee2e2;
  --online: #16a34a;
  --offline: #dc2626;

  /* Forma */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  /* Sombra */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, .08);

  /* Layout */
  --sidebar-width: 248px;
  --sidebar-width-collapsed: 68px;
  --topbar-height: 64px;

  --transition: 160ms ease;
}

:root[data-theme="dark"] {
  --bg: #0f172a;
  --bg-elevated: #1e293b;
  --bg-sidebar: #1e293b;
  --bg-topbar: #1e293b;
  --bg-hover: #263449;
  --border: #334155;

  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-inverse: #0f172a;

  --primary: #3b82f6;
  --primary-hover: #60a5fa;
  --primary-soft: #1e3a5f;

  --pago: #3b82f6;
  --vencido: #f87171;
  --naovencido: #64748b;
  --cancelado: #94a3b8;
  --vencido-soft: #3f1d1d;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .35);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, .45);
}
