.Btn-whatsApp {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #00d757;
  text-decoration: none;
}

.sign-whatsApp {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG del icono */
.sign-whatsApp svg {
  width: 25px;
}

.sign-whatsApp svg path {
  fill: white;
}

/* Texto oculto por defecto */
.text-whatsApp {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
  white-space: nowrap;
}
.Btn-whatsApp:hover {
  width: 150px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.Btn-whatsApp:hover .sign-whatsApp {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.Btn-whatsApp:hover .text-whatsApp {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}


.Btn-whatsApp:active {
  transform: translate(2px, 2px);
}

.Btn-whatsApp-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
