.arcomet-wa-float {
  position: fixed;
  right: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 7px 8px 7px 18px;
  color: #fff;
  background: #075e54;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
  font-family: inherit;
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  animation: arcomet-wa-attention 5.8s ease-in-out 1.8s infinite;
}

.arcomet-wa-float:hover {
  color: #fff;
  background: #087a6d;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.arcomet-wa-float:focus-visible {
  outline: 3px solid #ffb000;
  outline-offset: 5px;
}

.arcomet-wa-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.arcomet-wa-copy small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.arcomet-wa-copy strong {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.arcomet-wa-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #075e54;
  background: #fff;
  border-radius: 50%;
}

.arcomet-wa-icon::before,
.arcomet-wa-icon::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  border: 2px solid rgba(37, 211, 102, 0.55);
  border-radius: inherit;
  opacity: 0;
  animation: arcomet-wa-pulse 2.4s ease-out 1.2s infinite;
}

.arcomet-wa-icon::after {
  animation-delay: 2s;
}

.arcomet-wa-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.footer-grid {
  grid-template-columns: 1.35fr 0.7fr 1fr 0.75fr;
  gap: clamp(34px, 4.5vw, 72px);
}

.footer-grid > .arcomet-social-added {
  min-width: 150px;
}

.arcomet-social-links {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}

.footer-grid .arcomet-social-link {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #9cafbf;
  background: rgba(78, 155, 197, 0.08);
  border: 1px solid rgba(126, 166, 190, 0.3);
  border-radius: 50%;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.footer-grid .arcomet-social-link:hover {
  color: #071524;
  background: #ffb000;
  border-color: #ffb000;
  transform: translateY(-3px);
}

.footer-grid .arcomet-social-link:focus-visible {
  color: #071524;
  background: #ffb000;
  outline: 3px solid rgba(255, 176, 0, 0.42);
  outline-offset: 3px;
}

.arcomet-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-grid .arcomet-social-caption {
  margin-top: 3px;
  color: #60798b;
  font-size: 11px;
}

@keyframes arcomet-wa-attention {
  0%,
  72%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  76% {
    transform: translate3d(-5px, 0, 0) rotate(-1deg);
  }
  80% {
    transform: translate3d(4px, 0, 0) rotate(1deg);
  }
  84% {
    transform: translate3d(-3px, 0, 0);
  }
  88% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes arcomet-wa-pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.92);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .arcomet-wa-float {
    width: 58px;
    min-height: 58px;
    padding: 5px;
  }

  .arcomet-wa-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .arcomet-wa-icon {
    width: 48px;
    height: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .arcomet-wa-float,
  .arcomet-wa-icon::before,
  .arcomet-wa-icon::after {
    animation: none;
  }
}
