/* =========================
SECCIÓN DE CONTACTO
========================= */
.contact {
  background: var(--white-warm);
}

.contact > .container > .muted {
  white-space: nowrap;
  margin-bottom: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--gold-12);
  border-radius: 0;
  padding: 28px;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow-sm);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-bg);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--gold-16);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--gold-tint);
  border-color: var(--gold-24);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-soft);
  fill: none;
}

.contact-icon svg circle {
  fill: var(--gold-soft);
}

.contact-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.contact-card .muted {
  text-align: center;
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.email-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.email-link:hover {
  border-bottom-color: var(--brand);
}

.trust-note {
  margin-top: 40px;
  text-align: center;
}

.trust-note strong {
  color: var(--gold-soft);
}

/* =========================
RESPONSIVE
========================= */

/* MOBILE: 767px y menor */
@media (max-width: 767px) {
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .contact > .container > .muted {
    white-space: normal;
  }
}
