.sea-wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.sea-wa-float img {
  /* width: 34px;
  height: 34px; */
  display: block;
}

.sea-wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
}

.sea-wa-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
  animation: seaWaPulse 2s infinite;
  z-index: -1;
}

@keyframes seaWaPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .sea-wa-float {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  /* .sea-wa-float svg {
    width: 30px;
    height: 30px;
  } */
}