@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;
  }
}
.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

section#home {
  min-height: 100vh;
  max-height: 100vh;
  background: url("/src/imgs/capa-praia.webp") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
section#home::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(79, 84, 87, 0.5);
}
section#home .seta {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
section#home .container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section#home .container h1.site-title {
  z-index: 10;
  color: #fff;
  font-size: 3.5em;
  text-transform: uppercase;
  margin-bottom: 60px;
}
section#home .container .search-box {
  z-index: 10;
  width: 100%;
  padding: 20px 50px;
  border-radius: 10px;
  background-color: rgba(229, 229, 229, 0.9);
}
section#home .container .search-box button {
  padding: 7px 24px;
}

section#destaques .imoveis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
section#destaques .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#destaques .imovel:hover {
  transform: scale(1.02);
}
section#destaques .imovel .imagem {
  position: relative;
}
section#destaques .imovel .imagem img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
section#destaques .imovel .imagem .imovel-tipo {
  top: 10px;
  right: 10px;
  background-color: #B1A56F;
  padding: 3px 5px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
}
section#destaques .imovel .imagem .imovel-referencia {
  top: 10px;
  left: 10px;
  background-color: #B1A56F;
  padding: 3px 5px;
  border-radius: 10px;
  color: #fff;
  position: absolute;
}
section#destaques .imovel .infos {
  padding: 12px;
  color: #4F5457;
  height: calc(100% - 200px);
  position: relative;
}
section#destaques .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#destaques .imovel .infos .imovel-local {
  font-size: 0.9em;
}
section#destaques .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#destaques .imovel .infos .bottom .caract span i {
  color: #B1A56F;
}
section#destaques .imovel .infos .bottom .caract .divisor {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #4F5457;
}
section#destaques .imovel .infos .bottom .preco {
  color: #000;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section#destaques .imovel .infos .bottom .preco h5 {
  margin-bottom: 5px;
  font-size: 0.9em;
}

section#tipos_imoveis .section-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: inherit;
  gap: 15px;
}
section#tipos_imoveis .section-content .tipo, section#tipos_imoveis .section-content .texto {
  height: 450px;
  width: calc(20% - 15px);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section#tipos_imoveis .section-content .texto h3 {
  font-size: 1.2em;
}
section#tipos_imoveis .section-content .tipo {
  position: relative;
}
section#tipos_imoveis .section-content .tipo h3 {
  z-index: 100;
  transition: 0.5s linear;
}
section#tipos_imoveis .section-content .tipo::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(43, 60, 89, 0.7);
  border-radius: 10px;
  transition: 0.5s linear;
}
section#tipos_imoveis .section-content .tipo:hover h3 {
  display: none;
}
section#tipos_imoveis .section-content .tipo:hover::after {
  background-color: transparent;
}
section#tipos_imoveis .section-content .casas {
  background: url("../../src/imgs/casa-home.webp") center center;
  background-size: cover;
}
section#tipos_imoveis .section-content .apartamentos {
  background: url("../../src/imgs/apartamento-home.webp") center center;
  background-size: cover;
}
section#tipos_imoveis .section-content .terrenos {
  background: url("../../src/imgs/terreno-home.webp") center center;
  background-size: cover;
}
section#tipos_imoveis .section-content .comerciais {
  background: url("../../src/imgs/comercial-home.webp") center center;
  background-size: cover;
}

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;
}

section#depoimentos {
  background: url("../../src/imgs/pattern-principal.png") left top no-repeat;
  background-size: contain;
  position: relative;
}
section#depoimentos::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: url("../../src/imgs/pattern-invertido.png") right bottom no-repeat;
  background-size: contain;
}
section#depoimentos .glide {
  position: relative;
  width: 100%;
}
section#depoimentos .content {
  overflow: hidden;
}
section#depoimentos .content .depoimentos {
  padding: 0 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: inherit;
  gap: 20px;
}
section#depoimentos .content .depoimentos .depoimento {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
section#depoimentos .content .depoimentos .depoimento span i {
  color: #B1A56F;
  font-size: 1.3em;
}
section#depoimentos .content .depoimentos .depoimento h4 {
  text-align: center;
}
section#depoimentos .content .depoimentos .depoimento p {
  margin-bottom: 0;
}
section#depoimentos .content .glide__arrows .glide__arrow {
  border: none;
  box-shadow: none;
  padding: 0;
}
section#depoimentos .content .glide__arrows .glide__arrow:first-child {
  left: 1.7em;
}
section#depoimentos .content .glide__arrows .glide__arrow:last-child {
  right: 1.7em;
}
section#depoimentos .content .glide__arrows i {
  font-size: 1.4em;
  color: #4F5457;
}

section#contato p {
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
section#contato .infos {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: inherit;
  gap: 20px;
}
section#contato .infos .info {
  background-color: #E5E5E5;
  border-radius: 10px;
  width: calc(33.33% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: inherit;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  padding: 30px;
  text-align: center;
}
section#contato .infos .info i {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #B1A56F;
}
section#contato .formulario {
  color: #fff;
  margin-top: 50px;
}
section#contato .formulario input:focus, section#contato .formulario textarea:focus {
  box-shadow: none;
  border: 1px solid #B1A56F;
  outline: 1px solid #B1A56F;
}

@media screen and (max-width: 830px) {
  section#home .site-title {
    text-align: center;
  }
  section#home .search-box button {
    margin-top: 15px;
  }
  section#destaques .imoveis {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  #tipos_imoveis .section-content {
    flex-direction: column !important;
  }
  #tipos_imoveis .section-content .tipo {
    width: 100% !important;
    height: 200px !important;
  }
  #tipos_imoveis .section-content .texto {
    order: -1;
    width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 577px) {
  section#home .site-title {
    font-size: 2.5em !important;
  }
  section#contato .infos {
    flex-wrap: wrap !important;
  }
  section#contato .infos .info {
    width: calc(50% - 10px);
  }
  section#contato .infos .info.address {
    order: -1;
    width: 100%;
  }
}
@media screen and (max-width: 426px) {
  section#home .container {
    padding-top: 40px !important;
    max-height: none !important;
  }
  section#home .container .site-title {
    margin-bottom: 30px !important;
  }
  section#home .select2-container {
    width: 100% !important;
  }
  section#destaques .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;
  }
  section#contato .info {
    width: 100% !important;
  }
  section#depoimentos .depoimentos {
    padding: 0 5px !important;
  }
}/*# sourceMappingURL=home.css.map */