.whatsapp-float {
    position: fixed;
    z-index: 1000;
    bottom: 120px;
    right: 5px;
    width: 45px;
    height: 45px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease; /* Transición suave al pasar el ratón */
    animation: echoEffect 1.5s ease-in-out infinite; /* Aplica la animación desde el inicio */
}

.whatsapp-float:hover {
    background-color: #128c7e; /* Color más oscuro al pasar el ratón */
    text-decoration: none; /* Quita el subrayado del enlace */
    color: #fff; /* Mantiene el color del icono */
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
}


/* Efecto de eco parpadeante moderado */
@keyframes echoEffect {
   0% {
     box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); /* Sombra más intensa */
     transform: scale(1);
   }
   50% {
     box-shadow: 0 0 15px 7px rgba(37, 211, 102, 0.4); /* Sombra más grande */
     transform: scale(1.1); /* Aumento moderado */
   }
   100% {
     box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); /* Sombra más intensa */
     transform: scale(1);
   }
}

[data-title]:hover::after {
  display: block;
  position: absolute;
  content: attr(data-tooltip);
  border: 1px solid black;
  background: #eee;
  padding: .25em;
}

/* Tooltip del Wsp */
.wa__btn_popup .wa__btn_popup_txt {
  background-color: #f5f7f9;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  color: #43474e;
  font-size: 12px;
  letter-spacing: -.04em;
  line-height: 1.2;
  margin-right: 7px;
  padding: 8px 12px;
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  width: 125px;
  height: 45px;
}

.wa__btn_popup {
  bottom: 140px;
  cursor: pointer;
  font-family: Arial,Helvetica,sans-serif;
  position: fixed;
  right: 50px;
  /* z-index: 999999999; */
  z-index: 1000;
}