/* PUNTOS DE INTERES */
.titulo-punto-interes {
  font-family: "Roboto Medium";
  color: #000;
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding-left: 2.8125rem;
  position: relative;
  margin-bottom: 1.5rem;
}
.titulo-punto-interes:before {
  content: "";
  width: 2.1875rem;
  height: 2.5rem;
  position: absolute;
  left: 0;
  top: -0.25rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.titulo-punto-interes.cultura:before {
  background-image: url(../images/icono-cultura-globo.png);
}
.titulo-punto-interes.geologia:before {
  background-image: url(../images/icono-geologia-globo.png);
}
.titulo-punto-interes.hidrografia:before {
  background-image: url(../images/icono-hidrografia-globo.png);
}
.titulo-punto-interes.informacion:before {
  background-image: url(../images/icono-informacion-globo.png);
}
.titulo-punto-interes.infraestructura:before {
  background-image: url(../images/icono-infraestructura-globo.png);
}
.titulo-punto-interes.municipio:before {
  background-image: url(../images/icono-municipio-globo.png);
}
.titulo-punto-interes.orografia:before {
  background-image: url(../images/icono-orografia-globo.png);
}
.titulo-punto-interes.paradores:before {
  background-image: url(../images/icono-paradores-globo.png);
}
.titulo-punto-interes.vegetacion:before {
  background-image: url(../images/icono-vegetacion-globo.png);
}
.titulo-punto-interes.pasaporte:before {
  background-image: url(../images/icono-pasaporte-globo.png);
}

.listado-enlaces {
  padding-left: 0;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.listado-enlaces li {
  width: 100%;
  font-family: "Roboto Regular";
  color: #424242;
  font-size: 1rem;
  line-height: 1.375rem;
  padding: 0 0.9375rem;
  position: relative;
  margin: 0.375rem 0;
}
.listado-enlaces li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: #424242;
  position: absolute;
  top: 0.375rem;
  left: 0.125rem;
}
.listado-enlaces li a {
  font: inherit;
  line-height: inherit;
  transition: color 0.5s ease-in-out;
  color: inherit;
}
.listado-enlaces li a:hover {
  color: #701825;
  text-decoration: underline;
}
.listado-enlaces.dos-columnas li {
  width: 50%;
}
.listado-enlaces.tres-columnas li {
  width: 33.3333%;
}
@media (max-width: 768px) {
	.listado-enlaces.dos-columnas li,
	.listado-enlaces.tres-columnas li {
    width: 100%;
  }
}
