@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: 0;
}
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#quem-somos {
  padding-top: 60px;
  background: url("../../src/imgs/pattern-principal.png") left top no-repeat;
  background-size: contain;
  position: relative;
}
section#quem-somos::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#quem-somos .infos h3 {
  color: #4F5457;
  margin-bottom: 0;
}
section#quem-somos .infos h2 {
  color: #000;
  font-size: 2.5em;
  margin-bottom: 25px;
}
section#quem-somos .simbolo {
  width: 100%;
  height: 100%;
  background: url("../../src/imgs/simbolo_zat.png") center right no-repeat;
  background-size: contain;
}

section#onde-estamos .card {
  padding: 20px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
section#onde-estamos .card img {
  margin-bottom: 30px;
}
section#onde-estamos .card .corretores .corretor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
section#onde-estamos .card .corretores .corretor h3 {
  margin-bottom: 0;
}
section#onde-estamos .card .corretores .corretor h4 {
  font-size: 1em;
  margin-bottom: 0;
}
section#onde-estamos .card .corretores .divisor {
  width: 100%;
  height: 1px;
  background-color: #B1A56F;
  margin: 10px 0;
}
section#onde-estamos .mapa iframe {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

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: 426px) {
  section#onde-estamos .card {
    width: calc(100% - 24px);
    margin: 0 12px 20px;
  }
  section#onde-estamos .card .corretores {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: inherit;
  }
  section#onde-estamos .card .corretores .corretor {
    text-align: center;
  }
  section#onde-estamos .card .corretores .divisor {
    background-color: transparent;
  }
  section#onde-estamos .mapa {
    height: 300px;
  }
  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;
  }
}/*# sourceMappingURL=quem_somos.css.map */