#ambiente-single {
  background-color: #232323;
  color: #fff;
}
#ambiente-single .title__wrapper {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}
#ambiente-single .title__wrapper div {
  display: flex;
  align-items: center;
  flex: 1;
  text-wrap: pretty;
}
#ambiente-single .title__wrapper h1 {
  font-weight: 500;
  margin-bottom: 0;
}
#ambiente-single .title__wrapper p {
  margin-bottom: 0;
}
#ambiente-single .galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 32px;
  width: 100%;
}
#ambiente-single .galeria img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  #ambiente-single .galeria {
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .galeria .descricao {
    display: none;
  }
  #ambiente-single .title__wrapper {
    flex-direction: column;
  }
}