.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal small {
  font-size: .72rem;
}

.footer-legal small:first-child {
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
}

.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #082d18;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

.whatsapp-button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #128c4a;
  font-size: 1.2rem;
  font-weight: 800;
}

.whatsapp-button strong {
  font-size: .9rem;
}

@media (max-width: 600px) {
  .whatsapp-button {
    right: 14px;
    bottom: 78px;
    padding: 11px;
  }

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