@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.typekit.net/now8bfk.css");
:root {
  --yellow: #F7C760;
  --gray: #3B3936;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

input, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: var(--gray);
  overflow-x: hidden;
  font-weight: 400;
}

img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
}

small {
  font-size: 11px;
  line-height: 12px;
}

hr {
  border: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(59, 57, 54, 0.1019607843);
}

.titles {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: 7px;
  text-transform: uppercase;
}

.subtitles {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 19px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.white {
  color: white;
}

.gray {
  color: var(--gray);
}

.yellow {
  color: var(--yellow);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.input_default {
  display: flex;
  height: 45px;
  padding: 0 15px;
  border: 1px solid white;
  font: normal 300 16px/20px "Montserrat", sans-serif;
  color: white;
  background: none;
}
.input_default::-moz-placeholder {
  font: normal 300 16px/20px "Montserrat", sans-serif;
  color: white;
}
.input_default::placeholder {
  font: normal 300 16px/20px "Montserrat", sans-serif;
  color: white;
}

.label_default {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: left;
}
.label_default .checkbox_default {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
  border: 1px solid white;
}
.label_default .checkbox_default:checked {
  background: url(../images/_assets/checkbox.svg) no-repeat center center/contain;
}

.send_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  background-color: var(--yellow);
  transition: color 0.3s ease, background-color 0.3s ease;
}
.send_button:hover {
  color: var(--yellow);
  background-color: black;
  box-shadow: 0 0 20px rgba(247, 199, 96, 0.5098039216);
}

.persistente {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: fixed;
  bottom: -122px;
  right: 5%;
  padding: 20px;
  width: 230px;
  border-radius: 20px 20px 0 0;
  background: url(../images/_assets/bg_blurred.avif) no-repeat center center/cover;
  z-index: 10;
  transition: bottom 0.35s ease;
}
.persistente.is-open {
  bottom: 0;
}
.persistente hr {
  opacity: 0.5;
}
.persistente .row_persistente {
  display: flex;
  align-items: center;
  gap: 10px;
}
.persistente .row_persistente .ico_persistente {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1025px) {
  .persistente {
    opacity: 0;
    pointer-events: none;
    transition: bottom 0.35s ease, opacity 0.25s ease;
  }
  .persistente.is-visible-desktop {
    opacity: 1;
    pointer-events: auto;
  }
}
.header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0;
  background: url(../images/banner-mirador-maua.avif) no-repeat center center/cover;
}
.header .content_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  gap: 35px;
  max-width: 380px;
  text-align: center;
  z-index: 1;
}
.header .content_header .tipologia_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header .content_header .tipologia_header h2 {
  display: flex;
  font: normal 500 32px/32px "bebas-neue-pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 30px;
  width: fit-conten;
  padding: 10px 0px 10px 30px;
  border: 2px solid white;
}
.header .form_header {
  display: flex;
  flex-direction: column;
  justify-self: center;
  gap: 20px;
  max-width: 350px;
  padding: 30px;
  background: url(../images/_assets/bg_blurred.avif) no-repeat center center/cover;
  z-index: 1;
}
.header .form_header .form_group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.intro_produto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 200px 0 50px;
  background: url(../images/_assets/pattern.svg) no-repeat top right;
}
.intro_produto a {
  justify-self: center;
}
.intro_produto .content_intro_produto {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 500px;
}
.intro_produto .content_intro_produto .ico_ev {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.intro_produto .content_intro_produto .ico_ev .info_vaga_ev {
  display: flex;
  align-items: center;
  gap: 10px;
}

.destaque_vista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content .";
  outline: 50px solid white;
  outline-offset: -50px;
  padding: 250px 0;
  background: url(../images/terraco.avif) no-repeat center center/cover;
}
.destaque_vista .content_vista {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-self: center;
  padding: 50px;
  max-width: 450px;
  border: 2px solid var(--yellow);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
}

.destaque_churrasqueira {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: ". content";
  outline: 50px solid white;
  outline-offset: -50px;
  padding: 250px 0;
  background: url(../images/terraco_churrasqueira.avif) no-repeat center center/contain;
}
.destaque_churrasqueira .content_churrasqueira {
  grid-area: content;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-self: center;
  padding: 50px;
  max-width: 450px;
  border: 2px solid var(--yellow);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 50px;
  gap: 50px;
}
.galeria a {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.galeria a .caption_galeria {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.7019607843);
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transition: opacity 0.3s ease, clip-path 0.45s ease;
  z-index: 1;
}
.galeria a .caption_galeria p {
  position: relative;
  text-align: center;
  margin: 0;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.25s ease 0.18s, transform 0.35s ease 0.18s;
}
.galeria a:hover .caption_galeria {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
.galeria a:hover .caption_galeria p {
  opacity: 1;
  transform: translateY(0);
}
.galeria a:hover img {
  transform: scale(1.05);
}
.galeria a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}

.plantas {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 100px 0;
}
.plantas .intro_plantas {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.plantas .slider_plantas {
  position: relative;
  margin: 0 50px;
  display: flex;
  flex-direction: column;
}
.plantas .slider_plantas .slides li a {
  cursor: zoom-in;
  z-index: 1;
  display: block;
  padding: 0 100px;
}
.plantas .slider_plantas .slides li a img {
  width: 100%;
  height: auto;
}
.plantas .slider_plantas .slides li a .caption_slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 50px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  border: 2px solid var(--yellow);
  background-color: var(--gray);
}
.plantas .slider_plantas .flex-nav-prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
}
.plantas .slider_plantas .flex-nav-next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
}

.diferenciais {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 100px 50px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/_assets/bg_blurred.avif) center/cover no-repeat;
}
.diferenciais .grid_diferenciais {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.diferenciais .grid_diferenciais .items_diferenciais {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}
.diferenciais .grid_diferenciais .items_diferenciais .ico_diferenciais {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.img_aerea {
  width: 100%;
  height: auto;
  margin-top: 5px;
}

.localizacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/_assets/bg_blurred.avif) center/cover no-repeat;
}
.localizacao .content_localizacao {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  text-align: center;
}
.localizacao iframe {
  width: 85%;
  filter: sepia(0.1);
}
.localizacao .form_contato {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  align-items: center;
  text-align: center;
}
.localizacao .form_contato .form_group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  gap: 5px;
}
.localizacao .form_contato .label_default {
  align-self: start;
}
.localizacao .form_contato .send_button {
  width: 100%;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  gap: 50px;
}
.footer .logos_footer_wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 140px;
}
.footer .logos_footer_wrapper .logos_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

@media (max-width: 1024px) {
  .header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px;
  }
  .header .form_header {
    display: none;
  }
  .header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5803921569);
  }
  .intro_produto {
    padding: 40px;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .intro_produto a img {
    width: 100%;
  }
  .intro_produto .content_intro_produto {
    margin: auto;
    max-width: 100%;
  }
  .intro_produto .content_intro_produto .ico_ev {
    flex-direction: column;
    gap: 20px;
  }
  .galeria {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
  }
  .plantas {
    padding: 40px;
  }
  .destaque_vista, .destaque_churrasqueira {
    grid-template-columns: 1fr;
    outline: inherit;
    padding: 40px;
    background-size: cover;
  }
  .destaque_vista .content_vista, .destaque_vista .content_churrasqueira, .destaque_churrasqueira .content_vista, .destaque_churrasqueira .content_churrasqueira {
    max-width: 100%;
  }
  .localizacao {
    padding: 40px;
  }
  .localizacao iframe {
    width: 100%;
    height: 300px;
  }
  .localizacao .form_contato .form_group {
    grid-template-columns: 1fr;
  }
  .footer .logos_footer_wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 750px) {
  .persistente {
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: row;
    padding: 10px 40px 15px;
    border-radius: 0;
    right: 0;
  }
  .persistente .toggle_persistente, .persistente hr {
    display: none;
  }
  .persistente p {
    font-size: 1rem;
    line-height: 1rem;
  }
  .header {
    padding: 40px 20px;
  }
  .header .content_header {
    max-width: 100%;
  }
  .header .content_header .tipologia_header h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .intro_produto {
    padding: 40px 20px;
  }
  .destaque_vista, .destaque_churrasqueira {
    padding: 40px 20px;
  }
  .galeria {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    margin: 20px 0;
  }
  .plantas {
    padding: 40px 20px;
  }
  .plantas .slider_plantas {
    margin: 0;
  }
  .plantas .slider_plantas .slides li a {
    padding: 0 50px;
  }
  .plantas .slider_plantas .slides li a .caption_slider {
    padding: 10px;
    gap: 10px;
  }
  .plantas .slider_plantas .slides li a .caption_slider .titles {
    font-size: 18px;
    line-height: 18px;
  }
  .plantas .slider_plantas .slides li a .caption_slider .subtitles {
    font-size: 16px;
    line-height: 16px;
  }
  .plantas .slider_plantas .flex-nav-next img, .plantas .slider_plantas .flex-nav-prev img {
    width: 30px;
  }
  .diferenciais {
    padding: 40px 20px;
  }
  .diferenciais .grid_diferenciais {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .localizacao {
    padding: 40px 20px;
  }
  .footer {
    padding-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */