:root {
  --bg-primary: #F8FAFC;
  --bg-card: #ffffff;
  --bg-hover: #F1F5F9;
  --accent: #6366F1;
  --text-pri: #0F172A;
  --text-mut: #64748B;
  --border: #E2E8F0;
  --shadow: 0 1px 3px rgba(0,0,0,.1);
}

[data-theme="dark"] {
  --bg-primary: #0F172A;
  --bg-card: #1E293B;
  --bg-hover: #334155;
  --text-pri: #F1F5F9;
  --text-mut: #94A3B8;
  --border: #334155;
  --shadow: 0 1px 3px rgba(0,0,0,.4);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-pri);
  transition: background-color 0.3s, color 0.3s;
}

/* Sidebar */
.sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 0;
  transition: all 0.3s;
}
.sidebar .nav-link {
  color: var(--text-mut);
  padding: 10px 20px;
  border-radius: 6px;
  margin: 2px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.sidebar .nav-link:hover {
  background: var(--bg-hover);
  color: var(--text-pri);
}
.sidebar .nav-link.active {
  background: var(--accent);
  color: #fff;
}

/* Topbar */
.topbar {
  height: 64px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  justify-content: space-between;
}

/* Componentes */
.card-metric {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.badge-active {
  background: #dcfce7;
  color: #16a34a;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.badge-expired {
  background: #fee2e2;
  color: #dc2626;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.badge-warning {
  background: #fef3c7;
  color: #d97706;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.badge-new {
  background: #dbeafe;
  color: #2563eb;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Pills de filtro */
.pill-filter {
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-mut);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.pill-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Tabela customizada */
.tbl {
  width: 100%;
  background-color: transparent !important;
}
.tbl th {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-mut);
  background-color: var(--bg-hover) !important;
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
}
.tbl td {
  color: var(--text-pri);
  background-color: transparent !important;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  vertical-align: middle;
  padding: 12px 16px;
}

/* Utilitários globais */
.text-muted-custom {
  color: var(--text-mut) !important;
}
.bg-card-custom {
  background-color: var(--bg-card) !important;
}
