@font-face {
  font-family: "NoirPro Regular";
  src: url("../fonts/NoirPro-Regular.woff2");
}

@font-face {
  font-family: "NoirPro Medium";
  src: url("../fonts/NoirPro-Medium.woff2");
}

@font-face {
  font-family: "NoirPro Bold";
  src: url("../fonts/NoirPro-Bold.woff2");
}

@media (min-width: 1200px) {
  .container {
    max-width: 1190px;
  }
}

.whatsapp-float{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float svg{
  width: 30px;
  height: 30px;
}

footer {
  height: 80px;
  background-color: #3C6E2F;
  display: flex;
  justify-content: center;
}

footer>div {
  margin-top: 30px;
}

footer>div span {
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  font-family: "NoirPro Regular";
  background-color: #F3EFE3;
  z-index: 99999;
  box-shadow: 0px 8px 30px -21px #BB962C;
}

header .navbar {
  padding: 0px 1rem;
}

.navbar-brand img {
  width: 100px;
  height: 90px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  header .logo {
    width: 190px;
  }
}

@media (max-width: 575px) {
  header .logo {
    width: 90px;
  }
}

header .nav-item {
  margin: 0 24px;
}

header .nav-item a {
  color: #BB962C;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

header .nav-item a::before {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  bottom: -10px;
  background-color: #3C6E2F;
  transition: all 1s ease;
}

header .nav-item a.ativo::before {
  width: 100%;
}

@media (max-width: 1200px) {
  header .nav-item {
    margin: 4px 12px;
  }
}

@media (max-width: 1200px) {
  header .navbar-collapse {
    padding: 30px 0;
  }
}

header .navbar-toggler {
  width: 45px;
  height: 35px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  outline: none;
  border: none;
}

header .navbar-toggler span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #BB962C;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

header .navbar-toggler span:nth-child(1) {
  top: 2px;
}

@media (max-width: 575px) {
  header .navbar-toggler span:nth-child(1) {
    top: 3px;
  }
}

header .navbar-toggler span:nth-child(2) {
  top: 15px;
}

@media (max-width: 575px) {
  header .navbar-toggler span:nth-child(2) {
    top: 12px;
  }
}

header .navbar-toggler span:nth-child(3) {
  top: 15px;
}

@media (max-width: 575px) {
  header .navbar-toggler span:nth-child(3) {
    top: 12px;
  }
}

header .navbar-toggler span:nth-child(4) {
  top: 28px;
}

@media (max-width: 575px) {
  header .navbar-toggler span:nth-child(4) {
    top: 21px;
  }
}

@media (max-width: 575px) {
  header .navbar-toggler span {
    height: 2px;
  }
}

header .navbar-toggler.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

header .navbar-toggler.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

header .navbar-toggler.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

header .navbar-toggler.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media (max-width: 575px) {
  header .navbar-toggler {
    width: 30px;
    height: 25px;
  }
}

#banner {
  /* background-image: url("../../assets/img/fachada.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  height: 100vh;
  /* min-height: 990px; */
  position: relative;
  background-color: #BB962C;
}

#banner .background-container{
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
}

#banner .background-container img{
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

#banner .background-container img.fachada-mobile{
  display: none;
}

@media(max-width: 767px){
  #banner .background-container{
    height: auto;
  }

  #banner .background-container img.fachada-mobile{
    display: block;
  }

  #banner .background-container img.fachada-desktop{
    display: none;
  }
}

#banner .background-container .pelicula-container{
  position: relative;
}

#banner .background-container .pelicula-container .pelicula{
  position: absolute;
  width: 140%;
  height: 100%;
}

#banner .background-container .pelicula-container div{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #bb962c2b;
    z-index: 2;
}

@media(min-width: 1280px){
  #banner .background-container .pelicula-container{
    width: 7%;
  }
}

@media(min-width: 1366px){
  #banner .background-container .pelicula-container{
    width: 32%;
  }
}

@media(min-width: 1536px){
  #banner .background-container .pelicula-container{
    width: 48%;
  }
}

@media(min-width: 1920px){
  #banner .background-container .pelicula-container{
    width: 26%;
  }
}

@media(min-width: 1920px) and (max-height: 1079px){
  #banner .background-container .pelicula-container{
    width: 45%;
  }
}

@media(min-width: 1536px) and (max-width: 1699px){
  #banner .background-container{
    height: 100%;
  }
}

#banner .container {
  padding-top: 150px;
  position: relative;
  z-index: 3;
}

#banner .container .title {
  display: block;
  font-family: "NoirPro Regular";
  font-size: 27px;
  color: #fff;
  max-width: 500px;
  margin-bottom: 10px;
  text-align: start;
  width: fit-content;
}

@media (max-width: 575px) {
  #banner .container .title {
    font-size: 24px;
  }

  #banner .container .title:first-child{
    padding-top: 21px;
  }
  
  #banner .container .title:last-child{
    padding-bottom: 21px;
  }
}

@media(min-width: 768px){
  #banner{
    background-color: transparent;
  }

  #banner .container .title{
    background-color: #3C6E2F;
    padding: 0 12px;
    text-align: start;
    padding-block: 6px;
  }
}

@media(max-width: 1279px){
  #banner .container .title-container{
    margin-top: 66px;
  }
}

#banner .container .form-price {
  max-width: 387px;
  width: 100%;
  margin-top: 50px;
}

.form-mobile{
  display: none;
  background-color: #BB962C;
  padding: 16px 1rem 16px 1rem;
  font-family: "NoirPro Regular";
}

@media(max-width: 767px){
  #banner .container .form-price {
    display: none;
  }

  .form-mobile{
    display: block;
  }
}

@media (max-width: 575px) {
  #banner .container .form-price img {
    width: 290px;
  }
}

#banner .container .form-price form {
  background-color: #F3EFE3;
  padding: 35px;
  font-family: "NoirPro Regular";
}

.form-price form p {
  color: #BB962C;
  font-size: 19px;
  text-transform: uppercase;
}

@media(max-width: 767px){
  .form-price form p{
    color: #FFF;
  }
}

@media (max-width: 575px) {
  .form-price form p {
    font-size: 16px;
  }
}

.form-price form input[type="text"],
.form-price form input[type="email"],
.form-price form input[type="tel"] {
  margin-bottom: 5px;
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 5px;
  font-size: 12px;
  color: #3C6E2F;
  padding-left: 10px;
}

.form-price form input::placeholder{
  color: #3C6E2F;
}

.form-price form input[type="submit"] {
  background-color: #3C6E2F;
  width: 128px;
  height: 36px;
  color: #fff;
  text-transform: uppercase;
  border: 0;
}

@media (max-width: 575px) {
  .form-price form input[type="submit"] {
    font-size: 14px;
    width: 100px;
    height: 35px;
  }
}

.form-price form .submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-price form .submit span {
  color: #BB962C;
  font-size: 12px;
}

@media (max-width: 575px) {
  #banner .container .form-price form {
    max-width: 276px;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  #banner .container .form-price {
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  #banner .container .form-price {
    max-width: 277px;
    margin: 60px auto 0;
  }
}

@media (max-width: 768px) {
  #banner .container {
    padding-top: 125px;
  }
}

@media (max-width: 575px) {
  #banner .container {
    padding-top: 90px;
  }
}

@media(min-width: 1366px) and (max-width: 1535px) and (max-height: 767px){
  #banner{
    height: 100%;
    min-height: 100%;
    padding-bottom: 30px;
  }

  #banner .background-container{
    height: 100%;
  }
}

@media (max-width: 767px) {
  #banner {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 100px;
  }

  #banner .container{
    order: 1;
    padding-top: 0;
  }

  #banner .background-container{
    position: initial;
  }

  #banner .container .title-container{
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  #banner {
    /* min-height: 666px; */
    /* background-image: url("../../assets/img/fachada.webp"); */
  }
}

#commercialBar {
  position: fixed;
  bottom: 0;
  max-width: 1160px;
  left: calc(50% - 555px);
  width: 100%;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  background-color: #508A9A;
  font-family: "NoirPro Regular";
  z-index: 9999;
  display: none;
}

#commercialBar .chanfro {
  position: absolute;
  left: -24px;
  top: 0;
}

@media (max-width: 575px) {
  #commercialBar .chanfro {
    display: none;
  }
}

#commercialBar a {
  text-decoration: none;
  color: #fff;
  display: flex;
}

#commercialBar a img {
  margin-right: 20px;
}

@media (max-width: 991px) {
  #commercialBar a img {
    margin: 0;
  }
}

@media (max-width: 575px) {
  #commercialBar a img {
    width: 20px;
  }
}

#commercialBar a.topo {
  background-color: #094D57;
  width: 88px;
  height: 56px;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#commercialBar a.topo img {
  margin: 0;
}

@media (max-width: 575px) {
  #commercialBar a.topo img {
    width: 12px;
  }
}

@media (max-width: 575px) {
  #commercialBar a.topo {
    width: 60px;
    height: 38px;
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  #commercialBar a span {
    display: none;
  }
}

@media (max-width: 991px) {
  #commercialBar a {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1200px) {
  #commercialBar {
    max-width: 930px;
    left: calc(50% - 441px);
  }
}

@media (max-width: 991px) {
  #commercialBar {
    max-width: 690px;
    left: calc(50% - 321px);
  }
}

@media (max-width: 767px) {
  #commercialBar {
    max-width: 510px;
    left: calc(50% - 231px);
  }
}

@media (max-width: 575px) {
  #commercialBar {
    max-width: unset;
    left: 0;
    height: 45px;
  }
}

#empreendimento {
  padding: 100px 0;
}

#empreendimento .empre-container {
  display: flex;
}

#empreendimento .empre-container .images {
  display: flex;
  margin-right: 60px;
}

#empreendimento .empre-container .images{
  flex: 2;
}

#empreendimento .empre-container .text{
  flex: 1;
}

#empreendimento .empre-container .images .principal {
  /* height: 501px; */
  /* width: 448px; */
  object-fit: contain;
  width: 100%;
  /* max-width: 733px; */
  height: 499px;
  height: 88%;
  object-fit: cover;
  top: 39px;
  position: relative;
}

@media(min-width: 1200px){
  #empreendimento .empre-container{
    max-width: 1280px;
  }
}

/* @media (max-width: 1200px) {
  #empreendimento .empre-container .images .principal {
    width: 320px;
    height: 501px;
  }
} */

/* @media (max-width: 767px) {
  #empreendimento .empre-container .images .principal {
    width: 246px;
  }
} */

/* @media (max-width: 575px) {
  #empreendimento .empre-container .images .principal {
    width: 100%;
    height: 245px;
  }
} */

#empreendimento .empre-container .images .minis {
  display: flex;
  flex-direction: column;
  width: 262px;
}

#empreendimento .empre-container .images .minis img {
  height: 50%;
  object-fit: cover;
}

@media (max-width: 575px) {
  #empreendimento .empre-container .images .minis img {
    width: 50%;
    height: 123px;
  }
}

@media (max-width: 1023px) {
  #empreendimento .empre-container .images .minis {
    width: 230px;
    height: 500px;
  }

  #empreendimento .empre-container .images .principal {
    top: 0;
  }
}

/* @media(min-width: 768px){
  #empreendimento .empre-container .images {
    height: 500px;
  }
} */

/* @media(min-width: 1024px){
  #empreendimento .empre-container .images {
    height: 535px;
  }
} */

@media (max-width: 575px) {
  #empreendimento .empre-container .images .minis {
    flex-direction: unset;
    width: unset;
    height: unset;
  }
}

@media (max-width: 1200px) {
  #empreendimento .empre-container .images {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  #empreendimento .empre-container .images {
    margin-bottom: 40px;
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  #empreendimento .empre-container .images {
    flex-direction: column;
  }
}

#empreendimento .empre-container .text .topic:first-child {
  margin-top: 30px;
}

@media (max-width: 575px) {
  #empreendimento .empre-container .text .topic:first-child {
    margin-top: unset;
  }
}

#empreendimento .empre-container .text .topic h3 {
  font-size: 25px;
  font-family: "NoirPro Bold";
  color: #BB962C;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  #empreendimento .empre-container .text .topic h3 {
    font-size: 19px;
  }
}

#empreendimento .empre-container .text .topic p {
  font-size: 17px;
  font-family: "NoirPro Regular";
  color: #3C6E2F;
}

@media (max-width: 575px) {
  #empreendimento .empre-container .text .topic p {
    font-size: 15px;
  }
}

#empreendimento .empre-container .text .topic:first-child {
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  #empreendimento .empre-container .text .topic:first-child {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  #empreendimento .empre-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575px) {
  #empreendimento {
    padding: 50px 0;
  }
}

#lazer {
  background-image: url("../img/background.webp");
  background-size: cover;
  padding: 50px 0;
  position: relative;
}

#lazer > *{
  position: relative;
  z-index: 1;
}

#lazer::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #f3efe3f2;
}

#lazer h2 {
  font-family: "NoirPro Bold";
  font-size: 40px;
  text-align: center;
  color: #BB962C;
  /* color: transparent; */
  /* -webkit-text-stroke-width: 1px; */
  /* -webkit-text-stroke-color: #BB962C; */
}

#lazer p {
  font-family: "NoirPro Regular";
  text-align: center;
  color: #3C6E2F;
}

#lazer .images {
  display: flex;
}

#lazer .images .principal {
  max-width: 720px;
  width: 100%;
  margin-right: 20px;
  position: relative;
}

#lazer .images .principal img {
  width: 100%;
  height: 402px;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 575px) {
  #lazer .images .principal img {
    height: 250px;
  }
}

#lazer .images .principal .tag {
  padding-left: 32px;
  position: absolute;
  bottom: 17px;
  left: 20px;
  width: 211px;
  height: 32px;
  text-align: center;
  color: #fff;
  font-family: "NoirPro Bold";
  font-size: 12px;
  line-height: 32px;
  /* background-image: url("../../assets/img/tag.png"); */
  background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(60, 110, 47, 1) 5%);
  clip-path: polygon(0px 0%, calc(100% - 10px) 0%, 100% 0px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0px 100%, 0% calc(100% - 10px), 0% 10px);
}

#lazer .images .principal .tag::before{
    content: '';
    position: absolute;
    height: 32px;
    width: 32px;
    background: #3C6E2F;
    left: 5px;
    box-shadow: 7px 0px 5px 0px rgba(0,0,0,0.36);
    z-index: -1;
}

#lazer .images .principal .tag span{
  position: absolute;
  height: 1px;
  width: 32px;
  background-color: #fff;
}

#lazer .images .principal .tag span:nth-child(1){
  top: 5px;
  left: -21px;
}

#lazer .images .principal .tag span:nth-child(2){
  top: 12px;
  left: -15px;
}

#lazer .images .principal .tag span:nth-child(3){
  top: 19px;
  left: -9px;
}

#lazer .images .principal .tag span:nth-child(4){
  top: 26px;
  left: -3px;
}

@media (max-width: 1199px) {
  #lazer .images .principal {
    max-width: 494px;
  }
}

@media (max-width: 991px) {
  #lazer .images .principal {
    max-width: unset;
  }
}

#lazer .images .minis {
  max-width: 422px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#lazer .images .minis .mini-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#lazer .images .minis .owl-dots {
  display: flex;
  justify-content: center;
  width: 100%;
}

#lazer .images .minis .owl-dots .owl-dot {
  outline: 0;
}

#lazer .images .minis .owl-dots .owl-dot.active span {
  background-color: #3C6E2F;
}

#lazer .images .minis .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4cdcd;
  display: block;
  margin: 0 5px;
}

#lazer .images .minis .mini-box {
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
}

#lazer .images .minis .mini-box img {
  border-radius: 5px;
  height: 121px;
  width: 200px;
  object-fit: cover;
}

#lazer .images .minis .mini-box span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #3c6e2f91;
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "NoirPro Bold";
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

@media (max-width: 991px) {
  #lazer .images .minis .mini-box {
    position: unset;
  }
}

@media (max-width: 991px) {
  #lazer .images .minis {
    display: none !important;
    max-width: unset;
    justify-content: space-evenly;
    margin-top: 20px;
  }
}

#lazer .images .minis.mobile {
  display: none;
}

@media (max-width: 991px) {
  #lazer .images .minis.mobile {
    display: block !important;
  }
}

@media (max-width: 991px) {
  #lazer .images {
    flex-direction: column;
  }
}

#video{
  padding: 50px 0;
}

#video h3 {
  font-family: "NoirPro Bold";
  font-size: 40px;
  text-align: center;
  color: #BB962C;
}

#video .video{
  width: 100%;
  height: 100%;
  position: relative;
  padding-bottom: 56%;
}

#video .video iframe{
  position: absolute;
  left: 0%;
  width: 100%;
  height: 100%;
}

#localizacao {
  padding: 50px 0;
  background-image: url("../img/background.webp");
  background-size: cover;
  position: relative;
}

#localizacao > *{
  position: relative;
  z-index: 1;
}

#localizacao::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #f3efe3f2;
}

#localizacao h3 {
  font-family: "NoirPro Bold";
  text-align: center;
  font-size: 40px;
  color: #BB962C;
  /* color: transparent; */
  /* -webkit-text-stroke-width: 1px; */
  /* -webkit-text-stroke-color: #BB962C; */
}

#localizacao .subtitle {
  font-family: "NoirPro Regular";
  text-align: center;
  color: #3C6E2F;
}

#localizacao p{
  color: #3C6E2F;
}

#localizacao .iframe-map iframe {
  width: 100%;
}

@media (max-width: 575px) {
  #localizacao .iframe-map iframe {
    height: 250px;
  }
}

@media (max-width: 575px) {
  #localizacao .iframe-map {
    margin-top: 15px;
  }
}

#localizacao .localizacao-text {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  margin: 57px auto;
}

#localizacao .localizacao-text h3 {
  color: #3C6E2F;
  font-weight: 700;
  font-family: "NoirPro Bold";
}

@media (max-width: 767px) {
  #localizacao .localizacao-text {
    max-width: unset;
    text-align: center;
  }
}

#localizacao .img-loc {
  margin-top: 10px;
}

#localizacao .img-loc img {
  width: 100%;
  height: 188px;
}

@media (max-width: 767px) {
  #localizacao .img-loc img {
    margin-bottom: 15px;
  }
}

#localizacao .img-loc p {
  margin: 10px 0;
  font-size: 16px;
  text-align: left;
  font-family: "NoirPro Regular";
}

@media (max-width: 1200px) {
  #localizacao .img-loc p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  #localizacao .img-loc p {
    text-align: center;
  }
}

@media (max-width: 575px) {
  #localizacao .img-loc {
    display: none;
  }
}

#localizacao .mobile {
  display: none;
}

@media (max-width: 575px) {
  #localizacao .mobile {
    display: block;
    margin-top: 30px;
  }
}

#localizacao .mobile .owl-item img {
  height: 170px;
  object-fit: cover;
}

@media (max-width: 575px) {
  #localizacao .container {
    padding: 0;
  }
}

@media (max-width: 575px) {
  #localizacao .pding {
    margin: 0 !important;
  }
}

@media (max-width: 575px) {
  #localizacao {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}

#plantas {
  padding: 50px 0;
}

#plantas h3 {
  font-family: "NoirPro Bold";
  text-align: center;
  font-size: 40px;
  color: #BB962C;
  /* color: transparent; */
  /* -webkit-text-stroke-width: 1px; */
  /* -webkit-text-stroke-color: #BB962C; */
}

#plantas .subtitle {
  font-family: "NoirPro Regular";
  text-align: center;
  color: #3C6E2F;
}

#plantas .select {
  display: none;
  justify-content: center;
  margin-bottom: 20px;
}

#plantas .select select {
  /* width: 60%; */
  width: -webkit-fill-available;
  background-color: #3C6E2F;
  border-radius: 9px;
  color: #fff;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url("../img/arrow-bottom.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-position-x: 95%;
}

@media (max-width: 991px) {
  #plantas .select {
    display: flex;
  }
}

#plantas .plantas-content {
  display: flex;
}

#plantas .plantas-content .box-descrip-plantas {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#plantas .plantas-content .box-descrip-plantas a {
  font-size: 15px;
  color: #fff;
  text-decoration: unset;
  max-width: 292px;
  width: 100%;
  height: 36px;
  margin-bottom: 10px;
  line-height: 36px;
  text-align: center;
  font-weight: 500;
  position: relative;
  background-color: #3C6E2F;
  z-index: 2;
}

#plantas .plantas-content .box-descrip-plantas a div{
  position: absolute;
  background: #3C6E2F;
  height: 36px;
  width: 68px;
  left: -28px;
  top: 0;
  display: none;
  z-index: -1;
}

#plantas .plantas-content .box-descrip-plantas a div span{
  position: absolute;
  height: 1px;
  background-color: #fff;
  left: 0;
}

#plantas .plantas-content .box-descrip-plantas a div span:nth-child(1){
  top: 5px;
  width: 32px;
}

#plantas .plantas-content .box-descrip-plantas a div span:nth-child(2){
  top: 15px;
  width: 22px;
}

#plantas .plantas-content .box-descrip-plantas a div span:nth-child(3){
  top: 25px;
  width: 12px;
}

#plantas .plantas-content .box-descrip-plantas a.active div{
  display: block;
}

#plantas .plantas-content .box-descrip-plantas a::after{
  content: '';
  position: absolute;
  right: -15px;
  background-color: #3C6E2F;
  width: 16px;
  height: 101%;
  clip-path: polygon(0px 0%, calc(100% - 10px) 0%, 100% 0px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0px 100%, 0% calc(100% - 10px), 0% 10px);
}

/* #plantas .plantas-content .box-descrip-plantas a:before {
  content: '';
  display: none;
  width: 68px;
  height: 36px;
  position: absolute;
  left: -55px;
  bottom: 0px;
  z-index: 999;
  transition: width 1s ease;
  background-image: url("../../assets/img/bloco-planta.png");
} */

/* @media (max-width: 768px) {
  #plantas .plantas-content .box-descrip-plantas a:before {
    height: 32px;
    width: 44px;
    left: -44px;
    background-size: cover;
  }
} */

/* #plantas .plantas-content .box-descrip-plantas a .bordinha {
  position: absolute;
  top: 0px;
  right: -10px;
  height: 36px;
} */

/* @media (max-width: 768px) {
  #plantas .plantas-content .box-descrip-plantas a .bordinha {
    top: 0px;
    right: -8px;
    height: 32px;
  }
} */

#plantas .plantas-content .box-descrip-plantas a.active {
  color: #ffff;
}

@media (max-width: 767px) {
  #plantas .plantas-content .box-descrip-plantas a.active {
    padding: 0 20px;
  }
}

/* #plantas .plantas-content .box-descrip-plantas a.active:before {
  display: block;
} */

@media (max-width: 768px) {
  #plantas .plantas-content .box-descrip-plantas a {
    height: 32px;
    font-size: 15px;
    line-height: 32px;
  }
}

@media (max-width: 992px) {
  #plantas .plantas-content .box-descrip-plantas {
    display: none;
  }
}

@media (max-width: 767px) {
  #plantas .plantas-content .box-descrip-plantas {
    margin-bottom: 10px;
  }
}

#plantas .plantas-content .box-plantas {
  max-width: 742px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 15px 1px #00000029;
}

#plantas .plantas-content .box-plantas .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

#plantas .plantas-content .box-plantas .card-img img {
  max-width: 685px;
  height: 545px;
  object-fit: contain;
}

@media (max-width: 991px) {
  #plantas .plantas-content .box-plantas .card-img img {
    height: 500px;
  }
}

@media (max-width: 575px) {
  #plantas .plantas-content .box-plantas .card-img img {
    height: 250px;
  }
}

@media (max-width: 1199px) {
  #plantas .plantas-content .box-plantas {
    max-width: 635px;
  }
}

@media (max-width: 991px) {
  #plantas .plantas-content .box-plantas {
    max-width: unset;
    height: 500px;
  }
}

@media (max-width: 575px) {
  #plantas .plantas-content .box-plantas {
    height: unset;
    max-width: unset;
  }
}

@media (max-width: 767px) {
  #plantas .plantas-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

#incorporacao {
  margin-top: 3px;
  background-color: #BB962C;
  padding: 50px 0;
  position: relative;
}

#rincorporacao:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #E9E9E9;
}

@media (max-width: 991px) {
  #incorporacao:before {
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 575px) {
  #incorporacao:before {
    height: 36%;
  }
}

#incorporacao:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #A0BCC2;
}

@media (max-width: 991px) {
  #incorporacao:after {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 575px) {
  #incorporacao:after {
    height: 64%;
  }
}

#incorporacao .realizacao-container {
  display: flex;
  position: relative;
  z-index: 9;
}

#incorporacao .realizacao-container .logo {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  #incorporacao .realizacao-container .logo img {
    margin-top: -80px;
  }
}

@media (max-width: 575px) {
  #incorporacao .realizacao-container .logo img {
    width: 220px;
    margin-top: unset;
  }
}

@media (max-width: 991px) {
  #incorporacao .realizacao-container .logo {
    height: 250px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  #incorporacao .realizacao-container .logo {
    height: unset;
    width: 100%;
  }
}

#incorporacao .realizacao-container .text {
  width: 50%;
  padding-left: 50px;
}

#incorporacao .realizacao-container .text h3 {
  font-family: "NoirPro Bold";
}

@media (max-width: 575px) {
  #incorporacao .realizacao-container .text h3 {
    text-align: center;
  }
}

#incorporacao .realizacao-container .text p {
  font-family: "NoirPro Regular";
  font-size: 15px;
}

@media (max-width: 991px) {
  #incorporacao .realizacao-container .text {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #incorporacao .realizacao-container .text {
    padding-left: unset;
    margin-top: 85px;
  }
}

@media (max-width: 991px) {
  #incorporacao .realizacao-container {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  #incorporacao {
    padding: 50px 0 25px;
  }
}

#realizacao {
  padding: 50px 0;
  position: relative;
}

#realizacao p{
  color: #BB962C;
}

#realizacao:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #F3EFE3;
}

@media (max-width: 991px) {
  #realizacao:before {
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 575px) {
  #realizacao:before {
    height: 36%;
  }
}

#realizacao:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #F3EFE3;
}

@media (max-width: 991px) {
  #realizacao:after {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 50%;
  }
}

@media (max-width: 575px) {
  #realizacao:after {
    height: 64%;
  }
}

#realizacao .realizacao-container {
  display: flex;
  position: relative;
  z-index: 9;
}

#realizacao .realizacao-container .logo {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#realizacao .realizacao-container .logo img {
  width: 45%;
  margin-left: -530px;
}

@media (max-width: 992px) {
  #realizacao .realizacao-container .logo img {
    margin-top: -80px;
  }
}

@media (max-width: 575px) {
  #realizacao .realizacao-container .logo img {
    width: 220px;
    margin-top: unset;
  }
}

@media (max-width: 991px) {
  .display-desktop {
    display: none;
  }


  @media (max-width: 575px) {
    .display-mobile {
      display: contents;
    }
  }



  @media (max-width: 573px) {
    .display-mobile img {
      margin-bottom: 20px;
    }
  }


  #realizacao .realizacao-container .logo {
    height: 250px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .display-mobile {
    display: none;
  }
}

@media (max-width: 575px) {
  #realizacao .realizacao-container .logo {
    height: unset;
    width: 100%;
  }
}

#realizacao .realizacao-container .text {
  width: 50%;
  padding-left: 50px;
}

#realizacao .realizacao-container .text h3 {
  font-family: "NoirPro Bold";
}

@media (max-width: 575px) {
  #realizacao .realizacao-container .text h3 {
    text-align: center;
  }
}

#realizacao .realizacao-container .text p {
  font-family: "NoirPro Regular";
  font-size: 15px;
}

@media (max-width: 991px) {
  #realizacao .realizacao-container .text {
    width: 100%;
  }
}

@media (max-width: 575px) {
  #realizacao .realizacao-container .text {
    padding-left: unset;
    margin-top: 85px;
  }
}

@media (max-width: 991px) {
  #realizacao .realizacao-container {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  #realizacao {
    padding: 50px 0 25px;
  }
}

#contato {
  padding: 50px 0px;
}

#contato h2 {
  font-family: "NoirPro Bold";
  text-align: center;
  font-size: 40px;
  color: #BB962C;
  /* color: transparent; */
  /* -webkit-text-stroke-width: 1px; */
  /* -webkit-text-stroke-color: #BB962C; */
}

#contato p {
  font-family: "NoirPro Regular";
  text-align: center;
  color: #3C6E2F;
}

#contato form {
  padding: 70px 100px;
  font-family: "NoirPro Regular";
}

#contato form input {
  margin-bottom: 10px;
}

#contato form input::placeholder,
#contato form textarea::placeholder{
  color: #3C6E2F;
}

#contato form .coluna-1 {
  padding-right: 5px;
}

@media (max-width: 767px) {
  #contato form .coluna-1 {
    padding-right: 15px;
  }
}

#contato form .coluna-2 {
  padding-left: 5px;
}

@media (max-width: 767px) {
  #contato form .coluna-2 {
    padding-left: 15px;
  }
}

#contato form textarea {
  margin-bottom: 10px;
  min-height: 182px;
}

#contato form .button-form {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#contato form .button-form span {
  margin-right: 20px;
  font-size: 16px;
  color: #3C6E2F;
}

@media (max-width: 575px) {
  #contato form .button-form span {
    font-size: 12px;
  }
}

#contato form .button-form button {
  padding: 8px 63px;
  border-radius: 3px;
  background-color: #3C6E2F;
  border: 0;
}

#contato form .form-control {
  background-color: #F3EFE3;
  border: 0px;
  height: 54px;
}

@media (max-width: 991px) {
  #contato form {
    padding: 70px 0px;
  }
}

@media (max-width: 767px) {
  #contato form {
    padding: 50px 35px;
  }
}

@media (max-width: 575px) {
  #contato form {
    padding: 20px 0px;
  }
}

@media (max-width: 575px) {
  #realizacao .realizacao-container {
    align-items: center;
  }
}

@media (max-width: 575px) {
  .display-image img {
    margin-top: -10px;
  }
}


@media (min-width: 576px) and (max-width: 768px) {
  .display-image {
    align-items: center;
  }
}

#restaurantes {
  margin-left: 30px;
}

cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 48%;
  background: #3C6E2F;
  color: #fff;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease-in-out;
}

@media screen and (max-width: 550px) {
  cookie{
    left: 0%;
    width: 100%;
  }
}

cookie .cookie-content {
  padding: 3%;
}

cookie .cookie-content .btn-confirm{
  text-align: end;
}

cookie .cookie-content .btn-confirm button{
  padding: 2% 3%;
  border: none;
  color: #BB962C;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0.5rem;
  outline-style: none;
  margin-top: 1rem;
  font-size: 0.75rem;
}

cookie .cookie-content .cookie-content-text a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#policy-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.policy_content-title {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.policy_content-title strong{
  font-size: inherit;
}

#policy-modal.active{
  display: flex;
}

.policy-content {
  max-width: 90vw;
  width: 100%;
  max-height: 90%;
  height: 100%;
  margin-inline: auto;
  background: #fff;
  overflow-y: scroll;
}

.policy-content ul {
  list-style: none;
}

.policy-content  header {
  position: fixed;
  max-width: 90vw;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
}

@media(max-width: 767px){
  .policy-content  header,
  .policy-content{
    max-width: 95%;
  }
}

.policy-content  header button {
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
}

.policy-content header button img{
  width: 100%;
}

.policy-content .policy {
  padding: 2rem;
}

.policy-content .policy p + p{
  margin-top: 1.5rem;
}

.policy-content .policy p + p strong{
  display: inline;
}

.policy-content .policy a{
  color: blue;
  text-decoration: underline;
}

.policy-content .policy strong{
  display: block;
  margin-block: 1.5rem 1rem;
}

/*# sourceMappingURL=main.css.map */