/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.whatsapp-float a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: #25D366; /* Color original de WhatsApp */
  color: white;
  border-radius: 50px; /* Cambiado a 50px para permitir expansión rectangular */
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8); /* Efecto neón verde */
  transition: all 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
}

.whatsapp-float span {
  opacity: 0;
  max-width: 0;
  transition: all 0.4s ease;
  font-weight: bold;
  font-size: 18px;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  width: 130px;
  justify-content: flex-start;
  padding-left: 10px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 1), 0 0 20px rgba(37, 211, 102, 0.8);
  background-color: #2FE075; /* Verde ligeramente más claro */
}

.whatsapp-float a:hover span {
  opacity: 1;
  max-width: 150px;
  margin-left: 8px;
}

.whatsapp-float i {
  font-size: 44px; /* u00cdcono mu00e1s grande */
  min-width: 44px;
  margin-left: 10px; /* Ajustado para compensar el tamau00f1o mayor */
}

.whatsapp-float .pulse {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ocultar en dispositivos móviles */
@media only screen and (max-width: 600px) {
  .whatsapp-float {
    display: none;
  }
} 