/* Importando as fontes do Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
@import url(slick.scss);
@import url(slick-theme.scss);
/* Mixin para @font-face */
/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Estilos globais */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Saira", sans-serif;
  font-size: 1rem;
  overflow-x: hidden;
  color: #151515;
}

.main {
  width: 100%;
  overflow: hidden;
}

.container {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}
.row.center-v {
  align-items: center;
}
.row.center-w {
  justify-content: center;
}

.row > * {
  max-width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  flex-wrap: wrap;
}

.col {
  flex: 0 0 auto;
  width: 100%;
}
.col-50 {
  width: 50%;
}
@media (max-width: 574.98px) {
  .col-50 {
    width: 100%;
  }
}
.col-33 {
  width: 33%;
}
@media (max-width: 574.98px) {
  .col-33 {
    width: 100%;
  }
}
.col-40 {
  width: 40%;
}
@media (max-width: 574.98px) {
  .col-40 {
    width: 100%;
  }
}
.col-60 {
  width: 60%;
}
@media (max-width: 574.98px) {
  .col-60 {
    width: 100%;
  }
}
.col-10 {
  width: 83.333%;
}
@media (max-width: 1199.98px) {
  .col-10 {
    width: 100%;
  }
}

header {
  background-color: #ffffff;
  height: 84px;
}
@media (max-width: 574.98px) {
  header {
    display: none;
  }
}
header .container, header .row {
  height: 100%;
}
header .row {
  align-items: center;
}
header nav ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header nav ul li .nav-link {
  color: #233729;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
header nav ul li .nav-link:hover {
  color: #DEAA50;
}

.btn {
  background-color: white;
  border: 1px solid #575757;
  color: #000000;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.btn:hover {
  background-color: #DEAA50;
  border-color: #DEAA50;
  color: #ffffff;
}

.btn-branco {
  background-color: white;
  border: 1px solid #ffffff;
  color: #575757;
  cursor: pointer;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.btn-branco:hover {
  color: #DEAA50;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

#banner {
  background-color: #DEAA50;
  background-image: url(../img/pessoa-banner.png), url(../img/grafismo-banner.png);
  background-position: left bottom, center top;
  background-repeat: no-repeat, no-repeat;
  height: 916px;
  position: relative;
}
@media (max-width: 1399.98px) {
  #banner {
    background-position: -140px bottom, center top;
  }
}
@media (max-width: 991.98px) {
  #banner {
    height: 800px;
    background-position: -175px 0, center top;
  }
}
@media (max-width: 767.98px) {
  #banner {
    background-size: auto, 100% auto;
  }
}
@media (max-width: 574.98px) {
  #banner {
    background-image: url(../img/pessoa-banner.png), url(../img/grafismo-banner-mobile.png);
    background-size: auto, 100% auto;
    background-position: -275px 0, center top;
  }
}
#banner .container-fluid {
  height: 100%;
}
#banner .row {
  height: 100%;
}
#banner .row > * {
  height: 100%;
}
#banner .ajust-mcmv {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (max-width: 991px) {
  #banner .ajust-mcmv {
    justify-content: center;
  }
}
#banner .col-60 {
  padding-left: 23%;
}
@media (max-width: 1199.98px) {
  #banner .col-60 {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  #banner .col-60 {
    width: 100%;
  }
}
#banner .col-60 .logo-desk {
  display: block;
  max-width: 36vw;
  margin-left: auto;
  margin-top: 200px;
}
@media (max-width: 1199.98px) {
  #banner .col-60 .logo-desk {
    display: none;
  }
}
@media (max-width: 991.98px) {
  #banner .col-60 .logo-desk {
    display: block;
    margin-left: 20%;
    max-width: 44vw;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .logo-desk {
    display: none;
  }
}
#banner .col-60 .logo-mobile {
  display: none;
}
@media (max-width: 1199.98px) {
  #banner .col-60 .logo-mobile {
    display: block;
    margin-top: 200px;
    margin-left: auto;
    max-width: 36vw;
  }
}
@media (max-width: 991.98px) {
  #banner .col-60 .logo-mobile {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .logo-mobile {
    display: flex;
    margin-left: auto;
    margin-top: 95px;
    max-width: 100%;
  }
}
#banner .col-60 .infos {
  margin: 44px 0 0 29%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 991.98px) {
  #banner .col-60 .infos {
    margin: 44px 0 0 36%;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .infos {
    margin: 44px 0 0 auto;
    text-align: right;
  }
}
#banner .col-60 .infos h2 {
  color: #ffffff;
  font-size: 3.25rem;
}
@media (max-width: 1199.98px) {
  #banner .col-60 .infos h2 {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .infos h2 {
    font-size: 2rem;
  }
}
#banner .col-60 .infos h3 {
  color: #ffffff;
  font-size: 2.5rem;
}
@media (max-width: 1199.98px) {
  #banner .col-60 .infos h3 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .infos h3 {
    font-size: 2rem;
  }
}
#banner .col-60 .infos h3 strong {
  font-size: 4.375rem;
  font-weight: 400;
}
@media (max-width: 1199.98px) {
  #banner .col-60 .infos h3 strong {
    font-size: 3.75rem;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .infos h3 strong {
    font-size: 3.125rem;
  }
}
#banner .col-60 .infos p {
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 120%;
}
@media (max-width: 1199.98px) {
  #banner .col-60 .infos p {
    font-size: 1.625rem;
  }
}
@media (max-width: 767.98px) {
  #banner .col-60 .infos p {
    font-size: 1.5rem;
  }
}
#banner .col-60 .infos p span {
  color: #373737;
}
#banner .col-40 {
  position: relative;
}
@media (max-width: 1199.98px) {
  #banner .col-40 {
    width: 50%;
  }
}
@media (max-width: 991.98px) {
  #banner .col-40 {
    display: none;
  }
}
#banner .box-form {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 20px;
  width: calc(100% - 160px);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  #banner .box-form {
    display: none;
  }
}
#banner .box-form h3 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 120%;
  margin-bottom: 32px;
}
#banner .box-form h3 strong {
  font-weight: 400;
}
#banner .box-form .campo {
  position: relative;
  margin-bottom: 12px;
}
#banner .box-form .campo .ipt {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9A9A9A;
  height: 60px;
  font-size: 1.125rem;
  font-weight: 300;
  width: 100%;
}
#banner .box-form .campo .ipt:focus {
  outline: none;
}
#banner .box-form .campo .ipt:focus ~ label {
  top: 0;
  font-size: 0.75rem;
}
#banner .box-form .campo textarea {
  height: 80px !important;
  padding-top: 10px;
}
#banner .box-form .campo label {
  font-size: 1.125rem;
  font-weight: 300;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: calc(50% - 9px);
  left: 0;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#banner .box-form .campo .ipt:not(:-moz-placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
}
#banner .box-form .campo .ipt:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
}
#banner .box-form .radios {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-top: 12px;
}
#banner .box-form .radios input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
#banner .box-form .radios label {
  display: flex;
  align-items: center;
  min-height: 24px;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 300;
}
#banner .box-form .radios label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #AC7D2C;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
#banner .box-form .radios label::after {
  content: "";
  -webkit-appearance: none;
  background-color: #DEAA50;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 2px;
  left: 2px;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
#banner .box-form .radios input:checked + label::after {
  transform: scale(1);
}
#banner .box-form .checks {
  display: block;
  margin-bottom: 32px;
}
#banner .box-form .checks input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
#banner .box-form .checks label {
  display: flex;
  align-items: center;
  min-height: 28px;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  font-size: 0.875rem;
  font-weight: 300;
}
#banner .box-form .checks label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #AC7D2C;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 4px;
  height: 24px;
  width: 24px;
  transition: all 0.2s ease-in-out;
}
#banner .box-form .checks label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.2s ease-in-out;
}
#banner .box-form .checks input:checked + label::before {
  background-color: #DEAA50;
}
#banner .box-form .checks input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
#banner .box-form .btn-enviar {
  border: none;
  background-color: #DEAA50;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 200px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#banner .box-form .btn-enviar:hover {
  background-color: #151515;
  color: #DEAA50;
}
#banner .box-contato {
  background-color: #575757;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 24px;
  width: 104px;
  height: auto;
  padding: 24px 0;
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 1530.98px) {
  #banner .box-contato {
    height: 84px;
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    flex-direction: row;
    transform: none;
    justify-content: space-around;
  }
}
#banner .box-contato .link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  background-color: #575757;
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#banner .box-contato .link:hover {
  background-color: #DEAA50;
}

#projeto {
  background: url(../img/grafismo-projeto.png) no-repeat top right/50% auto;
  padding: 150px 0;
}
@media (max-width: 574.98px) {
  #projeto {
    padding: 100px 0;
    background: none;
  }
}
#projeto .fachada {
  cursor: url(../img/lupa.png) 27 27, auto;
  max-width: 100%;
}
@media (max-width: 574.98px) {
  #projeto .fachada {
    margin-top: 32px;
  }
}
#projeto .row {
  align-items: center;
}
#projeto .title {
  font-size: 3.25rem;
  font-weight: 400;
  margin-bottom: 32px;
}
#projeto p {
  color: #575757;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 200%;
  margin-bottom: 32px;
}
#projeto p:last-of-type {
  margin-bottom: 0;
}

#imagens {
  padding-bottom: 150px;
  position: relative;
  z-index: 2;
}
@media (max-width: 574.98px) {
  #imagens {
    padding-bottom: 100px;
    background: none;
  }
}
#imagens h2 {
  background-color: #ffffff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 3px;
  padding: 10px 20px;
  color: #575757;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 auto -70px;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
}
@media (max-width: 574.98px) {
  #imagens h2 {
    width: 90%;
    font-size: 1.0625rem;
    text-align: center;
    margin-bottom: -26px;
    letter-spacing: 3px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
  }
}
#imagens .foto {
  cursor: url(../img/lupa.png) 27 27, auto;
  display: block;
  aspect-ratio: 2/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
#imagens .foto img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#imagens .foto legend {
  color: #ffffff;
  font-size: 1.125rem;
  text-transform: uppercase;
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 2;
}
@media (max-width: 574.98px) {
  #imagens .foto legend {
    font-size: 0.875rem;
  }
}
#imagens .foto:hover img {
  transform: translate(-50%, -50%) scale(1.2);
}
#imagens .mais-fotos {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#plantas {
  position: relative;
  padding-bottom: 150px;
}
@media (max-width: 574.98px) {
  #plantas {
    padding-bottom: 100px;
  }
}
#plantas .center {
  justify-content: center;
}
#plantas .grafismo {
  position: absolute;
  left: 0;
  top: -250px;
  z-index: 0;
  pointer-events: none;
  max-width: 35%;
}
#plantas .container {
  position: relative;
}
@media (max-width: 767.98px) {
  #plantas .col-50 {
    width: 100%;
  }
}
#plantas h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
#plantas .tab-links {
  height: 355px;
  overflow-y: scroll;
}
#plantas .tab-links::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: #ffffff;
}
#plantas .tab-links::-webkit-scrollbar {
  width: 6px;
  background-color: #ffffff;
}
#plantas .tab-links::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #D9D9D9;
}
#plantas .tab-links li {
  margin-bottom: 12px;
}
#plantas .tab-links li .btn {
  max-width: 95%;
  width: 95%;
  margin: 0;
  padding: 0 15px;
}
#plantas .tab-links li.active .btn {
  background-color: #DEAA50;
  border-color: #DEAA50;
  color: #ffffff;
}
#plantas .tab-content .tab {
  display: none;
  padding: 15px;
}
#plantas .tab-content .tab.active {
  display: block;
}
#plantas .tab-content .tab .planta.implantacao {
  margin-top: 130px;
  display: block;
}
@media (max-width: 767.98px) {
  #plantas .tab-content .tab .planta.implantacao {
    margin-top: 0;
  }
}
#plantas .tab-content .tab .planta img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

#diferenciais {
  background-color: #DEAA50;
  padding: 150px 0;
}
@media (max-width: 574.98px) {
  #diferenciais {
    padding: 100px 0;
  }
}
#diferenciais h2 {
  color: #373737;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 3px;
  margin-bottom: 44px;
}
#diferenciais h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
#diferenciais ul li {
  border-bottom: 1.5px solid #ffffff;
  color: #373737;
  font-size: 1.125rem;
  line-height: 120%;
  padding: 15px 0;
}
#diferenciais .btn-branco {
  margin-top: 40px;
}

#localizacao {
  padding: 150px 0;
}
@media (max-width: 574.98px) {
  #localizacao {
    padding: 100px 0;
  }
}
#localizacao .intro {
  padding-bottom: 150px;
  position: relative;
}
@media (max-width: 574.98px) {
  #localizacao .intro {
    padding-bottom: 100px;
  }
}
#localizacao .intro .grafismo {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  max-width: 23%;
}
@media (max-width: 767.98px) {
  #localizacao .intro .grafismo {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #localizacao .col-50 {
    width: 100%;
  }
}
#localizacao h2 {
  color: #000000;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 170%;
}
@media (max-width: 767.98px) {
  #localizacao h2 {
    font-size: 2rem;
    margin-bottom: 34px;
  }
}
#localizacao p {
  color: #575757;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 200%;
}
@media (max-width: 767.98px) {
  #localizacao p {
    margin-bottom: 40px;
  }
}
#localizacao address {
  color: #575757;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 767.98px) {
  #localizacao address {
    margin-bottom: 24px;
  }
}
#localizacao .metro {
  color: #DEAA50;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}
@media (max-width: 767.98px) {
  #localizacao .metro {
    justify-content: flex-start;
    text-align: left;
  }
}
@media (max-width: 574.98px) {
  #localizacao .metro {
    flex-direction: column;
    align-items: flex-start;
  }
}
#localizacao .mapa {
  position: relative;
}
#localizacao .img-fluid {
  display: block;
  width: 100%;
  max-width: 100%;
}
#localizacao .mapa-desk {
  display: block;
}
@media (max-width: 991.98px) {
  #localizacao .mapa-desk {
    display: none;
  }
}
#localizacao .mapa-mobile {
  display: none;
}
@media (max-width: 991.98px) {
  #localizacao .mapa-mobile {
    display: block;
  }
}
#localizacao .fotos {
  background: url(../img/grafismo-localizacao-2.png) no-repeat right top/40% auto;
  padding-top: 150px;
  padding-left: calc((100% - 1140px) / 2);
}
@media (max-width: 1199.98px) {
  #localizacao .fotos {
    padding-left: calc((100% - 960px) / 2);
  }
}
@media (max-width: 991.98px) {
  #localizacao .fotos {
    padding-left: calc((100% - 720px) / 2);
  }
}
@media (max-width: 767.98px) {
  #localizacao .fotos {
    padding-left: 12px;
    padding-bottom: 20px;
    background: none;
  }
}
@media (max-width: 574.98px) {
  #localizacao .fotos {
    padding-top: 100px;
  }
}
#localizacao .fotos h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 40px;
}
#localizacao .fotos .slider-fotos .item {
  padding: 12px;
}
#localizacao .fotos .slider-fotos .item .img-ratio {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
#localizacao .fotos .slider-fotos .item .img-ratio legend {
  background-color: #DEAA50;
  color: #ffffff;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 5px 20px;
  font-size: 1.25rem;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991.98px) {
  #localizacao .fotos .slider-fotos .item .img-ratio legend {
    font-size: 1rem;
  }
}
#localizacao .fotos .slider-fotos .slick-prev,
#localizacao .fotos .slider-fotos .slick-next {
  border: 1px solid #DEAA50;
  background-color: #ffffff;
  height: 48px;
  width: 48px;
  top: auto;
  bottom: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: none;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#localizacao .fotos .slider-fotos .slick-prev svg path,
#localizacao .fotos .slider-fotos .slick-next svg path {
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  fill: #DEAA50;
  stroke: #DEAA50;
}
#localizacao .fotos .slider-fotos .slick-prev::before,
#localizacao .fotos .slider-fotos .slick-next::before {
  display: none;
}
#localizacao .fotos .slider-fotos .slick-prev[aria-disabled=true],
#localizacao .fotos .slider-fotos .slick-next[aria-disabled=true] {
  pointer-events: none;
  opacity: 0.3 !important;
}
#localizacao .fotos .slider-fotos .slick-prev:hover,
#localizacao .fotos .slider-fotos .slick-next:hover {
  border-color: #DEAA50;
  background-color: #DEAA50;
}
#localizacao .fotos .slider-fotos .slick-prev:hover svg path,
#localizacao .fotos .slider-fotos .slick-next:hover svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
#localizacao .fotos .slider-fotos .slick-prev {
  left: calc(50% - 60px);
}
#localizacao .fotos .slider-fotos .slick-prev svg {
  transform: rotate(180deg);
}
#localizacao .fotos .slider-fotos .slick-next {
  right: calc(50% - 60px);
}

#contato {
  background-color: #151515;
  padding: 150px 0;
}
@media (max-width: 574.98px) {
  #contato {
    padding: 100px 0;
  }
}
#contato h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 15px;
}
#contato h2 strong {
  font-size: 3.25rem;
  line-height: 130%;
  display: block;
}
#contato .col, #contato .col-50 {
  position: relative;
  margin-bottom: 12px;
}
#contato .col .ipt, #contato .col-50 .ipt {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  height: 60px;
  font-size: 1.125rem;
  font-weight: 300;
  width: 100%;
}
#contato .col .ipt:focus, #contato .col-50 .ipt:focus {
  outline: none;
}
#contato .col .ipt:focus ~ label, #contato .col-50 .ipt:focus ~ label {
  top: 0;
  font-size: 0.75rem;
}
#contato .col textarea, #contato .col-50 textarea {
  height: 80px !important;
  padding-top: 10px;
}
#contato .col label, #contato .col-50 label {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 300;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: calc(50% - 9px);
  left: 12px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#contato .col .ipt:not(:-moz-placeholder-shown) ~ label, #contato .col-50 .ipt:not(:-moz-placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
}
#contato .col .ipt:not(:placeholder-shown) ~ label, #contato .col-50 .ipt:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
}
#contato .radios {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-top: 12px;
}
#contato .radios input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
#contato .radios label {
  display: flex;
  align-items: center;
  min-height: 24px;
  position: relative;
  cursor: pointer;
  pointer-events: all;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 300;
}
#contato .radios label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #ffffff;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
#contato .radios label::after {
  content: "";
  -webkit-appearance: none;
  background-color: #ffffff;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 2px;
  left: 2px;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
#contato .radios input:checked + label::after {
  transform: scale(1);
}
#contato .checks {
  display: block;
  margin-bottom: 50px;
}
#contato .checks input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
#contato .checks label {
  display: flex;
  align-items: center;
  min-height: 28px;
  position: relative;
  cursor: pointer;
  pointer-events: all;
  padding-left: 35px;
  font-size: 0.875rem;
  font-weight: 300;
}
#contato .checks label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #ffffff;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 4px;
  height: 24px;
  width: 24px;
  transition: all 0.2s ease-in-out;
}
#contato .checks label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #DEAA50;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.2s ease-in-out;
}
#contato .checks input:checked + label::before {
  background-color: #ffffff;
}
#contato .checks input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
#contato .btn-enviar {
  border: none;
  background-color: #DEAA50;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100%;
  max-width: 376px;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#contato .btn-enviar:hover {
  background-color: #ffffff;
  color: #000000;
}

footer {
  background-color: #979797;
  padding: 150px 0;
}
@media (max-width: 574.98px) {
  footer {
    padding: 100px 0 120px;
  }
}
footer .intro {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 80px;
}
@media (max-width: 767.98px) {
  footer .intro {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
}
footer .intro address {
  font-size: 2.5rem;
  font-weight: 500;
  color: #373737;
  line-height: 140%;
}
@media (max-width: 991px) {
  footer .row.ajust-colum {
    flex-direction: column;
    align-items: center;
  }
}
footer .col-33 {
  text-align: center;
  margin-bottom: 80px;
}
footer .col-33 h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #373737;
  margin-bottom: 60px;
}
footer .col-33 .logos {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: center;
}
footer .col-33 .logos img {
  height: 70px;
}
@media (max-width: 1400px) {
  footer .col-33 .logos img {
    max-width: 235px;
  }
}
@media (max-width: 991.98px) {
  footer .col-33 .logos {
    flex-direction: column;
    gap: 20px;
  }
}
footer p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #373737;
  text-align: justify;
  line-height: 140%;
}
footer p.assinatura {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 80px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.modal .modal-content {
  background-color: #fff;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation: modalopen 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal .modal-content span.close {
  cursor: pointer;
}
.modal .modal-content span.close svg path {
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.modal .modal-content span.close:hover svg path, .modal .modal-content span.close:focus svg path {
  fill: #000000;
}
.modal .modal-content span.close:hover svg.stroke path, .modal .modal-content span.close:focus svg.stroke path {
  stroke: #000000;
  fill: #ffffff;
}

#modalFicha .modal-content {
  max-width: 1200px;
  overflow: hidden;
}
#modalFicha .modal-content .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #DEAA50;
}
#modalFicha .modal-content .modal-header h2 {
  color: #373737;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 3px;
}
#modalFicha .modal-content .modal-body {
  max-height: calc(80vh - 103px);
  padding: 40px 8px 40px 0;
  overflow-y: scroll;
}
#modalFicha .modal-content .modal-body::-webkit-scrollbar-track {
  border-radius: 3px;
  background-color: #ffffff;
}
#modalFicha .modal-content .modal-body::-webkit-scrollbar {
  width: 6px;
  background-color: #ffffff;
}
#modalFicha .modal-content .modal-body::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #D9D9D9;
}
#modalFicha .modal-content .linha {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}
@media (max-width: 767.98px) {
  #modalFicha .modal-content .linha {
    flex-direction: column;
    gap: 12px;
  }
}
#modalFicha .modal-content .linha h3 {
  width: 40%;
  color: #000000;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 140%;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  #modalFicha .modal-content .linha h3 {
    width: 100%;
  }
}
#modalFicha .modal-content .linha p {
  width: 60%;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  #modalFicha .modal-content .linha p {
    width: 100%;
  }
}

#modalSucesso .modal-content, #modalErro .modal-content {
  background-image: url(../img/grafismo-modal.png);
  background-repeat: no-repeat;
  background-position: left top;
  padding: 100px 90px;
  max-width: 800px;
}
@media (max-width: 574.98px) {
  #modalSucesso .modal-content, #modalErro .modal-content {
    padding: 100px 30px 100px 90px;
  }
}
#modalSucesso .modal-content span.close, #modalErro .modal-content span.close {
  position: absolute;
  right: 15px;
  top: 15px;
}
#modalSucesso .modal-content h2, #modalErro .modal-content h2 {
  color: #373737;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}
#modalSucesso .modal-content p, #modalErro .modal-content p {
  color: #373737;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 30px;
  text-transform: uppercase;
}
#modalSucesso .modal-content button.close, #modalErro .modal-content button.close {
  border: none;
  background-color: #DEAA50;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 200px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
#modalSucesso .modal-content button.close:hover, #modalErro .modal-content button.close:hover {
  background-color: #151515;
  color: #DEAA50;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-form h2 {
  margin-block: 1rem;
}
.modal-form .campo {
  position: relative;
  margin-bottom: 12px;
}
.modal-form .campo .ipt {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #9A9A9A;
  height: 60px;
  font-size: 1.125rem;
  font-weight: 300;
  width: 100%;
}
.modal-form .campo .ipt:focus {
  outline: none;
}
.modal-form .campo .ipt:focus ~ label {
  top: 0;
  font-size: 0.75rem;
}
.modal-form .campo textarea {
  height: 80px !important;
  padding-top: 10px;
}
.modal-form .campo label {
  font-size: 1.125rem;
  font-weight: 300;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  top: calc(50% - 9px);
  left: 0;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.modal-form .campo .ipt:not(:-moz-placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
}
.modal-form .campo .ipt:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.75rem;
}
.modal-form .radios {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-top: 12px;
}
.modal-form .radios input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.modal-form .radios label {
  display: flex;
  align-items: center;
  min-height: 24px;
  position: relative;
  cursor: pointer;
  padding-left: 30px;
  font-size: 1rem;
  font-weight: 300;
}
.modal-form .radios label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #AC7D2C;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
}
.modal-form .radios label::after {
  content: "";
  -webkit-appearance: none;
  background-color: #DEAA50;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 2px;
  left: 2px;
  cursor: pointer;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  transform: scale(0);
  transition: all 0.2s ease-in-out;
}
.modal-form .radios input:checked + label::after {
  transform: scale(1);
}
.modal-form .checks {
  display: block;
  margin-bottom: 32px;
}
.modal-form .checks input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.modal-form .checks label {
  display: flex;
  align-items: center;
  min-height: 28px;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  font-size: 0.875rem;
  font-weight: 300;
}
.modal-form .checks label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #AC7D2C;
  box-shadow: none;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 4px;
  height: 24px;
  width: 24px;
  transition: all 0.2s ease-in-out;
}
.modal-form .checks label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.2s ease-in-out;
}
.modal-form .checks input:checked + label::before {
  background-color: #DEAA50;
}
.modal-form .checks input:checked + label::after {
  transform: rotate(45deg) scale(1);
}
.modal-form .btn-enviar {
  border: none;
  background-color: #DEAA50;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 200px;
  transition: all 0.4s ease-in-out;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.modal-form .btn-enviar:hover {
  background-color: #151515;
  color: #DEAA50;
}/*# sourceMappingURL=styles.css.map */