@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  position: relative;
  box-sizing: border-box;
}

@font-face {
  font-family: "Mori";
  src: url(founders-grotesk-regular.woff2) format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Mori";
  src: url(founders-grotesk-medium.woff2) format("woff");
  font-weight: 600;
  font-display: swap;
}
:root {
  --preto: #1c1e1c;
  --cinza: #787878;
  --branco: #f3f7f3;
  --laranja: #EA8C1C;
  --terracota: #B65534;
  --verde: #4D5A2C;
  --bege-1: #A4A07A;
  --azul: #1F4F6F;
  --ease: cubic-bezier(.87, 0, .13, 1);
  --space: 8vw;
  --verdezap: #1B5125;
}

@media (orientation: portrait) {
  html {
    font-size: 2.8vw;
  }
}
@media (orientation: landscape) {
  html {
    font-size: 1vw;
  }
}

body, main, header, section, footer, div, figure, figcaption, form, nav, menu, label, span, a, i {
  display: flex;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "Mori", sans-serif;
  font-style: normal;
  font-weight: 400;
  background: var(--branco);
}

main {
  scroll-behavior: smooth;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  background: var(--branco);
}
main h2 {
  color: var(--bege-1);
}

section {
  flex-direction: column;
  scroll-snap-align: start;
  scroll-margin-top: 5rem;
}

h1, h2, h3, p, a, span {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--branco);
  text-align: center;
}
h1 br {
  display: none;
}
@media (orientation: portrait) {
  h1 {
    font-size: 2rem;
  }
  h1 br {
    display: block;
  }
}

h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--preto);
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

p, a, button, label, figcaption {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--branco);
}

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

@media (orientation: portrait) {
  p, label {
    font-size: 1.4rem;
  }
  p br, label br {
    display: none;
  }
}
a, button, label {
  font-family: "Mori", sans-serif;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02rem;
  transition: font-variation-settings 0.3s, letter-spacing 0.3s;
}

input, button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  border: 0;
  background: transparent;
  color: var(--branco);
}

::-moz-placeholder {
  font-family: "Mori", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--branco);
  padding: 1rem 0;
}

:-ms-input-placeholder {
  font-family: "Mori", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--branco);
  padding: 1rem 0;
}

input, ::placeholder {
  font-family: "Mori", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--branco);
  padding: 1rem 0;
}

.btn {
  font-weight: 600;
  padding: 1rem 1.5rem 0.8rem;
  border-radius: 1.5rem;
  line-height: 1;
  background: var(--verdezap);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

.fade {
  transform: translate3d(0, 3rem, 0);
  transition-property: opacity, transform;
  transition-duration: 0.8s, 1.4s;
  transition-timing-function: linear, cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (orientation: landscape) {
  .fade.d1 {
    transition-delay: 0.2s;
  }
  .fade.d2 {
    transition-delay: 0.4s;
  }
  .fade.d3 {
    transition-delay: 0.6s;
  }
}
.fade.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

menu {
  position: fixed;
  width: 100vw;
  padding: 1.2rem var(--space);
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transition: background 1s, transform 0.5s;
}
menu.scroll {
  background: var(--preto);
}
menu nav {
  pointer-events: all;
  gap: 2rem;
  align-items: center;
}
@media (orientation: portrait) {
  menu nav a {
    display: none;
  }
}
menu > img {
  width: 14rem;
}
menu .menu-icon {
  flex-direction: column;
  justify-content: space-between;
  width: 4.4vw;
  height: 4.4vw;
  gap: 6px;
  z-index: 1000;
  pointer-events: auto;
}
@media (orientation: landscape) {
  menu .menu-icon {
    display: none;
  }
}
menu .menu-icon a {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background-color: transparent;
  transition: background-color 0.4s;
  transition-delay: 0s;
}
menu .menu-icon a[href="#mobile"] {
  display: block;
}
menu .menu-icon a[href="/"] {
  display: none;
}
menu .menu-icon span {
  transform: scaleX(1.5);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
  height: 2px;
  background-color: var(--branco);
  transition: 0.7s var(--ease);
}
menu .menu-icon span:nth-of-type(1), menu .menu-icon span:nth-of-type(3) {
  transition-delay: 0.1s;
}

nav#mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding: 10rem var(--space);
  z-index: 9;
  background: #786024;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: 0.7s var(--ease);
  transform: translateX(100vw);
}
nav#mobile:target {
  transform: translateX(0);
}
nav#mobile:target ~ menu .menu-icon a[href="#mobile"] {
  display: none;
}
nav#mobile:target ~ menu .menu-icon a[href="#"] {
  display: block;
}
nav#mobile:target ~ menu .menu-icon span:nth-of-type(1) {
  transform: rotate(45deg) scaleX(1.3);
  transform-origin: left top;
}
nav#mobile:target ~ menu .menu-icon span:nth-of-type(2) {
  transform: scaleX(0);
  transform-origin: left;
}
nav#mobile:target ~ menu .menu-icon span:nth-of-type(3) {
  transform: rotate(-45deg) scaleX(1.3);
  transform-origin: left bottom;
}
nav#mobile a {
  font-size: 2rem;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--branco);
}
nav#mobile a:first-of-type {
  border-top: 1px solid var(--branco);
}
@media (orientation: landscape) {
  nav#mobile {
    display: none;
  }
}

.loaded header .bg {
  transform: scale(1.2);
}
.loaded header .logo {
  width: 60rem;
}
.loaded header .logo path {
  stroke-dashoffset: 0 !important;
}
@media (orientation: portrait) {
  .loaded header .logo {
    width: 31rem;
  }
}
.loaded .loading {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.loading {
  position: fixed;
  width: 100vw;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  justify-content: center;
  align-items: center;
  z-index: 99999999;
  background: var(--preto);
  pointer-events: none;
  -webkit-animation-name: loading-box;
          animation-name: loading-box;
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-timing-function: var(--ease);
          animation-timing-function: var(--ease);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.loading svg path:first-child {
  transform-origin: 438px 139px;
  -webkit-animation: loading 1s var(--ease) infinite;
          animation: loading 1s var(--ease) infinite;
}

menu.scroll ~ .loading {
  visibility: hidden;
}

@-webkit-keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading-box {
  from {
    -webkit-clip-path: polygon(-50% 0, 200% 0, 0 200%, 0 -50%);
            clip-path: polygon(-50% 0, 200% 0, 0 200%, 0 -50%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 50%);
            clip-path: polygon(0 0, 0 0, 0 0, 0 50%);
  }
}
@keyframes loading-box {
  from {
    -webkit-clip-path: polygon(-50% 0, 200% 0, 0 200%, 0 -50%);
            clip-path: polygon(-50% 0, 200% 0, 0 200%, 0 -50%);
  }
  to {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 50%);
            clip-path: polygon(0 0, 0 0, 0 0, 0 50%);
  }
}
header {
  width: 100vw;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: var(--preto);
  overflow: hidden;
}
header .bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  transition: transform 30s linear;
}
header .logo {
  width: 40rem;
  fill: none;
}
@media (orientation: portrait) {
  header .logo {
    width: 30rem;
  }
}
header .logo path {
  fill: none;
  stroke: var(--branco);
  stroke-width: 8;
  transition: stroke-dashoffset 2s cubic-bezier(0, 0.55, 0.45, 1);
}
header .logo path:nth-of-type(1) {
  stroke-dasharray: 263;
  stroke-dashoffset: 263;
  transition-delay: 0.4s;
}
header .logo path:nth-of-type(2) {
  stroke-dasharray: 285;
  stroke-dashoffset: 285;
  transition-delay: 0.6s;
}
header .logo path:nth-of-type(3) {
  stroke-dasharray: 342;
  stroke-dashoffset: 342;
  transition-delay: 0.8s;
}
header .logo path:nth-of-type(4) {
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  transition-delay: 1s;
}
header .logo path:nth-of-type(5) {
  stroke-dasharray: 297;
  stroke-dashoffset: 297;
  transition-delay: 1.2s;
}
header .logo path:nth-of-type(6) {
  stroke-dasharray: 278;
  stroke-dashoffset: 278;
  transition-delay: 1.4s;
}

#sobre {
  align-items: center;
  padding: 8rem 0;
}
#sobre h2 {
  text-align: center;
}
#sobre > p {
  font-size: 1.625rem;
  text-align: center;
  color: var(--preto);
  margin: 2rem 0 8rem 0;
}
@media (orientation: portrait) {
  #sobre > p {
    padding: 0 3rem;
  }
  #sobre > p br {
    display: none;
  }
}
#sobre div {
  gap: 5rem;
  padding: 0 var(--space);
}
@media (orientation: portrait) {
  #sobre div {
    flex-direction: column;
  }
}
#sobre div span {
  flex: 1;
  background: var(--branco);
}
#sobre div span:first-of-type {
  flex: 1.5;
}
#sobre div span:last-of-type {
  flex-direction: column;
  gap: 2.25rem;
}
#sobre div span:last-of-type p {
  color: var(--preto);
}
#sobre div span img {
  mix-blend-mode: multiply;
  width: 100%;
}

#vista {
  align-items: center;
  gap: 4.5rem;
}
#vista h2 {
  text-align: center;
}
#vista figure {
  width: 100%;
  height: 90vh;
  justify-content: flex-end;
  background: var(--branco);
}
@media (orientation: portrait) {
  #vista figure {
    height: 50vh;
  }
}
#vista figure > img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: multiply;
}
#vista figure div {
  align-self: flex-start;
  padding: 5.4rem var(--space);
  align-items: center;
  gap: 1rem;
}
#vista figure div img {
  width: 3rem;
  height: 2rem;
}

#fullscreen {
  display: none;
}
#fullscreen:checked + menu {
  transform: translateY(-20rem);
}
#fullscreen:checked ~ main .slider {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 666;
  background: var(--preto);
  padding: 3rem;
}
#fullscreen:checked ~ main .slider .fakenav {
  padding: 0;
  min-width: calc(100vw - 6rem);
}
#fullscreen:checked ~ main .slider figure {
  align-items: center;
  padding: 0;
  min-width: 100vw;
}
#fullscreen:checked ~ main .slider figure img {
  height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
}
#fullscreen:checked ~ main .slider figure figcaption {
  color: var(--branco);
}
#fullscreen:checked ~ main .slider figure label {
  cursor: zoom-out;
}
#fullscreen:checked ~ main .slider .close_modal {
  display: flex;
  align-self: flex-start;
  min-width: 3rem;
  left: 0;
  background: var(--preto);
  border: 1px solid var(--branco);
}
#fullscreen:checked ~ main .slider .close_modal::after, #fullscreen:checked ~ main .slider .close_modal::before {
  background: var(--branco);
}

#perspectivas input {
  display: none;
}
#perspectivas .title {
  justify-content: space-between;
  align-items: baseline;
  padding: 8rem var(--space);
  padding-bottom: 0;
}
@media (orientation: portrait) {
  #perspectivas .title {
    flex-direction: column;
    gap: 2rem;
  }
}
#perspectivas .title nav {
  gap: 3rem;
}
#perspectivas .title nav label {
  color: var(--bege-1);
  font-size: 1.5rem;
}
#perspectivas .slider {
  width: 100%;
  padding: 0 var(--space);
  align-items: center;
  gap: 1rem;
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transition: 0.5s;
}
#perspectivas .slider::-webkit-scrollbar {
  display: none;
}
#perspectivas .fakenav {
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  padding: 0 2rem;
  min-width: calc(100vw - var(--space) * 2);
  z-index: 2;
  pointer-events: none;
}
#perspectivas .fakenav i {
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--branco);
}
#perspectivas .fakenav i::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 1px solid var(--branco);
  border-right: 1px solid var(--branco);
  transform: translateX(0.25rem) rotate(-135deg);
}
#perspectivas .fakenav i:last-of-type::after {
  transform: translateX(-0.25rem) rotate(45deg);
}
@media (orientation: portrait) {
  #perspectivas .fakenav i {
    width: 3rem;
    height: 3rem;
  }
  #perspectivas .fakenav i::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
#perspectivas figure {
  display: none;
  padding: var(--space) 0;
  min-width: calc(100vw - var(--space) * 2);
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: center;
}
@media (orientation: portrait) {
  #perspectivas figure {
    padding: 8rem 0;
  }
}
#perspectivas figure.first figcaption {
  opacity: 1;
}
#perspectivas figure:target figcaption {
  opacity: 1;
}
#perspectivas figure nav {
  position: absolute;
  margin-bottom: 2.5rem;
  width: 100%;
  justify-content: space-between;
}
#perspectivas figure nav a {
  flex: 1;
  height: 75vh;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
@media (orientation: portrait) {
  #perspectivas figure nav a {
    height: 50vh;
  }
}
#perspectivas figure nav label {
  flex: 4;
  cursor: zoom-in;
  height: 75vh;
}
@media (orientation: portrait) {
  #perspectivas figure nav label {
    height: 50vh;
  }
}
#perspectivas figcaption {
  color: var(--preto);
  margin-top: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
#perspectivas img {
  width: 100%;
  height: 75vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (orientation: portrait) {
  #perspectivas img {
    height: 50vh;
  }
}

#andar2:checked ~ div .andar2 {
  display: flex;
}
#andar2:checked ~ div label[for=andar2] {
  color: var(--preto);
}

#andar3:checked ~ div .andar3 {
  display: flex;
}
#andar3:checked ~ div label[for=andar3] {
  color: var(--preto);
}

#andar4:checked ~ div .andar4 {
  display: flex;
}
#andar4:checked ~ div label[for=andar4] {
  color: var(--preto);
}

#duplex:checked ~ div .duplex {
  display: flex;
}
#duplex:checked ~ div label[for=duplex] {
  color: var(--preto);
}

#essencial:checked ~ div .essencial {
  display: flex;
}
#essencial:checked ~ div label[for=essencial] {
  color: var(--preto);
}

#comuns:checked ~ div .comuns {
  display: flex;
}
#comuns:checked ~ div label[for=comuns] {
  color: var(--preto);
}

#decorado:checked ~ div .decorado {
  display: flex;
}
#decorado:checked ~ div label[for=decorado] {
  color: var(--preto);
}

#plantas {
  gap: 8rem;
  padding: 8rem var(--space);
  background: #DDDACA;
}
#plantas::after {
  display: none;
  content: "";
  position: absolute;
  top: 12rem;
  right: 0;
  width: 26.8rem;
  height: 2rem;
  background: var(--branco);
  opacity: 0.15;
}
@media (orientation: portrait) {
  #plantas::after {
    top: 22rem;
  }
}
#plantas::before {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  border: 2rem solid var(--branco);
  opacity: 0.15;
}
@media (orientation: portrait) {
  #plantas::before {
    left: -10rem;
  }
}
#plantas h2, #plantas h3 {
  color: #7C7640;
}
#plantas p {
  color: #000000;
}
#plantas .abstract-icon {
  top: 0px;
  right: 0px;
  width: 50rem;
  position: absolute;
}
@media (orientation: portrait) {
  #plantas .abstract-icon {
    width: 20rem;
  }
}
#plantas .textos {
  margin-top: 8rem;
  gap: 3rem;
}
@media (orientation: portrait) {
  #plantas .textos {
    flex-direction: column;
  }
}
#plantas .textos span {
  flex: 1;
  flex-direction: column;
  gap: 1.375rem;
}
#plantas .textos span::before {
  display: none;
  content: "";
  width: 2rem;
  height: 2rem;
  border: 0.25rem solid #9CA8C2;
  border-radius: 50%;
}
#plantas #plantas_wrapper {
  background: #FFF;
  padding: var(--space);
  border-radius: 2.75rem;
  transition: 0.5s;
}
#plantas #plantas_wrapper:target {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 666;
  border-radius: 0;
  padding: 2rem 0;
}
#plantas #plantas_wrapper:target div:first-of-type {
  display: none;
}
@media (max-width: 700px) {
  #plantas_wrapper{
    display: inline-block;
  }
}
@media (orientation: portrait) {
  #plantas #plantas_wrapper:target div:last-of-type {
    overflow-x: scroll;
  }
}
#plantas #plantas_wrapper:target figure {
  padding: 0 2rem;
}
@media (orientation: portrait) {
  #plantas #plantas_wrapper:target figure {
    width: 100vw;
  }
}
#plantas #plantas_wrapper:target figcaption {
  display: none;
}
#plantas #plantas_wrapper:target .open_modal {
  display: none;
}
#plantas #plantas_wrapper:target .close_modal {
  display: flex;
}
@media (orientation: portrait) {
  #plantas #plantas_wrapper {
    flex-direction: column;
    gap: 4rem;
  }
}
#plantas #plantas_wrapper input {
  display: none;
}
#plantas #plantas_wrapper div {
  max-width: 100%;
  flex-direction: column;
}
#plantas #plantas_wrapper div:first-of-type {
  flex: 1;
  justify-content: space-between;
  gap: 2rem;
}
#plantas #plantas_wrapper div:last-of-type {
  flex: 2;
  aspect-ratio: 40/25;
}
@media (orientation: portrait) {
  #plantas #plantas_wrapper div:last-of-type {
    aspect-ratio: 40/30;
  }
}
#plantas #plantas_wrapper div h2 {
  color: var(--bege-1);
}
#plantas #plantas_wrapper span {
  flex-direction: column;
  gap: 1rem;
}
#plantas #plantas_wrapper span label {
  font-size: 1.5rem;
  color: var(--bege-1);
}
#plantas #plantas_wrapper label, #plantas #plantas_wrapper h2, #plantas #plantas_wrapper figcaption {
  color: var(--preto);
}
#plantas #plantas_wrapper figure {
  position: absolute;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 1.125rem;
  opacity: 0;
  transition: opacity 1s;
}
#plantas #plantas_wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#plantas #plantas_wrapper .open_modal {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  z-index: 3;
}

#plantas_wrapper > div.flex-row-container {
  display: flex;
  flex-direction: row !important;
  gap: 2rem;
  align-items: flex-start;
}

.close_modal {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  left: 2rem;
  top: 0;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  z-index: 3;
  background: var(--branco);
  border: 1px solid var(--preto);
  border-radius: 50%;
}
.close_modal::after, .close_modal::before {
  content: "";
  position: absolute;
  width: 2rem;
  height: 1px;
  background: var(--preto);
}
.close_modal::after {
  transform: rotate(45deg);
}
.close_modal::before {
  transform: rotate(-45deg);
}

#planta_201:checked ~ div .planta_201 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_201:checked ~ div label[for=planta_201] {
  color: var(--preto) !important;
}

#planta_202:checked ~ div .planta_202 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_202:checked ~ div label[for=planta_202] {
  color: var(--preto) !important;
}

#planta_203:checked ~ div .planta_203 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_203:checked ~ div label[for=planta_203] {
  color: var(--preto) !important;
}

#planta_204:checked ~ div .planta_204 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_204:checked ~ div label[for=planta_204] {
  color: var(--preto) !important;
}

#planta_205:checked ~ div .planta_205 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_205:checked ~ div label[for=planta_205] {
  color: var(--preto) !important;
}

#planta_206:checked ~ div .planta_206 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_206:checked ~ div label[for=planta_206] {
  color: var(--preto) !important;
}

#planta_207:checked ~ div .planta_207 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_207:checked ~ div label[for=planta_207] {
  color: var(--preto) !important;
}

#planta_208:checked ~ div .planta_208 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_208:checked ~ div label[for=planta_208] {
  color: var(--preto) !important;
}

#planta_209:checked ~ div .planta_209 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_209:checked ~ div label[for=planta_209] {
  color: var(--preto) !important;
}

#planta_210:checked ~ div .planta_210 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_210:checked ~ div label[for=planta_210] {
  color: var(--preto) !important;
}

#planta_211:checked ~ div .planta_211 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_211:checked ~ div label[for=planta_211] {
  color: var(--preto) !important;
}

#planta_212:checked ~ div .planta_212 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_212:checked ~ div label[for=planta_212] {
  color: var(--preto) !important;
}

#planta_301:checked ~ div .planta_301 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_301:checked ~ div label[for=planta_301] {
  color: var(--preto) !important;
}

#planta_302:checked ~ div .planta_302 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_302:checked ~ div label[for=planta_302] {
  color: var(--preto) !important;
}

#planta_303:checked ~ div .planta_303 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_303:checked ~ div label[for=planta_303] {
  color: var(--preto) !important;
}

#planta_304:checked ~ div .planta_304 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_304:checked ~ div label[for=planta_304] {
  color: var(--preto) !important;
}

#planta_305:checked ~ div .planta_305 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_305:checked ~ div label[for=planta_305] {
  color: var(--preto) !important;
}

#planta_306:checked ~ div .planta_306 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_306:checked ~ div label[for=planta_306] {
  color: var(--preto) !important;
}

#planta_307:checked ~ div .planta_307 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_307:checked ~ div label[for=planta_307] {
  color: var(--preto) !important;
}

#planta_308:checked ~ div .planta_308 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_308:checked ~ div label[for=planta_308] {
  color: var(--preto) !important;
}

#planta_309:checked ~ div .planta_309 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_309:checked ~ div label[for=planta_309] {
  color: var(--preto) !important;
}

#planta_310:checked ~ div .planta_310 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_310:checked ~ div label[for=planta_310] {
  color: var(--preto) !important;
}

#planta_311:checked ~ div .planta_311 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_311:checked ~ div label[for=planta_311] {
  color: var(--preto) !important;
}

#planta_312:checked ~ div .planta_312 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_312:checked ~ div label[for=planta_312] {
  color: var(--preto) !important;
}

#planta_401:checked ~ div .planta_401 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_401:checked ~ div label[for=planta_401] {
  color: var(--preto) !important;
}

#planta_402:checked ~ div .planta_402 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_402:checked ~ div label[for=planta_402] {
  color: var(--preto) !important;
}

#planta_403:checked ~ div .planta_403 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_403:checked ~ div label[for=planta_403] {
  color: var(--preto) !important;
}

#planta_404:checked ~ div .planta_404 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_404:checked ~ div label[for=planta_404] {
  color: var(--preto) !important;
}

#planta_405:checked ~ div .planta_405 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_405:checked ~ div label[for=planta_405] {
  color: var(--preto) !important;
}

#planta_406:checked ~ div .planta_406 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_406:checked ~ div label[for=planta_406] {
  color: var(--preto) !important;
}

#planta_407:checked ~ div .planta_407 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_407:checked ~ div label[for=planta_407] {
  color: var(--preto) !important;
}

#planta_408:checked ~ div .planta_408 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_408:checked ~ div label[for=planta_408] {
  color: var(--preto) !important;
}

#planta_401cobertura:checked ~ div .planta_401cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_401cobertura:checked ~ div label[for=planta_401cobertura] {
  color: var(--preto) !important;
}

#planta_402cobertura:checked ~ div .planta_402cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_402cobertura:checked ~ div label[for=planta_402cobertura] {
  color: var(--preto) !important;
}

#planta_403cobertura:checked ~ div .planta_403cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_403cobertura:checked ~ div label[for=planta_403cobertura] {
  color: var(--preto) !important;
}

#planta_404cobertura:checked ~ div .planta_404cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_404cobertura:checked ~ div label[for=planta_404cobertura] {
  color: var(--preto) !important;
}

#planta_405cobertura:checked ~ div .planta_405cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_405cobertura:checked ~ div label[for=planta_405cobertura] {
  color: var(--preto) !important;
}

#planta_406cobertura:checked ~ div .planta_406cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_406cobertura:checked ~ div label[for=planta_406cobertura] {
  color: var(--preto) !important;
}

#planta_407cobertura:checked ~ div .planta_407cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_407cobertura:checked ~ div label[for=planta_407cobertura] {
  color: var(--preto) !important;
}

#planta_408cobertura:checked ~ div .planta_408cobertura {
  opacity: 1 !important;
  z-index: 2;
}
#planta_408cobertura:checked ~ div label[for=planta_408cobertura] {
  color: var(--preto) !important;
}

#planta_196_1:checked ~ div .planta_196_1 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_196_1:checked ~ div label[for=planta_196_1] {
  color: var(--preto) !important;
}

#planta_196_2:checked ~ div .planta_196_2 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_196_2:checked ~ div label[for=planta_196_2] {
  color: var(--preto) !important;
}

#planta_196_3:checked ~ div .planta_196_3 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_196_3:checked ~ div label[for=planta_196_3] {
  color: var(--preto) !important;
}

#planta_196_4:checked ~ div .planta_196_4 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_196_4:checked ~ div label[for=planta_196_4] {
  color: var(--preto) !important;
}

#planta_134_1:checked ~ div .planta_134_1 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_134_1:checked ~ div label[for=planta_134_1] {
  color: var(--preto) !important;
}

#planta_134_2:checked ~ div .planta_134_2 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_134_2:checked ~ div label[for=planta_134_2] {
  color: var(--preto) !important;
}

#planta_134_3:checked ~ div .planta_134_3 {
  opacity: 1 !important;
  z-index: 2;
}
#planta_134_3:checked ~ div label[for=planta_134_3] {
  color: var(--preto) !important;
}

#diferenciais {
  padding: 8rem var(--space);
  background-color: #FFF;
}
#diferenciais input {
  display: none;
}
#diferenciais input:checked ~ span {
  max-height: 100vh;
  padding: 3rem 0;
}
#diferenciais input:checked + label::after {
  transform: translate(1rem, 0rem) rotate(-45deg);
}
#diferenciais h2 {
  margin-bottom: 3rem;
}
#diferenciais label, #diferenciais p {
  color: var(--preto);
}
#diferenciais div, #diferenciais span {
  flex-direction: column;
}
#diferenciais label {
  color: var(--bege-1);
  padding: 3rem 0;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
}
#diferenciais label::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid var(--bege-1);
  border-right: 0.125rem solid var(--bege-1);
  transition: transform 0.7s var(--ease);
  transform: translate(1rem, -0.25rem) rotate(135deg);
}
#diferenciais div {
  border-top: 0.125rem solid var(--preto);
}
#diferenciais div:last-of-type {
  border-bottom: 0.125rem solid var(--preto);
}
#diferenciais span {
  gap: 3rem;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: padding 0.7s var(--ease), max-height 0.7s var(--ease);
}
#diferenciais p::before {
  content: "";
  position: absolute;
  top: -1rem;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--bege-1);
}

#localizacao {
  padding: 8rem var(--space);
  background: #5F4100;
  gap: 4.5rem;
}
#localizacao h2 {
  color: var(--branco);
  font-weight: 400;
}
#localizacao div {
  border-radius: 2rem;
  overflow: hidden;
  height: 60vh;
  background: var(--branco);
}
#localizacao iframe {
  width: 100%;
  height: 100%;
}

#ficha {
  padding: 8rem var(--space);
  gap: 8rem;
}
#ficha div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
}
@media (orientation: portrait) {
  #ficha div {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 3rem;
  }
}
#ficha h3 {
  font-size: 2.5rem;
  color: var(--preto);
}
#ficha h3::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  width: 1.5rem;
  height: 0.25rem;
  background: var(--azul);
}
@media (orientation: portrait) {
  #ficha h3 {
    font-size: 1.4rem;
  }
}

@media (orientation: landscape) {
  #contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
#contato img {
  flex: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contato form {
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
  padding: 8rem var(--space);
  background: var(--bege-1);
}
#contato form p:nth-of-type(1) {
  display: none;
  color: var(--terracota);
}
#contato form.sended p {
  display: block;
}
#contato form.sended button {
  display: none;
}
#contato form > input:focus::-moz-placeholder {
  color: transparent;
}
#contato form > input:focus:-ms-input-placeholder {
  color: transparent;
}
#contato form > input:focus::placeholder {
  color: transparent;
}
#contato input {
  border-bottom: 1px solid var(--branco);
  border-radius: 0;
}
#contato h2 {
  color: var(--branco);
  margin-bottom: 1rem;
}
#contato button {
  align-self: flex-start;
  margin-top: 2rem;
}

footer {
  flex-direction: row;
  background: black;
}
@media (orientation: portrait) {
  footer {
    flex-direction: column;
    padding-bottom: 10rem;
  }
}
footer div {
  padding: var(--space);
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space);
}
footer img {
  width: auto;
  height: 2.5rem;
}
footer .mos {
  height: 4rem;
}
footer .melo-alves {
  margin-top: 1.2rem;
}
footer span {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem var(--space);
}
footer small {
  color: var(--branco);
  font-size: 0.8rem;
  line-height: 1.6;
}
@media (orientation: portrait) {
  footer small {
    font-size: 1.2rem;
  }
}

#tour-virtual {
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 0px;
  bottom: 0px;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 60px 20px;
  height: 100vh;
  border: none;
}
#tour-virtual h2 {
  font-family: "Mori", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 34px;
  color: #FFEFD7;
  margin-bottom: 40px;
  text-align: center;
}
#tour-virtual #tours-virtual {
  gap: 3rem;
}
@media (orientation: portrait) {
  #tour-virtual #tours-virtual {
    flex-direction: column;
    padding-bottom: 7rem;
  }
}
#tour-virtual #iframe1-container, #tour-virtual #iframe2-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
#tour-virtual #iframe1-container > div, #tour-virtual #iframe2-container > div {
  flex-direction: column;
  align-items: flex-end;
  width: 70%;
  height: 70%;
}
#tour-virtual #iframe1-container > div iframe, #tour-virtual #iframe2-container > div iframe {
  width: 100%;
  height: 100%;
}
#tour-virtual #iframe1-container > div > button, #tour-virtual #iframe2-container > div > button {
  width: 2rem;
  height: 5rem;
  background: transparent;
}
#tour-virtual #iframe1-container.show-up, #tour-virtual #iframe2-container.show-up {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 800px) {
  #tour-virtual {
    padding: 0 10px;
    padding-top: 100px;
  }
  #tour-virtual h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  #tour-virtual iframe {
    height: 350px;
    margin-left: 0px;
  }
}

.pht-whatsapp > form > div {
  margin: 1rem 3rem 1rem 1rem !important;
  display: flex;
  flex-direction: column;
}
.pht-whatsapp > form > div .chat-header .chat-admin-details {
  display: flex;
  flex-direction: column;
}
.pht-whatsapp > form > div .chat-form {
  /* Para alterar o texto do placeholder, usamos o pseudo-elemento específico do navegador */
}
.pht-whatsapp > form > div .chat-form > input {
  font-size: 1rem;
  width: 75% !important;
}
@media (orientation: portrait) {
  .pht-whatsapp > form > div .chat-form > input {
    font-size: 2rem;
    width: 100% !important;
  }
}
.pht-whatsapp > form > div .chat-form input::-moz-placeholder {
  font-size: 1rem; /* Altera o tamanho do texto do placeholder */
}
.pht-whatsapp > form > div .chat-form input:-ms-input-placeholder {
  font-size: 1rem; /* Altera o tamanho do texto do placeholder */
}
.pht-whatsapp > form > div .chat-form input::placeholder {
  font-size: 1rem; /* Altera o tamanho do texto do placeholder */
}
@media (orientation: portrait) {
  .pht-whatsapp > form > div .chat-form input::-moz-placeholder {
    font-size: 2rem;
  }
  .pht-whatsapp > form > div .chat-form input:-ms-input-placeholder {
    font-size: 2rem;
  }
  .pht-whatsapp > form > div .chat-form input::placeholder {
    font-size: 2rem;
  }
}
.pht-whatsapp > form > div .chat-form input::-webkit-input-placeholder {
  font-size: 1rem; /* Para navegadores baseados em Webkit (Chrome, Safari) */
}
@media (orientation: portrait) {
  .pht-whatsapp > form > div .chat-form input::-webkit-input-placeholder {
    font-size: 2rem;
  }
}
.pht-whatsapp > form > div .chat-form input::-moz-placeholder {
  font-size: 1rem; /* Para Firefox */
}
@media (orientation: portrait) {
  .pht-whatsapp > form > div .chat-form input::-moz-placeholder {
    font-size: 2rem;
  }
}
.pht-whatsapp > form > div .chat-form input:-ms-input-placeholder {
  font-size: 1rem; /* Para Internet Explorer */
}
@media (orientation: portrait) {
  .pht-whatsapp > form > div .chat-form input:-ms-input-placeholder {
    font-size: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */

/* Ícone flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 40px;
    text-align: center;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.4);
}

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

@media (orientation: portrait) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

.h3-perola{
  color:#f3f7f3;
  font-weight: 300;
  text-align: center;
}

/* Novo modal para plantas em fullscreen */
.planta-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.planta-modal.active {
  display: flex;
}

.planta-modal-content {
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.planta-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.planta-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--branco);
  border: 1px solid var(--preto);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
}

.planta-modal-close::before,
.planta-modal-close::after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background: var(--preto);
}

.planta-modal-close::before {
  transform: rotate(45deg);
}

.planta-modal-close::after {
  transform: rotate(-45deg);
}

nav#mobile,
.planta-modal,
.open_modal {
  pointer-events: none;
}
nav#mobile:target,
.planta-modal.active,
.slider.active,
.open_modal.active {
  pointer-events: auto;
}
