@font-face {
  font-family: "lt-wave";
  src: url("/fonts/LTWave-Regular.ttf");
}
@font-face {
  font-family: "lt-wave-light";
  src: url("/fonts/LTWave-Light.ttf");
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "lt-wave-light", sans-serif;
}

.container {
  margin: auto;
  max-width: 1300px;
  padding: 0 40px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "lt-wave", sans-serif;
}

a {
  text-decoration: none;
  color: #181818;
  cursor: pointer;
}
a:hover {
  color: #181818;
}

.button-dourado {
  background-color: #B1A56F;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  transition: 0.2s;
}
.button-dourado:hover {
  background-color: rgba(177, 165, 111, 0.9);
}

.button-chumbo {
  background-color: #4F5457;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  border: none;
  text-decoration: none;
  transition: 0.2s;
}
.button-chumbo:hover {
  background-color: rgba(79, 84, 87, 0.9);
}

@media screen and (max-width: 577px) {
  .container {
    padding: 0 20px !important;
  }
}
@media screen and (max-width: 426px) {
  .container {
    padding: 0 14px !important;
  }
}
section#page-banner {
  height: 350px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: url("../../src/imgs/page-banner.webp") center center no-repeat;
  background-size: cover;
  margin-bottom: 60px;
}
section#page-banner::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(43, 60, 89, 0.5);
}
section#page-banner .container .page-title {
  padding-top: 50px;
  position: relative;
  z-index: 10;
  font-size: 3em;
  color: #fff;
  text-align: center;
}

section#filtro {
  padding: 0;
}
section#filtro .mostrar button {
  padding: 10px 22px;
  font-size: 1.2em;
}

section#imoveis {
  padding-top: 50px;
}
section#imoveis .qtd-resultados {
  font-size: 1.2em;
}
section#imoveis .controles-topo .controle {
  margin-top: -15px;
}
section#imoveis .controle {
  border: none;
  color: #B1A56F;
  background-color: transparent;
  padding: 0 20px;
  font-size: 1.2em;
}
section#imoveis .pagina {
  padding: 0 5px;
  font-size: 1.2em;
}
section#imoveis .imoveis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
section#imoveis .imovel {
  cursor: pointer;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  transition: 0.2s linear;
}
section#imoveis .imovel:hover {
  transform: scale(1.02);
}
section#imoveis .imovel .imagem {
  position: relative;
}
section#imoveis .imovel .imagem img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#imoveis .imovel .imagem .imovel-tipo {
  top: 10px;
  right: 10px;
  background-color: #B1A56F;
  padding: 3px 5px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
}
section#imoveis .imovel .imagem .imovel-referencia {
  top: 10px;
  left: 10px;
  background-color: #B1A56F;
  padding: 3px 5px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
}
section#imoveis .imovel .infos {
  padding: 12px;
  color: #4F5457;
  height: calc(100% - 200px);
  position: relative;
}
section#imoveis .imovel .infos .imovel-title {
  color: #000;
  font-size: 1.1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 24px;
  max-height: 48px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
section#imoveis .imovel .infos .imovel-local {
  font-size: 0.9em;
}
section#imoveis .imovel .infos .bottom .caract {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #B1A56F;
}
section#imoveis .imovel .infos .bottom .caract span i {
  color: #B1A56F;
}
section#imoveis .imovel .infos .bottom .caract .divisor {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #4F5457;
}
section#imoveis .imovel .infos .bottom .preco {
  color: #000;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section#imoveis .imovel .infos .bottom .preco h5 {
  margin-bottom: 5px;
  font-size: 0.9em;
}

section#cta {
  background: url("../../src/imgs/imagem-cta.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
section#cta::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(79, 84, 87, 0.7);
}
section#cta .container .infos {
  padding: 80px inherit;
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}
section#cta .container .infos h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}
section#cta .container .infos p {
  font-size: 1.1em;
  margin-bottom: 40px;
}
section#cta .container .infos a:hover {
  color: #fff;
}

@media screen and (max-width: 1025px) {
  .imoveis {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media screen and (max-width: 830px) {
  section#filtro .filtro .destinacao_filtro {
    order: 0;
  }
  section#filtro .filtro .cidade_filtro {
    order: 3;
  }
  section#filtro .filtro .regiao_filtro {
    order: 4;
  }
  section#filtro .filtro .tipo_filtro {
    order: 1;
  }
  section#filtro .filtro .caract_imovel_filtro {
    order: 5;
  }
  section#filtro .filtro .caract_cond_filtro {
    order: 6;
  }
  section#filtro .filtro .valor_min_filtro {
    order: 7;
  }
  section#filtro .filtro .valor_max_filtro {
    order: 8;
  }
  section#filtro .filtro .quartos_filtro {
    order: 9;
  }
  section#filtro .filtro .banheiros_filtro {
    order: 10;
  }
  section#filtro .filtro .area_util_filtro {
    order: 11;
  }
  section#filtro .filtro .referencia_filtro {
    order: 2;
  }
  section#filtro .filtro .filtro_filtrar {
    order: 12;
  }
  section#filtro .filtro .filtro_filtrar #filtrar {
    width: 100%;
  }
  section#imoveis .imoveis {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 426px) {
  section#imoveis .imoveis {
    grid-template-columns: 1fr !important;
  }
  section#cta .infos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  section#cta .infos a {
    margin-right: 0 !important;
    width: 180px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 376px) {
  section#imoveis .pagina:first-child {
    margin-top: 12px !important;
  }
}/*# sourceMappingURL=list.css.map */