.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.contact-card {
  padding: 16px 20px;
  border-radius: 12px;
  background: #f7f7f7; /* cámbialo según tu diseño */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-phone {
  margin: 4px 0;
  font-weight: 500;
}

.contact-mail {
  color: #c0392b; /* coral / rojo suave */
  font-weight: 600;
  text-decoration: none;
}

.contact-mail:hover {
  text-decoration: underline;
}
