body{
  overflow-x:hidden;
  overscroll-behavior-y: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

line {
  shape-rendering: geometricPrecision;
}

line {
  shape-rendering: geometricPrecision;
}

.hide{
  display:none;
}

div{
  /*border:1px solid green;*/
}

/* TEMA */
*,
dl, ol, ul {
  margin: 0;
  padding: 0;
}

:root {
  --branco: #ffffff;
  --azul: #002337;
  --azul-claro: #8fadb4;
  --cinza: #c9c9c9;
  --texto: 'Open Sans', sans-serif;
  --titulo: 'Tenor Sans', sans-serif;;
}

body {
  color: var(--azul);
  font-family: var(--texto);
  font-size: 2.2vh;
  line-height: 1.5;
}

div,
section {
  display: flex;
}



/* SCROLL */
::-webkit-scrollbar {
  /*display: none;*/
}



/* TITULOS */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--titulo);
  line-height: 1.1;
  margin-bottom: 0;
}

h2 {
  font-size: 10vh;
}

h3 {
  font-size: 6vh;
}



/* TEXTO */
p {
  margin: 0;
}

.justificado {
  text-align: justify;
}


/* PONTO */
.ponto {
  align-items: center;
  background: var(--azul) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  left: 30px;
  height: 2vh;
  justify-content: center;
  position: absolute;
  top: 30px;
  transition: all 0.2s ease-out 0s;
  width: 2vh;
  z-index: 996;
}

.ball {
  align-items: center;
  background: var(--azul) no-repeat center center;
  background-size: cover;
  border-radius: 50%;
  width: 2vh;
  height: 2vh;
  position: fixed;
  top: 30px;
  left: 30px;
  transition: all 0.2s ease-out 0s;
  border-radius: 50%;
  pointer-events: none;
  z-index:997;
}

.pontoequipe{
  position:absolute;
  height: 0;
  width: 0;
  opacity: 0;
  top:0;
  left:0;
  z-index:998;
  transition: all 0.1s ease-out 0s;
}
.pontoequipe.ativo{
  height: 25vh;
  width: 25vh;
  opacity: 1;
}

  .ponto img {
    display: none;
  }

.ponto.ativo {
  height: 15vh;
  width: 15vh;
}

.ponto.ativo.projeto {
  height: 20vh;
  width: 20vh;
}


.ponto .resumo{
  display:none;
  padding: 10%;
  font-size: .8em;
  color:var(--branco);
  text-align: center;
}

  .ponto .resumo h2{
    font-size: 2em;
    text-transform: uppercase;
  }

.ponto.ativo .resumo{
  display:block;
}

  .ponto.ativo img {
    display: inline-flex;
    height: auto;
    width: 60%;
  }

.ponto.ativo.equipe {
  height: 25vh;
  width: 25vh;
}
  .ponto.ativo.equipe img {
    display: none;
  }



/* MODAL CONTATO */
.modal-contato {
  bottom: 0;
  display: none;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}
.modal-contato.ativo {
  display: flex;
}

  .modal-contato .modal .fechar {
    display: flex;
    height: 32px;
    opacity: .3;
    position: absolute;
    right: 5vh;
    text-indent: -999em;
    top: 5vh;
    transform: rotate(-45deg);
    transform-origin: center center;
    width: 32px;
    z-index: 100;
  }
  .modal-contato .modal .fechar:hover {
    opacity: 1;
  }
    .modal-contato .modal .fechar::before {
      content: "";
      border-right: 2px solid var(--azul);
      height: 32px;
      width: 1px;
    }
    .modal-contato .modal .fechar::after {
      content: "";
      border-bottom: 2px solid var(--azul);
      height: 1px;
      margin-left: -17px;
      margin-top: 14px;
      width: 32px;
    }

  .modal-contato .modal {
    align-items: center;
    background: var(--azul);
    border-radius: 50%;
    color: var(--branco);
    display: flex;
    flex-direction: column;
    height: 96vh;
    left: 50%;
    justify-content: center;
    margin-left: -48vh;
    margin-top: -48vh;
    position: absolute;
    top: 50%;
    width: 96vh;
    z-index: 20;
  }
    .modal-contato .modal h2 {
      font-size: 6vh;
      margin-bottom: 3vh;
      margin-top: 3vh;
    }
    .modal-contato .modal ul.contatos {
      justify-content: center;
      display: flex;
      grid-column-gap: 2vh;
      grid-row-gap: 1vh;
      flex-wrap: wrap;
      margin-bottom: 5vh;
      padding: 0 3vh;
    }
      .modal-contato .modal ul.contatos li {
        align-items: center;
        display: flex;
        gap: 1.5vh;
        font-size: 1.7vh;
        white-space: nowrap;
      }
        .modal-contato .modal ul.contatos li img {
          height: 2vh;
          max-width: 2vh;
          width: auto;
        }
    .modal-contato .modal form {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5vh;
      width: 70%;
    }
      .modal-contato .modal form > div {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        gap: .5vh;
        width: 100%;
      }
      .modal-contato .modal form > div.meio {
        width: auto;
      }
        .modal-contato .modal form > div label {
          font-size: 1.5vh;
        }
        .modal-contato .modal form > div input,
        .modal-contato .modal form > div textarea {
          background: linear-gradient(180deg, #04161EFF 0%, #04161E33 100%);
          border: none;
          color: var(--branco);
          height: 4.5vh;
          padding: 0 1.5vh;
        }
        .modal-contato .modal form > div textarea {
          height: auto;
          padding: 1.5vh;
        }
        .modal-contato .modal form > div .btn {
          background: transparent;
          border: 1px solid var(--branco);
          color: var(--branco);
          height: 6vh;
          margin: 2vh auto 0;
          padding: 0 5vh;
        }
      .modal-contato .modal ul.social {
        display: flex;
        list-style: none;
        gap: 2vh;
        padding-top: 4vh;
      }
        .modal-contato .modal ul.social li:nth-child(1),
        .modal-contato .modal ul.social li:nth-child(5) {
          margin-top: 2vh;
        }
        .modal-contato .modal ul.social li:nth-child(2),
        .modal-contato .modal ul.social li:nth-child(4) {
          margin-top: 3.5vh;
        }
        .modal-contato .modal ul.social li:nth-child(3) {
          margin-top: 4vh;
        }
          .modal-contato .modal ul.social li a img {
            height: 4.5vh;
            max-width: 4.5vh;
            width: auto;
          }

  .modal-contato .fundo {
    background: var(--branco);
    bottom: 0;
    left: 0;
    opacity: .8;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 15;
  }



/* NAV */
nav {
  height: 100px;
  position: fixed;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  width: 100vh;
  z-index: 1000;
}
  nav ul {
    align-items: center;
    background: var(--azul);
    column-gap: 35px;
    display: flex;
    height: 100px;
    justify-content: center;
    left: 0;
    list-style: none;
    position: absolute;
    top: -100px;
    transition: all 0.2s ease-out 0s;
    width: 100vh;
    z-index: 100;
  }
  nav ul li{
    transition: all 0.3s ease-out 0.3s;
  }
  nav ul.ativo {
    top: 0;
  }
    nav ul li a {
      align-items: center;
      color: var(--azul-claro);
      display: inline-flex;
      height: 50px;
      text-decoration: none;
      transition: all 0.3s ease-out 0.3s;
    }
    nav ul li a:hover {
      color: var(--branco);
    }
    nav ul li.ativo a {
      color: var(--branco);
      font-weight: 600;
    }
    nav ul li.fechar {
      position: absolute;
      right: 29px;
      top: 29px;
    }
      nav ul li.fechar a {
        height: 42px;
        opacity: .3;
        text-indent: -999em;
        transform: rotate(-45deg);
        transform-origin: center center;
        width: 42px;
      }
      nav ul li.fechar a:hover {
        opacity: 1;
      }
        nav ul li.fechar a::before {
          content: "";
          border-right: 2px solid var(--azul);
          height: 42px;
          margin-left: 2vh;
          width: 1px;
        }
        nav ul li.fechar a::after {
          content: "";
          border-bottom: 2px solid var(--azul);
          height: 1px;
          margin-left: -21px;
          margin-top: -1px;
          width: 42px;
        }

      nav ul li > ul {
        align-items: center;
        background: var(--branco);
        left: 0;
        position: absolute;
        width: 100vh;
      }
      nav ul li > ul.ativo {
        top: 100px;
      }
      nav ul li > ul.marcador.ativo {
        top: 200px;
      }
        nav ul li > ul li a:hover {
          color: var(--azul);
        }
        nav ul li > ul li.ativo a {
          color: var(--azul);
          font-weight: 600;
        }

    nav ul.marcador {
      justify-content: start;
    }
      nav ul.marcador li {
        margin-left: 29px;
        transform: rotate(90deg);
        transform-origin: center center;
      }
        nav ul.marcador li h2 {
          font-family: var(--titulo);
          font-size: 80px;
        }



/* CENARIO */
.cenario {
}


  .cena {
    flex-shrink: 0;
    height: 100vh;
  }


  .cena.home {
    background: var(--branco);
    flex-direction: row;
  }

    .cena.home > div:nth-child(1) {
      align-items: center;
      flex-direction: column;
      height: 100vh;
      justify-content: center;
      min-width: 100vw;
    }

      .cena.home .logomarca {
        background-color: var(--azul);
        height: 20vh;
        position: relative;
        width: 20vh;
      }

      .cena.home.ativo .logomarca {
        height: 100vh;
        width: 100vh;
      }

        .cena.home .logomarca .arcos {
          bottom: 0;
          flex-direction: column;
          gap: 1.9%;
          overflow: hidden;
          position: absolute;
          right: 1.9%;
          top: 1.9%;
        }
          .cena.home .logomarca .arcos .arco {
            height: 68%;
            width: auto;
          }

      .cena.home .logotipo {
        height: 16vh;
        margin-top: 10vh;
        width: auto;
      }

    .cena.home > div:nth-child(2) {
      /*background: var(--branco);*/
      height: 100vh;
      width: 34vw;
    }
      .cena.home > div:nth-child(2) > div {
        padding: 10vh;
      }
        .texto-home{
          position: absolute;
          top:20vh;
          left:80vh;
          width: 40vh;
        }
        .cena.home > div:nth-child(2) > div p {
          color: var(--azul);
          font-family: var(--texto);
          opacity: .5;
        }


  .cena.chamada {
    align-items: center;
    background: var(--branco);
    flex-direction: column;
    justify-content: center;
    width: 100vw;
  }
    .cena.chamada > div {
      align-items: center;
      flex-direction: row;
      position: relative;
    }
      .cena.chamada > div:nth-child(1) {
        left: 0;
      }
      .cena.chamada > div:nth-child(2) {
        left: 0;
      }
      .cena.chamada > div:nth-child(3) {
        left: 0;
      }
        .cena.chamada h1 {
          color: var(--cinza);
          font-family: var(--titulo);
          font-size: 5vh;
          font-weight: 300;
          line-height: 1;
          margin-right: 10vh;
          text-transform: uppercase;
          word-wrap: break-word;
        }
        .cena.chamada h2 {
          color: var(--azul);
          font-family: var(--titulo);
          font-size: 30vh;
          font-weight: 300;
          line-height: 1;
          text-transform: uppercase;
        }


  .cena.nossa-filosofia {
    align-items: flex-end;
    background: var(--branco);
    flex-direction: row;
    gap: 2vh;
    /*padding-left: 50vh;*/
  }
    .cena.nossa-filosofia > div {
      align-items: center;
      flex-direction: row;
    }
      .cena.nossa-filosofia > div .arcos {
        gap: 2vh;
        flex-direction: column;
      }
        .cena.nossa-filosofia > div .arcos .arco {
          height: 40vh;
          width: auto;
        }
      .cena.nossa-filosofia > div .texto {
        flex-direction: column;
        width: 50vw;
        padding: 10vh;
      }
        .cena.nossa-filosofia > div .texto h2 {
          margin-bottom: 3vh;
        }


  .cena.equipe {
  }
    .cena.equipe > div {
      position: relative;
    }
      .cena.equipe div.dia,
      .cena.equipe div.noite {
        flex-direction: row;
        gap: 2vh;
      }
        .cena.equipe div.dia > div,
        .cena.equipe div.noite > div {
          align-items: flex-end;
          flex-direction: row;
          height: 100vh;
        }
          .cena.equipe div.dia > div .arcos,
          .cena.equipe div.noite > div .arcos {
            gap: 2vh;
            flex-direction: column;
          }
            .cena.equipe div.dia > div .arcos .arco,
            .cena.equipe div.noite > div .arcos .arco {
              height: 40vh;
              width: auto;
            }
        .cena.equipe div.mascara {
          border-radius: 50%;
          overflow: hidden;
          display: block;
          position: absolute;
          /*transition: all 0.2s ease-out 0s;*/
          width: 170vw;
          height: 170vw;
          top: 0;
          left: 0;
          margin:0;
          z-index:995;
          /*border:1px solid red;*/
        }
          .cena.equipe div.mascara > div {

          }
          .cena.equipe div.mascarainside {
            background: var(--azul);
            top: 0px;
            left: 0px;
            margin:0;
            position: absolute;
            /*transition: all 0.2s ease-out 0s;*/
          }

      .cena.equipe div.conteudo {
        align-items: center;
        flex-direction: row;
        gap: 2vh;
        padding-left: 20vh;
        padding-right: 70vh;
      }
        .cena.equipe div.conteudo > div {
          flex-direction: column;
          height: 100%;
        }
          .cena.equipe div.conteudo > div .arcos {
            gap: 2vh;
            flex-direction: row;
          }
            .cena.equipe div.conteudo > div .arcos .arco {
              height: 40vh;
              width: auto;
            }
          .cena.equipe div.conteudo > div .texto {
            color: var(--azul);
            flex-direction: column;
            flex-grow: 1;
            justify-content: center;
            margin-left: auto;
            margin-right: 10vh;
            width: 40vh;
          }
            .cena.equipe div.conteudo > div .texto h2 {
              margin-bottom: 3vh;
            }
          .cena.equipe div.conteudo > div ul {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            gap: 50px;
            justify-content: center;
            list-style: none;
            padding: 100px;
          }
            .cena.equipe div.conteudo > div ul li {
              white-space: nowrap;
              word-break: keep-all;
            }
              .cena.equipe div.conteudo > div ul li a {
                color: var(--azul);
                text-decoration: none;
              }

              .membros-equipe li p{
                color:#86919B;
              }

      .cena.equipe div.noite + div.conteudo {
      }
          .cena.equipe div.noite +  div.conteudo > div .texto {
            color: var(--branco);
          }
              .cena.equipe div.noite +  div.conteudo > div .texto .texto-equipe{
                color:#86919B;
              }
              .cena.equipe div.noite +  div.conteudo > div ul li a {
                color: var(--branco);
                z-index: 999;
              }


  .cena.logo-transicao {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    min-width: 100vw;
  }
    .cena.logo-transicao > div {
      background: var(--branco);
      height: 100vh;
      flex-basis: 66%;
      overflow: hidden;
      position: relative;
    }
      .cena.logo-transicao > div .arcos {
        bottom: 0;
        flex-direction: column;
        gap: 2vh;
        position: absolute;
        right: 2vh;
        bottom: 80%;
      }
        .cena.logo-transicao > div .arcos .arco {
          height: 75vh;
          width: auto;
        }

  .cena.mosaico {
    align-items: center;
    clip: rect(0, auto, auto, 0);
    justify-content: center;
    min-width: 100vw;
    overflow: hidden;
    position: relative;
  }
    .cena.mosaico div.pecas {
      align-items: center;
      background: url(../img/foto-escritorio.jpg) center center;
      background-size: 100vw;
      flex-direction: row;
      justify-content: center;
    }
    .cena.mosaico.ativo div.pecas {
      display: none;
    }
      .cena.mosaico div.pecas .arcos {
        flex-direction: column;
      }
        .cena.mosaico div.pecas .arcos .arco {
          align-items: center;
          height: 143px;
          justify-content: center;
          overflow: hidden;
          position: relative;
          width: 210px;
        }
          .cena.mosaico div.pecas .arcos .arco img {
            display: flex;
            height: auto;
            width: 487px;
            z-index: 2;
          }
          /*.cena.mosaico div.pecas .arcos .arco:hover img {*/
          /*  -webkit-animation: spin 0.3s ease-in-out forwards;*/
          /*     -moz-animation: spin 0.3s ease-in-out forwards;*/
          /*          animation: spin 0.3s ease-in-out forwards;*/
          /*}*/
          /*@keyframes spin {*/
          /*    0% {*/
          /*      transform: rotate(0deg);*/
          /*      width: 507px;*/
          /*    }*/
          /*    50% {*/
          /*      width: 300px;*/
          /*    }*/
          /*    100% {*/
          /*      transform: rotate(180deg);*/
          /*      width: 507px;*/
          /*    }*/
          /*}*/

          .cena.mosaico div.pecas .arcos .arco::before {
            content: "";
            background: var(--cinza);
            display: flex;
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 1;
            opacity: 1;
          }
          .cena.mosaico div.pecas .arcos .arco.flipped::before {
            opacity:0;
          }

          /*.cena.mosaico div.pecas .arcos .arco:hover::before {*/
          /*  opacity: 1;*/
          /*  -webkit-animation: opacidade 0.3s ease-in-out forwards;*/
          /*     -moz-animation: opacidade 0.3s ease-in-out forwards;*/
          /*          animation: opacidade 0.3s ease-in-out forwards;*/
          /*}*/
          /*@keyframes opacidade {*/
          /*    0% {*/
          /*      opacity: 1;*/
          /*    }*/
          /*    50% {*/
          /*      opacity: 1;*/
          /*    }*/
          /*    100% {*/
          /*      opacity: 0;*/
          /*    }*/
          /*}*/
    .cena.mosaico .brilho {
      background: var(--branco);
      bottom: 0;
      left: 0;
      opacity: 0;
      overflow: hidden;
      pointer-events: none;
      position: absolute;
      right: 0;
      top: 0;
      /*transition: all 0.3s ease-out 0.3s;*/
      z-index: -1;
    }
    .cena.mosaico.ativo .brilho {
      opacity: 1;
    }
      .cena.mosaico .brilho img {
        height: auto;
        width: 100vw;
      }


  .cena.projetos {
    flex-direction: row;
    padding-left: 50vh;
  }
    .cena.projetos > div:nth-child(1) {
      align-items: center;
      background: var(--cinza);
      border-radius: 50vh 0 0 50vh;
      color: var(--branco);
      flex-direction: column;
      height: 100vh;
      justify-content: center;
      padding: 0 30vh;
    }
      .cena.projetos > div:nth-child(1) h3 {
        font-size: 30vh;
        font-weight: 300;
        line-height: 1;
      }
      .cena.projetos > div h3:first-child {
        margin-right: 20vh;
      }
      .cena.projetos > div h3:last-child {
        margin-left: 20vh;
      }
      .cena.projetos > div:nth-child(1) span {
        font-size: 12vh;
        font-family: var(--titulo);
        line-height: 1;
        margin-top: -3vh;
      }
      .cena.projetos > div:nth-child(2) {
      }
        .cena.projetos > div:nth-child(2) .cidade {
          background: url(../img/cidade-fundo.svg) repeat-x;
          background-color: var(--branco);
          background-size: auto 100vh;
          /*background-attachment: fixed;*/
          /*flex-direction: row;*/
        }
          .cena.projetos > div:nth-child(2) .cidade > div {
            position: relative;
          }
            .cena.projetos > div:nth-child(2) .cidade img {
              height: 100vh;
            }
            .cena.projetos > div:nth-child(2) .cidade a {
              bottom: 0;
              color: var(--azul);
              font-family: var(--titulo);
              font-size: 30vh;
              left: 0;
              line-height: 20vh;
              position: absolute;
              text-decoration: none;
              z-index: 1;
              transition: all 0.2s ease-out 0s;
            }
            .cena.projetos > div:nth-child(2) .cidade a .sombra{
              bottom: 0;
              color: var(--cinza);
              content: "";
              left: 0;
              line-height: 20vh;
              position: absolute;
              transform: scaley(-1) skew(0.17turn) scaleY(0.5);
              transform-origin: bottom left;
              z-index: -1;
            }
            .cena.projetos > div:nth-child(2) .cidade .a {
              bottom: 30vh;
              left: 20vh;
            }

            .cena.projetos > div:nth-child(2) .cidade .b {
              bottom: 20vh;
              left: 50vh;
            }

            .cena.projetos > div:nth-child(2) .cidade .c {
              bottom: 25vh;
              left: 0;
            }

            .cena.projetos > div:nth-child(2) .cidade .d {
              bottom: 20vh;
              left: 40vh;
            }

            .cena.projetos > div:nth-child(2) .cidade .e {
              bottom: 20vh;
              left: -25vh;
            }

            .cena.projetos > div:nth-child(2) .cidade .f {
              bottom: 24vh;
              left: 0vh;
            }


    .cena.cidade-fim {
      background: var(--azul);
      flex-direction: row;
      padding-right: 200px;
    }
      .cena.cidade-fim > div {
        align-items: center;
        background: var(--cinza);
        border-radius: 0 50vh 50vh 0;
        color: var(--branco);
        height: 100vh;
        min-width: 600px;
      }


    .cena.projetos-principal {
      flex-direction: row;
    }
      .cena.projetos-principal > div {
      }
        .cena.projetos-principal > div .apresentacao {
          align-items: center;
        }
          .cena.projetos-principal > div .apresentacao .capa {
            align-items: center;
            height: 100vh;
            justify-content: center;
            position: relative;
            width: 100vw;
          }
            .cena.projetos-principal > div .apresentacao .capa h2 {
              color: var(--branco);
              font-size: 25vh;
              font-weight: 300;
              padding: 0 50vw;
            }
            .cena.projetos-principal > div .apresentacao .capa .imagem-principal {
              bottom: 0;
              clip: rect(0, auto, auto, 0);
              left: 0;
              right: 0;
              top: 0;
              position: absolute;
              z-index: -1;
            }
            .cena.projetos-principal > div .apresentacao .capa .imagem {
              background-position: center center;
              background-size: cover;
              left: 50%;
              height: 50vh;
              margin-left: -3vw;
              margin-top: -25vh;
              position: fixed;
              top: 50%;
              width: 6vw;
              z-index: -1;
            }
            .cena.projetos-principal > div .apresentacao .capa .imagem.ativo {
              background-position: center center;
              background-size: cover;
              left: 50%;
              height: 100vh;
              margin-left: -50vw;
              margin-top: -50vh;
              position: fixed;
              top: 50%;
              width: 100vw;
              z-index: -1;
            }
            .cena.projetos-principal > div .apresentacao .capa .fundo {
              background: var(--azul);
              bottom: 0;
              left: 0;
              position: absolute;
              right: 0;
              top: 0;
              z-index: -2;
            }
          .cena.projetos-principal > div .apresentacao .imagens {
            position: relative;
            /*overflow: hidden;*/
            width: 100vw;
            height: 100vh;
            /*border:1px solid red;*/
          }
            .cena.projetos-principal > div .apresentacao .imagens img{
              position: absolute;
              top:0;
              right:0;
              right: -140vw;
            }

          .cena.projetos-principal > div .apresentacao .texto {
              width: 100vw;
          }

          .cena.projetos-principal > div .apresentacao .texto .content {
            flex-direction: column;
            width: 75vw;
            padding: 0 30vh;
          }

            .cena.projetos-principal > div .apresentacao .texto p {
              width: 100%;
              float:left;
            }

            .cena.projetos-principal > div .apresentacao .texto h2 {
              margin-bottom: 3vh;
              width: 100%;
            }

        .cena.projetos-principal > div .planta {
          align-items: center;
          column-gap: 10vh;
          height: 100vh;
          justify-content: center;
          width: 100vw;
          position:relative;
        }

        .cena.projetos-principal > div .plantas, .cena.projetos-principal > div .isometricas {
          position:relative
        }

        .cena.projetos-principal > div .planta .imagens{
          position:relative;
        }
            .cena.projetos-principal > div .planta img{
              max-height: 80vh;
              max-width: 70vw;
              position:relative;
              /*x:+200vw;*/
            }

            .cena.projetos-principal > div .isometricas img{
              position: absolute;
              width: auto;
              height: auto;
              max-height: 100vh;
            }

        .cena.projetos-principal > div .galeria {
          align-items: center;
          height: 100vh;
          width: 100vw;
        }
          .cena.projetos-principal > div .galeria .capa {
            align-items: center;
            height: 100vh;
            justify-content: center;
            min-width: 100vw;
            position: relative;
          }
            .cena.projetos-principal > div .galeria .capa h2 {
              font-size: 20vh;
              font-weight: 300;
              z-index: 2;
              bottom: -25vh;
              position: absolute;
            }
            .cena.projetos-principal > div .galeria .capa .imagem-principal {
              background-position: center center;
              background-size: cover;
              height: 100vh;
              left: 0;
              top:0;
              position: absolute;
              width: 100vw;
              z-index: 1;
              /*transition: all 0.3s ease-out 0.3s;*/
            }

          .cena.projetos-principal > div .galeria .imagens {
            align-items: center;
            gap: 5vh;
            justify-content: center;
            padding: 0 30vh 0 43vh;
            position: relative;
            min-width: 100vw;
          }

        .cena.projetos-principal > div .galeria .imagens img{
          position: absolute;
        }

            .cena.projetos-principal > div .galeria .imagens .texto {
              flex-direction: column;
              /*min-width: 40vw;*/
              /*max-width: 75vw;*/
              min-width: 80vw;
              padding: 0 30vh;
            }
            .cena.projetos-principal > div .galeria .imagens .texto h2 {
              margin-bottom: 3vh;
            }

            .cena.projetos-principal > div .galeria .imagens img {
              height: 90vh;
              width: auto;
            }
          .cena.projetos-principal > div .galeria .texto {
            flex-direction: column;
            padding-left: 20vw;
          }

            .cena.projetos-principal > div .galeria .texto h2 {
            }
            .cena.projetos-principal > div .galeria .texto dl {
            }
              .cena.projetos-principal > div .galeria .texto dl dt,
              .cena.projetos-principal > div .galeria .texto dl dd {
              }
              .cena.projetos-principal > div .galeria .texto dl dt {
                font-weight: 600;
                margin-top: 3vh;
              }
          .cena.projetos-principal > div .galeria .proximo {
            align-items: center;
            display: flex;
            margin-left: 35vw;
            width: 100px;
          }
            .cena.projetos-principal > div .galeria .proximo a {
              width: 100px;
            }
            .cena.projetos-principal > div .galeria .proximo img {
              width: 100px;
            }

    .cena.mais-projetos {
      gap: 30vh;
      flex-direction: row;
      padding: 0 30vh;
    }
      .cena.mais-projetos > div {
        align-items: center;
        justify-content: center;
      }
        .cena.mais-projetos > div img {
          height: 80vh;
          width: auto;
        }
        .cena.mais-projetos > div .texto {
          flex-direction: column;
          height: 80vh;
          min-width: 25vw;
          padding-left: 10vh;
        }
          .cena.mais-projetos > div .texto .info {
            flex-direction: column;
            height: 100%;
          }
            .cena.mais-projetos > div .texto .info h3 {
              margin-bottom: 3vh;
            }
          .cena.mais-projetos > div .texto dl {
          }
            .cena.mais-projetos > div .texto dl dt,
            .cena.projetos-principal > div .texto dl dd {
            }
            .cena.mais-projetos > div .texto dl dt {
              font-weight: 600;
              margin-top: 3vh;
            }

/*.portfolio-gallery{*/
/*  position: relative;*/
/*}*/
/*.portfolio-gallery img{*/
/*  position:absolute;*/
/*  top:0;*/
/*  bottom:0;*/
/*}*/

.item:not(.owl-carousel .item){
  position: absolute;
}
.planta{
  position:absolute;
}
p.item{
  padding:0 20%;
}
.compare {
  width:80vw;
  height:80vh;
  margin:10vh;
  position: relative;
  overflow: hidden;
}

.compare img {
  width: 100%;
  height: auto;
  position:absolute;
}

.dragger {
  width:10px;
  height:100%;
  background:var(--azul);
  position:absolute;
}

.clipped {
  /*filter:saturate(0) contrast(1.5);*/
  clip-path:inset(0px 320px 0px 0px);
}

.ponto i{
  display: none;
}

.ponto.setas{
  color:white;
  width: 25px;
  height: 25px;
  margin:0;
  top:0;
  left:0;
  cursor: none;
}

.ponto.info{
  color:white;
  width: 32px;
  height: 32px;
  cursor: none;
}

.ponto.setas i, .ponto.info i{
  display: block;
}

p.item{
  cursor: none;
  display: flex;
  align-items: center;
  height:100vh;
}

.carousel{
  width: 40vw;
  overflow: hidden;
}

.projeto .info{
  max-width: 30vw;
}

.btn{
  background: #002337;
  color:white;
  max-width: 200px;
  margin:20px 0;
  padding:10px;
  border:none;
  cursor: pointer;
}

.btn:hover{
  background: #043f62;
  color:white;
  max-width: 200px;
  padding:10px;
  border:none;
  cursor: pointer;
}

.gallery--hover--desc {
  width: 110px;
  height: 110px;
  padding: 10px;
  text-align: center;

  top:0;
  left:0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

area{
  cursor:none;
}

.gallery--hover--desc .description{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 17px;
  transition: all 2s;
}

.ball .description{
  text-transform: capitalize;
}

.introtext{
  position: relative;
  width: 100vw;
  height:100vh;
}

.galeria2{
  position:absolute;
  width: 100vw;
  height: 100vh;
  top:0;
  margin-top:70px;
}

.owl-carousel .owl-item {
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: -70px;
}

.owl-prev, .owl-next{
  position: absolute;
  z-index: 9999;
  top: 20vh;
  font-size: 200px !important;
  color: var(--azul);
}

.owl-theme .owl-nav [class*='owl-']:hover {
  color: var(--cinza);
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: transparent;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-prev{
  left: 10px;
}
.owl-next{
  left: 94vw;
  width: 100px;
}

.owl-dots{
  position: absolute;
  bottom: 10vh;
  display: flex;
  justify-content: center;
  width: 100vw;
}

.closegallery{
  position: absolute;
  top:-30px;
  left:0;
  width: 100vw;
  text-align: center;
  color:var(--azul);
  text-decoration:none;
  font-size:15px;
}

.owl-caption{
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  text-align: center;
  background: white;
  font-weight: bold;
  color: #002337;
  padding: 10px;
  font-size: 13px;
  border-radius:0 10px 0 0 ;
}

.panoramic{
  height: auto !important;
}

.owl-item img{
  border-radius:30px;
}

.isometricas{
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}


