/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 150px;
  z-index: 15;
  cursor: pointer;
  filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
  }
  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}
/* Fim Botão Flutuante WhatsApp */