@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;
  }
}
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #E5E5E5;
}

::-webkit-scrollbar-thumb {
  background-color: #B1A56F;
}

.select2-selection--multiple,
.select2-selection--single {
  width: 100% !important;
  border-radius: 5px !important;
  min-height: 38px !important;
  border: 1px solid #ced4da !important;
}
.select2-selection--multiple .select2-selection__arrow,
.select2-selection--single .select2-selection__arrow {
  height: 100% !important;
}
.select2-selection--multiple .select2-selection__rendered,
.select2-selection--single .select2-selection__rendered {
  line-height: 36px !important;
  height: 100% !important;
}

.select2-selection--multiple ul.select2-selection__rendered {
  line-height: 26px !important;
}

body {
  background-color: #E5E5E5;
}

section:not(#home) {
  padding: 100px 0;
}
section:not(#home) .section-title {
  font-size: 2.5em;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
section:not(#home) .section-title::before {
  position: absolute;
  content: "";
  width: 180px;
  height: 3px;
  background-color: #4F5457;
  left: calc(50% - 90px);
  bottom: 0;
  border-radius: 8px;
}
section:not(#home) .section-title::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #B1A56F;
  border: 5px solid #E5E5E5;
  border-radius: 8px;
  left: calc(50% - 12.5px);
  bottom: -10px;
}

section.dark {
  background-color: #4F5457;
}
section.dark .section-title {
  color: #fff;
}
section.dark .section-title::before {
  background-color: #fff !important;
}
section.dark .section-title::after {
  background-color: #B1A56F !important;
  border: 5px solid #4F5457 !important;
}

.back-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #B1A56F;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 70px;
  z-index: 999;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: inherit;
  align-items: center;
  gap: 10px;
}
.whatsapp .botao {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: #25D366;
  font-size: 1.2em;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.whatsapp .msg {
  padding: 5px;
  background-color: #25D366;
  color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

nav#site-header {
  position: absolute;
  width: 100%;
  padding: 20px 0;
  z-index: 999;
  transition: 0.2s linear;
}
nav#site-header.sticky {
  position: fixed;
  background-color: #E5E5E5;
  box-shadow: 0px 3px 24px rgba(79, 84, 87, 0.3);
}
nav#site-header.sticky .site-logo {
  background: url("/src/imgs/logo-horizontal.webp") left center no-repeat !important;
  background-size: contain !important;
}
nav#site-header.sticky .nav-menu li a {
  color: #4F5457 !important;
}
nav#site-header.sticky .nav-menu li a:hover {
  color: #B1A56F !important;
}
nav#site-header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav#site-header .container .site-logo {
  width: 300px;
  height: 60px;
  background: url("/src/imgs/logo-horizontal-branco.webp") left center no-repeat;
  background-size: contain;
}
nav#site-header .container .menu-toggler {
  gap: 7px;
  display: none;
}
nav#site-header .container .menu-toggler span {
  background-color: #fff;
  border-radius: 3px;
  width: 30px;
  height: 2px;
}
nav#site-header .container .nav-menu ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 0;
}
nav#site-header .container .nav-menu ul .dropdown-menu {
  display: none;
}
nav#site-header .container .nav-menu ul .dropdown-menu.show {
  position: absolute;
  display: block;
}
nav#site-header .container .nav-menu ul .dropdown-menu a {
  color: #fff !important;
}
nav#site-header .container .nav-menu ul .dropdown-menu a:hover {
  color: #B1A56F !important;
}
nav#site-header .container .nav-menu ul li a {
  text-transform: uppercase;
  font-size: 1.1em;
  color: #fff;
  transition: 0.2s linear;
  letter-spacing: 1px;
}
nav#site-header .container .nav-menu ul li a:hover {
  color: #DAD0A6;
}

footer#site-footer {
  padding: 40px 0;
  border-top: 2px solid #B1A56F;
  background-color: #E5E5E5;
}
footer#site-footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: inherit;
  gap: 20px;
}
footer#site-footer .footer-nav {
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: inherit;
  gap: 10px;
}
footer#site-footer .footer-nav li a {
  color: #4F5457;
  text-transform: uppercase;
  font-size: 1.1em;
  transition: 0.2s linear;
  letter-spacing: 1px;
}
footer#site-footer .footer-nav li a:hover {
  color: #B1A56F;
}
footer#site-footer .corretores .corretor {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: inherit;
}
footer#site-footer .corretores .corretor h3 {
  margin-bottom: 0;
}
footer#site-footer .corretores .corretor h4 {
  font-size: 1em;
  margin-bottom: 0;
}
footer#site-footer .corretores .divisor {
  width: 100%;
  height: 1px;
  background-color: #B1A56F;
  margin: 10px 0;
}

#publi-dev {
  background: url("/src/imgs/capa-praia.webp") center center no-repeat;
  background-size: cover;
  position: relative;
}
#publi-dev::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(79, 84, 87, 0.5);
}
#publi-dev .container {
  padding-top: 8px;
  padding-bottom: 5px;
  position: relative;
  z-index: 10;
}
#publi-dev .container p {
  text-align: center;
  color: #fff;
  margin-bottom: 0;
}
#publi-dev .container p a {
  color: #26d4ff;
  cursor: pointer;
}

@media screen and (max-width: 1025px) {
  .nav-menu ul {
    gap: 15px !important;
  }
}
@media screen and (max-width: 830px) {
  #site-header.sticky .nav-menu {
    background-color: #E5E5E5 !important;
  }
  #site-header.sticky span {
    background-color: #4F5457 !important;
  }
  .nav-menu {
    position: fixed !important;
    height: 100vh !important;
    width: 100% !important;
    background-color: #4F5457 !important;
    top: 0 !important;
    right: -100% !important;
    max-width: 400px !important;
    padding: 80px 50px !important;
    transition: 0.3s linear !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  }
  .nav-menu.active {
    right: 0 !important;
  }
  .nav-menu ul {
    display: flex;
    flex-direction: column !important;
  }
  .nav-menu ul a {
    display: block !important;
    font-size: 30px !important;
    color: #fff !important;
    text-align: center;
  }
  .nav-menu ul a:hover {
    color: #B1A56F !important;
  }
  .menu-toggler {
    display: flex !important;
    flex-direction: column !important;
  }
  .menu-toggler.active span {
    background-color: #fff !important;
    z-index: 999;
    transition: 0.2s linear !important;
  }
  .menu-toggler.active span:nth-child(1) {
    position: relative;
    transform: rotate(-45deg) !important;
    top: 4px !important;
  }
  .menu-toggler.active span:nth-child(2) {
    opacity: 0 !important;
  }
  .menu-toggler.active span:nth-child(3) {
    position: relative;
    transform: rotate(45deg) !important;
    bottom: 14px !important;
  }
  .menu-toggler span {
    display: block !important;
  }
}
@media screen and (max-width: 577px) {
  #site-header .site-logo {
    background-size: 70% !important;
  }
  #site-header.sticky .navbar .site-logo {
    background-size: 70% !important;
  }
  footer#site-footer .container {
    flex-wrap: wrap !important;
  }
  footer#site-footer .container .logo {
    width: calc(50% - 10px);
  }
  footer#site-footer .container .logo img {
    width: 100% !important;
  }
  footer#site-footer .container .nav {
    width: calc(50% - 10px);
  }
  footer#site-footer .container .corretores {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer#site-footer .container .corretores .divisor {
    width: 2px !important;
    height: 100% !important;
    margin: 0 !important;
  }
  #publi-dev .container {
    padding: 10px 0 !important;
  }
}
@media screen and (max-width: 426px) {
  footer#site-footer .logo, footer#site-footer .nav {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }
  footer#site-footer .container .logo img {
    width: 70% !important;
  }
}/*# sourceMappingURL=site.css.map */