.btnJanem {
  background-color: #fab02d;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btnJanemBlue {
  background-color: rgb(0, 92, 155);
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.bgJanem {
  background-color: #fab02d;
}

.bgJanemBlue {
  background-color: rgb(23, 60, 86);
}

.bgJanemBlue2 {
  background-color: rgb(0, 92, 155);
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-5px);
  }
  40%,
  80% {
    transform: translateX(5px);
  }
}
.animate-shake {
  /* Duración aumentada para que la animación se vea un poco más */
  animation: shake 0.8s ease-in-out;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 99999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}
