.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 7000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.24);
  animation: whatsappPulse 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.whatsapp-widget:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 32px rgba(197, 160, 89, 0.3);
  opacity: 0.95;
}

.whatsapp-widget-icon {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;
}

@keyframes whatsappPulse {
  0%,
  82%,
  100% {
    transform: scale(1);
  }

  88% {
    transform: scale(1.08);
  }

  94% {
    transform: scale(0.98);
  }
}

@media (max-width: 768px) {
  .whatsapp-widget {
    right: 18px;
    bottom: calc(98px + env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
    box-shadow: 0 10px 22px rgba(197, 160, 89, 0.22);
  }

  .whatsapp-widget-icon {
    width: 56px;
    height: 56px;
  }
}