.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 1.25rem;
  background: #0f0f1a;
  border: 1px solid #1e1e2e;
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
}

.tab {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 7px;
  border: none;
  color: #555570;
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
}

.tab.active {
  background: #7c3aed;
  color: white;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.filtros {
  display: flex;
  gap: 5px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filtros button {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid #1e1e2e;
  color: #444458;
  background: transparent;
  cursor: pointer;
  transition: all .2s;
}

.filtros button:hover { border-color: #3d2070; color: #a78bfa; }

.filtros button.active {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  border-color: #3d2070;
}