/* Boton Whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  /* distancia desde abajo */
  right: 20px;
  /* distancia desde el borde derecho */
  z-index: 9999;
  /* para que quede arriba de todo */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  /* verde WhatsApp */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}