/* floating-whatsapp.css */

#floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366; /* WhatsApp green */
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.25s ease;
}

#floating-whatsapp:hover {
  transform: scale(1.08);
}

#floating-whatsapp i {
  font-size: 30px;
}

@media (max-width: 768px) {
  #floating-whatsapp {
    left: 15px;
    bottom: 80px;
    width: 50px;
    height: 50px;
  }
  
  #floating-whatsapp i {
    font-size: 26px;
  }
}

