/* ───────────────────────────────────────────────────────────────────────────────
   PÁGINA: CONTACTO
   ─────────────────────────────────────────────────────────────────────────────── */

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0a3a6a 60%, #0077cc 100%);
  padding: 180px 0 110px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-bg) center/cover;
  opacity: .14;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.page-hero p {
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: .95;
  line-height: 1.8;
}

.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.page-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* ── Grilla de contacto ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card,
.map-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, .08);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

/* ── Lista de información de contacto ── */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.3rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-info-item i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: .2rem;
}

/* ── Mapa ── */
.map-frame {
  width: 100%;
  height: 380px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

/* ── Highlight de contacto ── */
.contact-highlight {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-top: 2rem;
  padding: 1.8rem;
  background: #eff6ff;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, .18);
}

.contact-highlight h3 {
  margin: 0;
}
