/* Botão flutuante de suporte (MyLeads + Chatwoot) */

#myleads-support-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background-color: var(--neutral-1100);
  box-shadow: 0 8px 24px rgba(15, 22, 30, 0.24);
  cursor: pointer;
  z-index: 2000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#myleads-support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 22, 30, 0.32);
}

#myleads-support-button:active {
  transform: translateY(0);
}

#myleads-support-button img {
  width: 32px;
  height: 32px;
  pointer-events: none;
}

@media (max-width: 480px) {
  #myleads-support-button {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  #myleads-support-button img {
    width: 28px;
    height: 28px;
  }
}
