/* Estilos botón Whatsapp */

.whatsapp-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  align-items: center;
  z-index: 100000;
  gap: 10px;
}

.whatsapp-button {
  background: linear-gradient(135deg, #3a1272 0%, #008dc6 100%);
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 50px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

.whatsapp-button:hover {
  background: linear-gradient(135deg, #008dc6 0%, #3a1272 100%);
  transform: scale(1.05);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.whatsapp-button svg {
  width: 25px;
  height: 25px;
}

.whatsapp-message {
  background: linear-gradient(135deg, #3a1272 0%, #008dc6 100%);
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 1px 4px rgba(33, 37, 41, 0.25);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease, transform 1s ease;
  white-space: nowrap;
  visibility: hidden;
}

.whatsapp-message.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.whatsapp-message.hide {
  opacity: 0;
  transform: translateX(-30px);
  visibility: hidden;
  transition: opacity 1s ease, transform 1s ease, visibility 1s;
}

