/* CSS Document */
.maps-section {
  padding: 20px 0;
}

.map-card {
  margin-bottom: 80px;
}

.map-card-head {
  max-width: 640px;
  margin-bottom: 24px;
}

.map-card-head h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.map-card-head p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

/* CONTENEDOR DEL MAPA */
.map-card-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;

  /* look editorial */
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* iframe limpio */
.map-card-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* overlay sutil para integrar mejor */
.map-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0) 40%
  );
}

