/* ============================================================================
   Capi Când-IA Pro — Bell (Fase 1)
   Sino com dot dourado quando há notificações novas.
   ============================================================================ */

.ds-bell {
  position: relative;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--ds-text-2);
  padding: 7px;
  border-radius: var(--ds-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ds-trans-fast);
}

.ds-bell:hover {
  color: var(--ds-text);
  border-color: rgba(255,255,255,0.18);
}

.ds-bell svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.ds-bell-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-radius: var(--ds-radius-full);
  background: var(--ds-gold);
  box-shadow: 0 0 6px rgba(212,160,23,0.7);
  pointer-events: none;
}
