.contenedor-mapa {
  position: relative;
  width: 30rem;
  height: 120px; /* Ajusta según necesites */
  overflow: hidden;
  width: 100%;
  padding: 1rem;
  background: var(--gris);
  border-radius: 1.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
}

.mapa-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/imagenes/tramites/mapa_sanfco_tramite.PNG");
  background-size: cover;
  background-position: center;
  filter: brightness(90%);
}

.icono-mapa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0.1rem solid #fff;
  border-radius: 6rem;
  background: var(--blanco);
  color: var(--primario);
  /* width: 7rem; */
  /* height: 7rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1rem 2rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
