.mapa {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.img-ponto-mapa {
  width: 48%;
  margin-right: 2em;
}

.img-ponto-mapa img {
  border-radius: 12px;
}

.desc-mapa h3,
.desc-mapa p {
  margin: 0;
}

.desc-mapa span {
  border: 3px solid #d88b8b;
  padding: 5px 10px;
  text-transform: uppercase;
  background-color: #e4afaf;
  color: black !important;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 200;
  margin-left: 1em;
}

.mapa-ecozville {
  background: url('imagem/ecozville/mapa/mapa-ecozville.jpg') no-repeat center center;
  background-size: cover;
  margin-left: 3em;
  width: 1200px;
  height: 800px;
  position: relative;
}

/* PONTOS DO MAPA TERRENOS */

.mapa form {
  width: 500px;
  margin-right: 5em;
}

h4.ponto-mapa {
  position: absolute;
  font-size: 14px;
  top: 36%;
  left: 8.4%;
  padding: 0 4px;
  border: 3px solid black;
  border-radius: 15px;
  background-color: rgb(233, 179, 179);
  cursor: pointer;
  transition: 180ms;
}

h4.ponto-mapa:hover {
  border: 3px solid rgb(223, 124, 124);
  transition: 180ms;
}

/* BARRA DE PROGRESSO */
.barra-progress {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.progress {
  height: 1rem;
  flex: 1 1 auto;
}

.progress-bar {
  background-color: rgb(164, 101, 23);
}


