/* Correções específicas para o botão do WhatsApp */

/* Configuração base do botão do WhatsApp */
.whatsapp-float {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9999 !important;
  display: block !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Quando está oculto */
.whatsapp-float.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.whatsapp-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background-color: #25d366 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  text-decoration: none !important;
  font-size: 1.8rem !important;
  transition: all 0.3s ease !important;
  animation: pulse 2s infinite !important;
}

.whatsapp-btn:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-btn i {
  font-size: 2.5rem !important;
  color: #ffffff !important;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
