/* Refino visual dos contatos: discreto, leve e coerente com a marca */
.contact-links {
  gap: 12px;
  margin: 28px 0 24px;
}

.contact-link,
.contact-link-primary {
  min-height: 72px;
  grid-template-columns: 40px 1fr 30px;
  gap: 4px 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(42, 39, 34, 0.04);
  backdrop-filter: blur(8px);
}

.contact-link-primary {
  border-color: rgba(210, 177, 203, 0.28);
  background: rgba(210, 177, 203, 0.07);
}

.social-icon-box,
.contact-link-primary .social-icon-box {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 253, 248, 0.68);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 7px 18px rgba(42, 39, 34, 0.12);
}

.social-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(14%) saturate(1143%)
    hue-rotate(38deg) brightness(89%) contrast(91%);
}

.contact-link .social-copy > span,
.contact-link-primary .social-copy > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-link .social-copy > strong,
.contact-link-primary .social-copy > strong {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.contact-link b,
.contact-link-primary b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.88rem;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-link:hover,
.contact-link:focus-visible,
.contact-link-primary:hover,
.contact-link-primary:focus-visible {
  border-color: rgba(210, 177, 203, 0.48);
  background: rgba(255, 255, 255, 0.085);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 30px rgba(42, 39, 34, 0.08);
}

.contact-link:hover b,
.contact-link:focus-visible b {
  border-color: rgba(210, 177, 203, 0.52);
  color: var(--lavender-1);
  transform: rotate(7deg);
}

.footer-right {
  gap: 17px;
}

.footer-social {
  gap: 11px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 253, 248, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-social img {
  width: 16px;
  height: 16px;
  opacity: 0.86;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(255, 253, 248, 0.9);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}

.footer-social a:hover img,
.footer-social a:focus-visible img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(29%) sepia(14%) saturate(1143%)
    hue-rotate(38deg) brightness(89%) contrast(91%);
}

.footer-handle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 550;
  letter-spacing: 0.025em;
}

@media (max-width: 560px) {
  .contact-link,
  .contact-link-primary {
    grid-template-columns: 38px 1fr 28px;
    padding-inline: 13px;
  }
}
