/* ============================================================================
   BRAND SWITCH — dropdown de marcas no topbar
   ============================================================================ */
.cf-brand-switch {
  position: relative;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--border, #e2e8f0);
}
.cf-brand-btn {
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  transition: background 120ms;
}
.cf-brand-btn:hover { background: var(--s2, #f8fafc); }
.cf-brand-btn i { width: 14px; height: 14px; color: var(--t2); }
.cf-brand-name { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cf-brand-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.cf-brand-pop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--bg, #fff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
  z-index: 200;
  display: flex; flex-direction: column;
  animation: brand-pop 120ms ease-out;
}
@keyframes brand-pop {
  from { transform: translateY(-4px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cf-brand-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  border-radius: 6px;
  text-align: left;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
}
.cf-brand-item:hover { background: var(--s2, #f8fafc); }
.cf-brand-item.is-active { font-weight: 600; }
.cf-brand-item i { width: 14px; height: 14px; color: var(--brand, #1E5BAA); margin-left: auto; }
