#boton_abrir_mapa_abajo {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: #1C2539;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2147483646;
  transition: background 0.2s, box-shadow 0.2s, border-radius 0.2s, bottom 0.2s, right 0.2s;
  border: 2.5px solid #fff;
  text-decoration: none;
}

#boton_abrir_mapa_abajo:hover, #boton_abrir_mapa_abajo:focus {
  background-color: var(--maincolor, #2a3b5a);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  outline: none;
}

#boton_abrir_mapa_abajo img {
  width: 27px;
  height: 27px;
  pointer-events: none;
  display: block;
}

/* Cambios para pantallas <= 575px */
@media (max-width: 575px) {
  #boton_abrir_mapa_abajo {
    bottom: 15px;
    right: 293px;
    width: 47px;
    height: 47px;
    border-radius: 8px 8px 8px 8px;
    border: none;
    z-index: 2;
  }
}

/* Cambios para pantallas entre 576px y 991px */
@media (min-width: 576px) and (max-width: 991px) {
  #boton_abrir_mapa_abajo {
    bottom: 15px;
    right: 194px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    z-index: 2147483646;
  }
  #boton_abrir_mapa_abajo img {
    width: 22px;
    height: 22px;
  }
}

/* Cambios para pantallas >= 992px */
@media (min-width: 992px) {
  #boton_abrir_mapa_abajo {
    bottom: 0;
    right: 483px;
    border-radius: 8px 8px 0 0;
    border: none;
    z-index: 2;
  }
}

/* OCULTAR EL BOTÓN HASTA 429px */
@media (max-width: 429px) {
  #boton_abrir_mapa_abajo {
    display: none !important;
  }
}

/* DESDE 458px HASTA MAX 575px, right: 350px */
@media (min-width: 458px) and (max-width: 575px) {
  #boton_abrir_mapa_abajo {
    display: flex;
    right: 350px;
  }
}