/* Balão flutuante do WhatsApp */
#ziro-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.18);
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  padding: 0;
  animation: pulse 2.5s infinite;
}
#ziro-whatsapp-float:hover {
  background: #22c55e;
  box-shadow: 0 8px 32px rgba(34,197,94,0.18);
  animation-play-state: paused;
}
#ziro-whatsapp-float svg {
  display: block;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
#ziro-whatsapp-float-msg {
  position: fixed;
  bottom: 100px;
  right: 32px;
  background: #fff;
  color: #23272a;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 4px 24px rgba(30,41,59,0.10);
  padding: 16px 22px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 100;
  max-width: 320px;
  min-width: 180px;
  z-index: 1002;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  pointer-events: none;
}
#ziro-whatsapp-float-msg.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 600px) {
  #ziro-whatsapp-float {
    right: 2vw;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  #ziro-whatsapp-float-msg {
    right: 10px;
    bottom: 80px;
    font-size: 0.98rem;
    padding: 12px 14px;
    max-width: 90vw;
  }
} 