#whatsapp-box {
  position: fixed;
  bottom: -100px;
  right: 20px;
  z-index: 9999;
  transition: bottom 0.5s ease;
}
#whatsapp-box.show {bottom:20px;}
.whatsapp-inner {
  background-color: #075E54;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 12px rgba(7, 94, 84, 0.8);
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
  animation: pulseShadow 2.5s infinite;
}
.whatsapp-icon {width:24px;height:24px;}
.whatsapp-text {white-space:nowrap;}
@keyframes pulseShadow {
  0% {
    box-shadow: 0 0 10px rgba(7, 94, 84, 0.6);
  }
  50% {
    box-shadow: 0 0 20px rgba(7, 94, 84, 1);
  }
  100% {
    box-shadow: 0 0 10px rgba(7, 94, 84, 0.6);
  }
}
@media (max-width: 768px) {
  .whatsapp-text {font-size:1.2rem;}
  #whatsapp-box {left:50%;right:auto;transform:translateX(-50%);}
}