.mapa_wrap {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.mapa_canvas {
  position: relative;
}

.mapa_popup {
  --pd: 1rem;
  position: absolute;
  z-index: 10;
  min-width: 148px;
  max-width: 220px;
  background: #fff;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.20);
  padding: var(--pd);

  @media (width >=1200px) {
    --pd: 1.5rem;
  }
}

.mapa_popup--galicia {
  --cols: 2;
  --max-w: 100%;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  gap: var(--padding-10);

  @media (width >=1200px) {
    --cols: 3;
    --max-w: 800px;
    gap: var(--padding-20);
  }
}

.mapa_popup_img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.mapa_popup_tit {
  font-size: var(--fs-p-large);
  line-height: 127%;
  font-family: var(--fuente-titulos);
  color: var(--azul-oscuro);
  font-weight: 500;
  padding-bottom: 0;
  padding-right: var(--padding-10);
  margin-bottom: var(--padding-10);
}

.mapa_popup_desc,
.mapa_popup_link {
  color: var(--azul-oscuro);
  font-family: var(--fuente-textos);
  font-size: var(--fs-p);
  font-style: normal;
  font-weight: 300;
  margin-bottom: var(--padding-10);
}

.mapa_popup_link:hover {
  text-decoration: underline;
  cursor: pointer;
}

.mapa_popup_cerrar {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: none;
  font-size: var(--fs-p-large);
  line-height: 1;
  cursor: pointer;
  color: var(--azul-oscuro);
}

.mapa_popup_cerrar:hover {
  opacity: 0.8;
  cursor: pointer;
}

.ubicacion-activa {
  opacity: .85;
  /* o aplica un stroke/fill en tu SVG via CSS */
}

.mapa_wrap svg .mapa_clickable {
  transition: fill 0.2s, stroke 0.2s;
  cursor: pointer;
}

.mapa_wrap svg .mapa_clickable path:hover {
  fill: var(--verde) !important;
  stroke: var(--verde) !important;
}

.contenedor_mapa .antetitulo_regular {
  width: 30%;
}

.contenedor_mapa {
  gap: var(--padding_20);
}

#ourseafood {
  align-items: stretch;
}

.seccion_imagen #ourseafood .et_pb_column .et_pb_image,
.seccion_imagen #ourseafood .et_pb_column span {
  height: 100%;
  min-height: 100%;
}

.seccion_imagen #ourseafood .et_pb_column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.marron h2,
.marron .antetitulo {
  color: var(--marron-claro);
}

.fondo_azul .marron h2 {
  margin-bottom: var(--padding-40);
}

.fondo_azul .texto.marron p {
  line-height: 160%;
}

.texto_medio.listado .et_pb_text_inner {
  border-bottom: 1px solid var(--marron-claro);
  padding-bottom: var(--padding-40);
}

.texto_medio.listado:last-of-type .et_pb_text_inner {
  margin-bottom: var(--padding-40);
}

.contenedor_mapa svg {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#raisingwithcare .texto_small {
  width: 70%;
}

@media (max-width: 1400px) {
  .contenedor_mapa.d_flex_center {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 980px) {

  .mapa_wrap,
  .mapa_wrap svg {
    width: 100%;
  }

  .seccion_imagen {
    border-top: 1px solid white;
  }

  .seccion_imagen .et_pb_image_wrap {
    width: 100vw !important;
    max-width: 100vw;
    left: 50%;
    transform: translate(-50%);
  }

  #ourseafood {
    align-items: center;
  }

  .seccion_imagen .cta {
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    text-align: center;
  }

  #raisingwithcare .texto_small {
    width: 100%;
  }

}