.contact-map {
  position: relative;
  padding: 40px 0 0;
}

.contact-map__band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: var(--color-text);
  /* banda oscura como en el diseño */
  z-index: 0;
}

.contact-map__container {
  position: relative;
  z-index: 1;
}

.contact-map__card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  background: var(--color-primary);
  /* gris claro de fondo */
  border-radius: 8px;
  overflow: hidden;
}

.contact-map__info {
  padding: 40px 48px;
}

.contact-map__title {
  margin: 0 0 8px;
  color: var(--color-background);
}

.contact-map__block+.contact-map__block {
  margin-top: 36px;
}

.contact-map__text {
  color: var(--color-background);
  opacity: 0.85;
  margin: 0 0 10px;
}

.contact-map__map {
  min-height: 360px;
}

.contact-map__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Banda inferior con frases */
.contact-map__cta-band {
  background: var(--color-text);
  color: #fff;
  padding: 46px 0 70px;
}

.contact-map__cta-wrapper {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1140px;
}

.contact-map__cta-item {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}

.contact-map__cta-item+.contact-map__cta-item {
  text-align: right;
}

.contact-map__cta-item+.contact-map__cta-item:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, .3);
}

@media (max-width: 992px) {
  .contact-map__cta-band {
    padding: 40px 0 56px;
  }

  .contact-map__cta-wrapper {
    flex-direction: column;
    gap: 28px;
  }

  .contact-map__cta-item+.contact-map__cta-item {
    text-align: left;
  }

  .contact-map__cta-item+.contact-map__cta-item:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .contact-map {
    padding: 24px 0 64px;
  }

  .contact-map__band {
    height: 120px;
  }

  .contact-map__card {
    grid-template-columns: 1fr;
  }

  .contact-map__info {
    padding: 28px 24px;
  }
}