@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;
}
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#contato {
  padding-top: 60px;
}
section#contato #page-text {
  margin-bottom: 40px;
}
section#contato .infos {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: inherit;
}
section#contato .infos .info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: inherit;
  align-items: inherit;
}
section#contato .infos .info h3 i {
  color: #B1A56F;
}
section#contato .infos .info p {
  margin: 0;
}
section#contato .infos .divisor {
  width: 50%;
  height: 2px;
  background-color: #B1A56F;
}

@media screen and (max-width: 769px) {
  #page-text {
    text-align: justify !important;
  }
  section#contato .infos {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: inherit;
    flex-wrap: wrap;
    gap: 20px;
  }
  section#contato .infos .info {
    min-width: calc(50% - 20px);
  }
  section#contato .infos .divisor {
    display: none;
  }
}
@media screen and (max-width: 426px) {
  #page-text {
    text-align: justify !important;
  }
  section#contato .infos {
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: inherit;
    gap: 20px;
  }
  section#contato .infos .divisor {
    display: none;
  }
}/*# sourceMappingURL=contato.css.map */