/* ============================================= */
/* BOTÃO FLUTUANTE DO WHATSAPP                    */
/* ============================================= */
/* Botão fixo no canto inferior direito            */
/* que abre o WhatsApp ao clicar                   */
/* ALTERE a cor e posição aqui                     */
/* ============================================= */

/* Botão flutuante */
.whatsapp-flutuante {
  position: fixed;
  bottom: 30px;           /* Distância do rodapé */
  right: 30px;            /* Distância da lateral */
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;    /* Verde WhatsApp */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsapp-bounce 3s ease infinite;
}

.whatsapp-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Tooltip "Fale Conosco" */
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-flutuante:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
