

.whatsapp-btn:hover{
    text-decoration: none;
    color: #0df053;
    background: #fff;
}


.whatsapp-btn {
    background: #0df053;
    color: #fff;
  position: fixed;
  bottom: 35px;
  left: 35px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  font-size: 28px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
















.tooltip-container {
    position: relative; /* Necesario para posicionar el tooltip */
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden; /* Oculto por defecto */
  width: 190px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: fixed;
  z-index: 1001;
  left: 160px;
  bottom: 50px;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s; /* Efecto suave */
}

.tooltip-container:hover .tooltip-text {
  visibility: visible; /* Muestra el tooltip al pasar el cursor */
  opacity: 1;
}