/* Contact page — icon cards (no form) */

body.contact-page #contact {
  padding: 80px 0 90px;
}

body.contact-page #contact .section-title .lead {
  max-width: 560px;
  margin: 0 auto 48px;
  color: #64748b;
  line-height: 1.7;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(15, 20, 25, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 20, 25, 0.12);
}

.contact-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  line-height: 72px;
  border-radius: 50%;
  background: #e11d24;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(225, 29, 36, 0.3);
}

.contact-card__icon--muted {
  background: #0f1419;
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.2);
}

.contact-card__icon--whatsapp {
  background: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.contact-card a.contact-link--whatsapp {
  color: #128c7e;
}

.contact-card a.contact-link--whatsapp:hover {
  color: #25d366;
}

.contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f1419;
  margin: 0 0 12px;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
}

.contact-card a {
  color: #e11d24;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #b91c1c;
  text-decoration: underline;
}

.contact-card .contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.contact-card .contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #0f1419;
  font-size: 20px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-card .contact-social a:hover {
  background: #e11d24;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  body.contact-page #contact {
    padding: 60px 0 70px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
