/* Botão flutuante WhatsApp — mobile e desktop */
.colibex-whatsapp-float {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 20px;
  bottom: 48px;
  z-index: 10100;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  text-decoration: none;
}

.colibex-whatsapp-float:hover,
.colibex-whatsapp-float:focus {
  color: #fff;
  text-decoration: none;
}

.colibex-whatsapp-float svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
  pointer-events: none;
}

.colibex-whatsapp-float--draggable {
  touch-action: none;
  cursor: grab;
  -webkit-user-drag: none;
  user-drag: none;
}

.colibex-whatsapp-float--draggable.colibex-whatsapp-float--dragging {
  cursor: grabbing;
  transition: none;
  transform: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  opacity: 0.92;
}

@media (min-width: 992px) {
  .colibex-whatsapp-float {
    width: 60px;
    height: 60px;
    right: 28px;
    bottom: 28px;
    z-index: 9990;
  }

  .colibex-whatsapp-float:hover,
  .colibex-whatsapp-float:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  }

  .colibex-whatsapp-float svg {
    width: 34px;
    height: 34px;
  }
}
