.whatsapp-contact {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 7px 10px;
  border: 1px solid rgba(37, 211, 102, 0.38);
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.1);
  color: #dff9e8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.whatsapp-contact:hover {
  border-color: rgba(37, 211, 102, 0.62);
  background: rgba(37, 211, 102, 0.17);
  transform: translateY(-1px);
}

.whatsapp-contact:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.whatsapp-contact svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-contact {
    transition: none;
  }
}
