/*botón Whatsapp flotante */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  /* z-index: 9999; */
  z-index: 1000;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.whatsapp-button:hover {
  transform: scale(1.05);
  background-color: #1ebe5b;
}
.whatsapp-button img {
  display: block;
}

.phone-link {
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #002d72 !important;
}
