/* ============================================================
 * theme.css — Personalização visual do sistema
 * ------------------------------------------------------------
 * Edite as variáveis abaixo para mudar cores, logo e nome.
 * Esse arquivo é carregado DEPOIS do style.css, então sempre
 * sobrescreve os valores padrão.
 * ============================================================ */

:root {
  /* ====== CORES PRINCIPAIS ====== */

  /* Cor de destaque (botões primários, links, indicador do menu ativo) */
  --primary: #4f46e5;
  --primary-hover: #4338ca;

  /* SIDEBAR (menu lateral esquerdo) */
  --sidebar-bg: #0f172a;
  --sidebar-bg-hover: rgba(255,255,255,0.06);
  --sidebar-active: #6366f1;
  --sidebar-active-bg: rgba(99, 102, 241, 0.15);
  --sidebar-text: #94a3b8;
  --sidebar-text-active: #ffffff;

  /* Fundo geral das páginas */
  --body-bg: #f1f5f9;
}

/* ============================================================
 * EXEMPLOS DE PALETAS PRONTAS
 * Copie um dos blocos abaixo SOBRE o :root acima
 * para mudar a paleta inteira de uma vez.
 * ============================================================ */

/* ---------- 🟢 VERDE CORPORATIVO ----------
:root {
  --primary: #059669;  --primary-hover: #047857;
  --sidebar-bg: #064e3b;
  --sidebar-active: #10b981;
  --sidebar-active-bg: rgba(16, 185, 129, 0.18);
}
*/

/* ---------- 🟠 LARANJA INDUSTRIAL ----------
:root {
  --primary: #ea580c;  --primary-hover: #c2410c;
  --sidebar-bg: #1c1917;
  --sidebar-active: #f97316;
  --sidebar-active-bg: rgba(249, 115, 22, 0.18);
}
*/

/* ---------- 🔵 AZUL CLÁSSICO ----------
:root {
  --primary: #2563eb;  --primary-hover: #1d4ed8;
  --sidebar-bg: #1e3a8a;
  --sidebar-active: #3b82f6;
  --sidebar-active-bg: rgba(59, 130, 246, 0.2);
}
*/

/* ---------- 🟣 ROXO ENEVA ----------
:root {
  --primary: #7c3aed;  --primary-hover: #6d28d9;
  --sidebar-bg: #1e1b4b;
  --sidebar-active: #a78bfa;
  --sidebar-active-bg: rgba(167, 139, 250, 0.2);
}
*/

/* ---------- ⚫ MONOCROMÁTICO ELEGANTE ----------
:root {
  --primary: #1f2937;  --primary-hover: #111827;
  --sidebar-bg: #111827;
  --sidebar-active: #6b7280;
  --sidebar-active-bg: rgba(255, 255, 255, 0.1);
}
*/
