/* whatsapp.css */

.whatsapp-float {
   text-decoration: none; /* Elimina el subrayado */
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.3s;
}

.whatsapp-float i {
  color: #fff;
  font-size: 30px;
}

.whatsapp-menu {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 999;
}

.whatsapp-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.whatsapp-menu li {
  margin-bottom: 10px;
}

.whatsapp-menu li a {
  text-decoration: none;
  color: #14d938;
  font-weight: bold;
  transition: opacity 0.3s, text-decoration 0.3s, color 0.3s;
  cursor: pointer;
}

.whatsapp-menu li a:hover {
  opacity: 0.8;
  color: #075e54;
}

.whatsapp-menu textarea {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.whatsapp-menu button {
  width: 100%;
  padding: 10px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.whatsapp-menu button:hover {
  background-color: #128c7e;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Corrige conflicto con Bootstrap */
.whatsapp-menu ul li a,
.whatsapp-menu ul li a:visited {
  color: #25D366 !important; /* Verde WhatsApp */
  background: transparent !important;
  text-decoration: none !important;
}

.whatsapp-menu ul li a:hover {
  color: #128c7e !important;
  text-decoration: underline;
}

.whatsapp-menu ul li a:active {
  color: #128c7e !important;
  transform: scale(0.98);
}
