.whatsapp-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  text-decoration: none; /* Elimina el subrayado del enlace */
}

.whatsapp-flotante i {
  color: #25d366;
  font-size: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-flotante:hover i {
  transform: scale(1.1);
}

/* Media Query para hacerlo responsivo */
@media (max-width: 600px) {
  .whatsapp-flotante {
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-flotante i {
    font-size: 40px;
    width: 40px;
    height: 40px;
  }
}