/**************icono wasap***************/
/****************************** boton wasap************************/

.whatsapp-floating {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-50%) scale(1.1);
}

.whatsapp-floating img {
  width: 32px;
  height: 32px;
}

/* Ocultar en pantallas pequeñas */
@media (max-width: 768px) {
  .whatsapp-floating {
    display: none;
  }
}