/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
  overflow-x: hidden;
}

.img-fluid {
  width: 100%;
}

p,
h2 {
  font-family: "Roboto", sans-serif;
}

.title-section {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 46px;
  text-transform: uppercase;
  color: #c77d36;
  position: relative;
  margin-left: 50%;
  transition: all 2s;
}

.title-section.tabela {
  height: 57px;
  overflow: hidden;
}

.title-section.right {
  display: flex;
  justify-content: flex-end;
  margin-right: 50%;
  transition: all 2s;
}

.title-section.center {
  display: flex;
  justify-content: center;
}

.title-section.color-white {
  color: #fff;
}

.title-section span {
  background-color: #f5f5f5;
  position: relative;
  z-index: 1;
  padding-right: 20px;
}

.title-section span.bg-color-site {
  background-color: #c49575;
}

.title-section.right span {
  display: flex;
  justify-content: flex-end;
  padding-right: 0px;
  padding-left: 20px;
}

.title-section::after {
  content: "";
  position: absolute;
  bottom: 27px; /* Alinha a linha no final da seção */
  left: 0;
  width: 0%;
  height: 1px; /* Ajuste a espessura da linha conforme desejado */
  background-color: #c77d36; /* Escolha a cor da linha */
  z-index: 0;
  transition: all 2s;
}

.title-section.active {
  margin-left: 0;
}

.title-section.active.right {
  margin-right: 0;
}

.title-section.active::after {
  width: 100%;
}

.title-section.border-white::after {
  background-color: #fff; /* Escolha a cor da linha */
}

.title-section.border-none::after {
  background-color: transparent;
}

.bg-white {
  background-color: #fff !important;
}

.padding.right {
  padding-right: 40px;
}

/* header */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: url(../images/bg-header.jpg);
  background-size: contain;
  height: 7.9vw;
  /* filter: blur(5px); */
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px; /* Ajuste o padding conforme necessário */
  height: 7.9vw;
}
.logo {
  display: flex;
  filter: brightness(100);
  max-width: calc(9vw + 5px);
  align-items: center;
}
nav.navbar {
  width: 100%;
  display: flex;
  justify-content: end;
}
nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav .box-lang ul {
  gap: 10px;
  margin: 0 80px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
}

nav ul li a:hover {
  color: #c77d36;
}

nav ul li a.active {
  color: #c77d36;
}

/* Seções */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1445px;
  position: relative;
}
.container-right {
  /* padding-right: 0px; */
  /* margin-right: 0; */
  /* max-width: 1675px; */
  /* padding-right: 15px; */
  padding-left: 6%;
  /* margin-right: auto; */
  margin-left: auto;
  width: 100%;
  /* max-width: calc(5px + 92vw); */
  position: relative;
  /* background: red; */
  /* position: fixed; */ /* Fixa a div na tela */
  /* right: 0; */ /* Cola a div ao lado direito da tela */
  /* top: 0; */ /* Opcional: fixa ao topo */
  /* height: 100%; */ /* Faz a div ocupar toda a altura da tela */
  max-width: 1850px; /* Largura máxima da div (ajuste conforme necessário) */
  /* width: calc(100vw - 50%); */ /* A largura diminui proporcionalmente ao viewport */
  /* min-width: 1560px; */ /* Define uma largura mínima para evitar ficar muito pequena */
}
.row {
  display: flex;
  flex-wrap: wrap;
}
/* .row>* {
    padding: 0 20px;
    box-sizing: border-box;
} */
.row.flex-center {
  align-items: center;
}
.col-lg-50 {
  flex: 0 0 auto;
  width: 50%;
}
@media (max-width: 560px) {
  .col-sm-100 {
    flex: 0 0 auto;
    width: 100%;
  }
}

section {
  padding: 10vw 0 0px 0;
}

section#home {
  padding: 0 0 0px 0;
}

/* Banner */
.banner {
  background: url(../images/bg-banner.png) no-repeat top center;
  background-size: cover;
  margin-top: calc(13vw - 400px);
  margin-top: calc(15% - 35vw);
  /* min-height: 37vw; */
  position: relative;
  display: flex;
  align-items: center;
  padding-top: calc(13vw - -100px);
  padding-bottom: 7vw;
}

.banner .title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: calc(5vw + 3px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.banner p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  text-align: left;
}

/* Modal */
.modal-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1111;
  flex-flow: column;
}
.modal-video video {
  width: 80%;
}
button#close-modal-video {
  display: flex;
  width: 80%;
  justify-content: flex-end;
  background: #000;
  border: none;
  color: #fff;
  padding: 9px;
  cursor: pointer;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  z-index: 1100;
  transition: transform 0.3s ease;
  margin-left: 15px;
  margin-top: -3px;
  color: #fff;
}

.hamburger span {
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin: 2px 0;
  transition: 0.3s;
}

/* Versão mobile */
@media (max-width: 1200px) {
  nav .box-lang ul {
    gap: 8px;
    margin: 0px 20px;
  }

  nav ul {
    gap: 10px;
    transition: all 2s;
  }

  .navbar > ul li {
    padding: 0px;
    padding-left: 15px;
  }

  .navbar > ul li:first-child {
    padding-top: 25px;
  }

  .navbar > ul li:last-child {
    padding-bottom: 25px;
  }

  .navbar > ul li a {
    color: #56a4d2;
  }

  .navbar > ul {
    /* display: none; */
    flex-direction: column;
    position: absolute;
    top: 7.8vw;
    left: 0;
    width: 100%;
    background-color: #f5f5f5;
    /* transform: translateY(-100%);   */
    box-shadow: 0px 0px 7px #c8803b;

    max-height: 0; /* Oculta o menu inicialmente */
    overflow: hidden; /* Garante que o conteúdo extra seja oculto */
    transition: max-height 0.3s ease; /* Animação suave ao mostrar/ocultar */
  }

  .navbar ul.show {
    /* display: flex; */
    /* transform: translateY(0); */
    max-height: 300px; /* Ajuste o valor conforme necessário para comportar os itens do menu */
  }

  .hamburger {
    display: flex;
  }
}

.carousel-container {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.carousel-wrapper {
  display: flex;
  overflow: hidden;
  width: 96%;
  width: 10000px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel .foto {
  width: calc(95vw + 5px);
  display: block;
  flex-wrap: wrap;
  gap: 10px;
  columns: 4;
}

.carousel .foto figure {
  overflow: hidden;
}

.carousel .foto img {
  transition: all 0.3s ease-in;
}

.carousel .foto img:hover {
  transform: scale(1.1);
}

/* @media (max-width: 1460px) {
        .carousel .foto img {
            height: 20.5vw;
        }
    }

    @media (max-width: 991px) {
        .carousel .foto img {
            height: calc(21vw - 1vw);
        }
    }

    @media (max-width: 500px) {
        .carousel .foto img {
            height: calc(19vw - 1vw);
        }
    }

    @media (max-width: 340px) {
        .carousel .foto {
            flex-flow: column;
        }
        .carousel .foto img {
            width: 82%;
            height: 50vw;
            object-fit: contain;
        }
    } */

/* .carousel .foto img {
    width: calc(48vw - 5px);
    height: 27vw;
    object-fit: cover;
  } */

.carousel-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #c77d36;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  background: none;
  font-size: 21px;
  line-height: 1;
  border-radius: 21px;
  width: 37px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  /* height: 100vw; */
}

.carousel-container .prev {
  left: 0px;
}

.carousel-container .next {
  right: 0px;
}

.carousel-container button:hover {
  color: rgba(0, 0, 0, 0.8);
}

.galeria .foto {
  columns: 4;
}

.carousel .foto img:hover {
  transform: scale(0.9);
  filter: grayscale(1);
}

.gallery .gallery-row {
  columns: 4;
  position: relative;
}

.gallery-item {
  position: relative;
}

.gallery-img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in;
  cursor: pointer;
  border-radius: 10px;
  opacity: 0;
}

.gallery-item img::after {
  content: "🔍";
  color: #1d1d1b;
  position: absolute;
  top: 39%;
  left: 42%;
  display: block;
  font-size: 35px;
  filter: sepia(1);
  opacity: 0;
  transition: all 0.3s ease-in;
}

.gallery-item:hover img::after {
  opacity: 1;
}

.gallery-img.active {
  opacity: 1;
}

.gallery-img:hover {
  transform: scale(0.94);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  filter: drop-shadow(2px 4px 6px black) brightness(1.5);
}

.gallery-item.hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gallery-item.show {
  max-height: 100%;
}

.btnVerMaisFotos {
  position: relative;
  background: #c77d36;
  width: 100%;
  left: 0;
  margin-top: 0;
  color: #fff;
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  padding: 13px;
  text-align: center;
  border-radius: 12px;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
}

.btnVerMaisFotos:hover {
  background: #56a4d2;
}

.btnVerMaisFotos.hide {
  display: none;
}

/* Animação para a transição suave */
.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
}

.slide-in-left {
  transform: translateX(0);
  opacity: 1;
}

.slide-in-right {
  transform: translateX(0);
  opacity: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.modal button {
  color: white;
  font-size: 30px;
  background: none;
  border: navajowhite;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Filme */
.filme {
  background: url(../images/bg-video.png) no-repeat top center fixed;
  background-size: cover;
  min-height: 30vw;
  position: relative;
  display: flex;
  align-items: center;
}

.filme .title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: calc(5vw + 3px);
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.6;
}

.filme #play-video {
  background: url(../images/ico-play.png) no-repeat;
  width: 15vw;
  height: 11vw;
  max-width: 210px;
  background-size: contain;
  border: none;
  cursor: pointer;
  float: right;
}

.filme #play-video:hover {
  filter: blur(1px);
}

.localizacao {
  position: relative;
  margin-top: -27px;
}

.localizacao .title {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: calc(5vw + 3px);
  line-height: 90px;
  color: #b79476;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 4rem;
}

.localizacao p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 36px;
  color: #4d4e4e;
  text-align: justify;
  margin-top: 15px;
  padding-bottom: 3rem;
}

#planta {
  background: #c49575 url(../images/bg-plantas.png) repeat top center;
  padding-top: 0;
  padding-bottom: 5rem;
}

#planta .title-section {
  padding-top: 25px;
}

#planta .box-tab .tab-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#planta .content {
  max-width: 650px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: -115px;
  padding: 15%;
  padding-right: 10px;
}

#planta .img-planta {
  max-width: 650px;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

#planta .buttons button {
  color: #c77d36;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 15px;
  display: table;
  width: 100%;
  text-align: left;
}

#planta .buttons.opcao button {
  color: #525252;
  font-weight: 100;
}

#planta p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 23px;
  color: #525252;
  text-transform: uppercase;
}

#planta .buttons button.active {
  font-weight: bold;
}

#planta h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 46px;
  color: #c77d36;
  text-transform: uppercase;
}

#planta p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 23px;
  color: #525252;
  text-transform: uppercase;
}

#planta .title-p {
  padding: 45px 0;
}

.parallax-bg {
  background-size: cover;
  background-attachment: fixed; /* Parallax fixo no scroll */
  background-position: center;
  transition: background-position 0.1s ease-out; /* Efeito de transição suave */
}

.parallax-bg2 {
  background-size: cover;
  background-attachment: fixed; /* Parallax fixo no scroll */
  background-position: center;
  transition: background-position 0.1s ease-out; /* Efeito de transição suave */
}

.box-tab .tab-content {
  display: none;
}

.box-tab .tab-content:first-child {
  display: block;
}

.box-vendas {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

#tabela-vendas .img-masterplan {
  margin: 0 auto;
  display: table;
  max-width: 950px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.box-vendas .box-item {
  background: #c49575;
  display: flex;
  justify-content: center;
  height: 220px;
  margin: -1px;
  width: 237px;
  position: relative;
}

.box-vendas .box-item.vendido:after {
  content: "vendido";
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff00009e;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 32px;
}
.box-vendas .box-item.reservado:after {
  content: "reservado";
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffa500b5;
  color: #fff;
}

.box-vendas .box-item p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0px;
  color: #fff5e0;
  font-size: 1rem;
  line-height: 1.4rem;
  border: 2px solid #fff5e0;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.box-vendas .box-item p span {
  position: absolute;
  right: 0;
  background: #7c8647;
  color: #fff;
  font-weight: bold;
  padding: 7px;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  line-height: 12px;
  font-size: 14px;
}

#contato {
  background: url(../images/bg-contato.png) repeat top right;
  background-size: cover;
  margin-top: 5rem;
  padding-bottom: 2rem;
  float: left;
  width: 100%;
}

form {
  margin-top: 3rem;
  width: calc(75vw - 5px);
  margin: 0 auto;
}

form label {
  color: #fff5e0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 23px;
  text-transform: uppercase;
}

form fieldset {
  border: none;
  display: flex;
  gap: 10px;
  margin-top: 60px;
}

form fieldset.wrap {
  flex-wrap: wrap;
}

form fieldset input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #fff5e0;
  color: #fff5e0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
}

form fieldset textarea {
  width: 100%;
  background: none;
  border: 1px solid #fff5e0;
  height: 250px;
  color: #fff5e0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  padding: 10px;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

form button,
form submit {
  background-color: #b28364;
  border: 2px solid #fff5e0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  padding: 5px 20px;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 20px;
  color: #ffffff;
  text-align: center;
  width: 165px;
  float: right;
}

form button:hover,
form submit:hover {
  background-color: #fff;
  border: 2px solid #fff5e0;
  color: #b28364;
}

#footer {
  padding: 5rem 0 0 0;
}

#footer .box {
  display: flex;
  justify-content: center;
  gap: 65px;
}

#footer .box .item {
  display: flex;
  align-items: center;
  flex-flow: column;
  margin-bottom: 2rem;
}

#footer .logo-footer.sq {
  width: 70%;
  margin-top: 20px;
}

#footer .box.copy {
  margin-top: 6rem;
}

#footer p {
  color: #979694;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  #planta .content {
    margin-left: -75px;
    max-width: inherit;
  }
}

@media (max-width: 991px) {
  p {
    font-size: 18px !important;
    line-height: 1.4 !important;
  }
  .banner {
    margin-top: calc(21vw - 400px);
  }
  #planta .content {
    padding-top: 56px;
  }
  #planta .img-planta {
    max-width: inherit;
    width: 55%;
  }
  form {
    width: 90%;
  }

  form fieldset {
    flex-flow: column;
  }
}

@media (max-width: 767px) {
  .banner {
    margin-top: calc(32vw - 400px);
  }
  /* .carousel-wrapper {
        width: 90%;
    } */
  .gallery .gallery-row {
    columns: 3;
  }

  #planta .box-tab .tab-content {
    flex-flow: column-reverse;
  }
  #planta .content {
    margin-left: 0;
    padding: 20px;
    width: 100%;
    max-width: inherit;
  }
  #planta .title-p {
    padding: 15px 0;
  }
  #planta .img-planta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  #header {
    background: url(../images/bg-header.jpg) bottom no-repeat;
    background-size: cover;
  }
  #header,
  #header .container {
    height: 73px;
  }
  .logo {
    max-width: 80px;
  }
  .navbar > ul {
    top: 73px;
  }
  section {
    padding: 12vw 0 0px 0;
  }
  section#home {
    padding: 73px 0 0px 0;
  }
}

@media (max-width: 560px) {
  .title {
    font-size: 23px !important;
  }
  .title-section {
    font-size: 32px;
  }
  .title-section::after {
    bottom: 19px;
  }
  .padding.right {
    padding-right: 20px;
  }
  form label {
    font-size: 18px;
  }
  .banner {
    margin-top: -150px;
  }
  .filme {
    min-height: 56vw;
  }
  .gallery .gallery-row {
    columns: 2;
  }
  #planta h3 {
    font-size: 32px;
  }
  #footer .box {
    gap: 20px;
    flex-flow: column;
  }
  #footer .logo-footer {
    max-width: 250px;
    margin: 0 auto;
    display: table;
    width: 100%;
  }
}

@media (max-width: 516px) {
  .box-vendas .box-item {
    height: 190px;
    width: 173px;
    position: relative;
  }
  .box-vendas .box-item p {
    font-size: 14px !important;
  }
  section#fotos {
    padding-bottom: 10vw;
  }
}

@media (max-width: 390px) {
  .banner {
    background: #5f2e14;
    margin-top: -4px;
    padding-top: 20px;
    padding-bottom: 9vw;
  }
}
