body[data-page="contato"] .content-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

body[data-page="contato"] .content-card .contact-icon {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 0;
  color: var(--pink);
}

body[data-page="contato"] .contact-icon svg {
  width: 58px;
  height: 58px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="contato"] .contact-icon .contact-icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-feedback {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 30px);
  padding: 11px 18px;
  transform: translate(-50%, 12px);
  border-radius: 6px;
  background: #17171b;
  color: #fff;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.contact-feedback.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page="contato"] .content-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 0, 99, .26);
    box-shadow: 0 14px 30px rgba(75, 23, 45, .12);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="contato"] .content-card,
  .contact-feedback {
    transition: none;
  }

  body[data-page="contato"] .content-card:hover {
    transform: none;
  }
}

@media (max-width: 767px) {
  body[data-page="contato"] .content-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body[data-page="contato"] .content-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body[data-page="contato"] .content-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
