/* WhatsApp Floating Button */

.whatsapp-float {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-50%) scale(1.15);
}

.whatsapp-float img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .whatsapp-float img {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 20px;
    top: auto;
    transform: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.15);
  }

  .whatsapp-float img {
    width: 60px;
    height: 60px;
  }
}
