:root {
  /* --marrom: #3E250B; */
  --marrom: #4E2F0E;
  --bege: #C2B7A4;
  --offwhite: #F6F5EE;
  --creme: #EFEDE1;
  --rosa: #D1AD97;
  --pt-header: 8vw;
  --pt-nav: 4vw;
}
::-webkit-scrollbar {
  display: none;
}
#wpadminbar {
  display: none !important;
}
html {
  scrollbar-width: none;
}
html {
  -ms-overflow-style: none;
}
::selection {
  background-color: var(--bege);
}
body {
  font-size: 13px;
  background-color: var(--creme);
  color: var(--marrom);
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  max-width: 100vw;
  overflow-x: hidden;
  transition: opacity 0.5s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.bg-bege {
  background-color: var(--bege);
}
body.bg-offwhite {
  background-color: var(--offwhite);
}
body.preload {
  opacity: 0;
}
body.page-loaded {
  opacity: 1;
}
body.page-fadeout {
  opacity: 0;
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translate(0, 1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.in-view {
  animation: fade .5s .5s both;
}
.not-in-view {
  opacity: 0;
}
.linguas {
  position: fixed;
  z-index: 9999999999;
  top: 100px;
  left: 50%;
  transform: translate(-50%);
}
.linguas.canto {
  top: 20px;
  left: auto;
  right: 20px;
  transform: translate(0);

}
.linguas.canto a, .linguas.canto a:active, .linguas.canto a:visited {
  color:#4E2F0E;
  opacity: 50%;
  transition: color ease 0.5s;
}
.linguas a, .linguas a:active, .linguas a:visited, .linguas.white a, .linguas.white a:active, .linguas.white a:visited {
  color: white;
  opacity: 1;
  transition: color ease 0.5s;
}
.linguas a:hover {
  color: #C2B7A4;
  transition: color ease 0.5s;
}
.traduzir-en {
  display: none;
}
html[lang="en"] .traduzir-pt {
  display: none;
}
html[lang="en"] .traduzir-en {
  display: inline;
}
.linguas a.glink + a.glink::before {
  content: "|";
  margin: 0 10px;
}
/* .visualmente-oculto {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
} */

a,
a:focus,
a:active,
a:visited,
a:hover,
button:focus,
button:active {
  cursor: pointer!important;
  outline: none;
  color: var(--marrom);
  text-decoration: none;
   -webkit-tap-highlight-color: transparent;
}
.page {
  margin-bottom: 0px;
}
.marrom, .marrom a {
  color: var(--marrom);
}
.white, .white a {
  color: white;
}
.pt45 {
  padding-top: 2.5rem;
}
.mobi {
  display: none;
}

h1.hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

a, p, h1, h2, h4, small {
  font-family: "neue-haas-grotesk-display", sans-serif;
  letter-spacing: 0.2px;
  font-weight: 300;
  font-style: normal;
}
small {
  font-weight: 600;
  font-size: 10px;
}
h1, h2 {
  font-size: 32px;
  line-height: 1;
}
h3, h3 p {
  font-size: 28px;
  font-family: "charter-bt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.25;
  margin-top: 0px;
  letter-spacing: -0.5px;
}
.sobre h3, .sobre h3 p {
  font-size: 20px;
  margin-bottom: 16px;
}
h4 {
  font-size: 16px;
}
em {
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}
.sobre h3 strong {
  font-weight: 600;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
}



header {
  position: sticky;
  left: 0;
  top: 16px;
  margin-top: 10vw;
  width: 100vw;
  z-index: 999999;
}
header a {
  cursor: pointer!important;
  width: fit-content;
}
header {
  padding-left: 20px;
  padding-right: 20px;
}
header.white h5 {
  color: white;
}
header h5.live {
  opacity: 100%;
}
header h5 {
  margin: 0px;
  font-size: 14px;
  font-family: nimbus-sans, sans-serif;
  font-weight: 300;
  font-style: normal;
  opacity: 40%;
}

nav {
  /* position: fixed;
  top: 10.5vw; */
  left: 12px;
  position: sticky;
  top: 24px;
  /* margin-top: 10vw; */
  width: calc(100vw - 24px);
  opacity: 0;
  z-index: 9999;
  padding: 20px 0px;
  transition: opacity ease 0.7s;
}
nav div::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(246,245,238,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 2s ease;
}
nav div {
  width: 100%;
  border-top: 1pt solid var(--marrom);
  border-bottom: 1pt solid var(--marrom);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
nav.visible, nav.visible div::before {
  opacity: 1;
  pointer-events: auto;
}
nav a {
  font-size: 10px;
  letter-spacing: 0.3px;
  cursor: pointer!important;
}

footer h5 {
  font-size: 14px;
    font-family: nimbus-sans, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.pt-header {
  padding-top: var(--pt-header);
}
.pt-header-nav {
  padding-top: var(--pt-nav);
}
.ml-auto {
  margin-left: auto;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.fullscreen-fade-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slider-item.active {
    opacity: 1;
}
.slider-img {
  pointer-events: none;
  cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-img-desk {
    display: block;
}
.slider-img-mobi {
    display: none;
}


/* prevnextimg strt */
.slide .preview {
  position: absolute;
  top: 50%;
  width: auto;
  height: 80dvh;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0;                /* estado inicial invisível */
  transition: opacity 0.7s ease; /* aqui que rola o fade */
}
.slide .prev-preview {
  right: 98%;
}
.slide .next-preview {
  left: 98%;
}
/* prevnextimg end */


.logo {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  z-index: 999;
  opacity: 1;
  transition: opacity ease 0.7s;
}
.logo.some {
  opacity: 0;
  transition: opacity ease 0.7s;
}
.logo svg {
  width: 160px;
}
.logo svg path {
  transition: fill ease 1s;
}
.logo svg:hover path, .logo .bege path {
  fill: #C1B5A4;
}
.logo .bege:hover svg path {
  fill: white;
}
.logo .logo-index svg path {
  fill: var(--creme);
}
.logo .logo-index:hover svg path {
  fill: white;
}

.projetos, .sobre {
  padding-left: 12px;
  padding-right: 12px;
}
.projeto-card {
  aspect-ratio: 4/3;
}
.projeto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity ease 0.7s;
  top: 0;
  left: 0;
}
.projeto-card img.capa1 {
  z-index: 1;
}
.projeto-card img.capa2 {
  opacity: 0;
  z-index: 2;
}
.projeto-card:hover img.capa2 {
  opacity: 1;
}


.indice {
  padding: inherit 12px;
}
.linhas {
  height: calc(33.33vw - 12px - 12px - 8px);
  padding-left: 12px;
}
.linhas-inner {
  max-height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.linhas-inner::-webkit-scrollbar {
  display: none;
}
.linha {
  border-bottom: 1pt solid rgba(255,255,255,0.8);
  transition: border-top-color ease 0.5s;
}
.linha p {
  margin: 0px;
  margin-right: 20px;
  color: white;
  opacity: 0.8;
  transition: opacity ease 0.5s;
}
.linha .categoria {
  width: 90px;
}
.linha .area {
  width: 65px;
}
.linha .ano {
  width: 40px;
  margin-right: 0px;
}
.linha .local {
  width: 240px;
}
.linha .titulo {
  width: 300px;
  line-height: 1.2;
}
.linha.titulos {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color:#C2B7A4;
  min-height: 24px;
  height: 24px;
}
.linhas img.thumb-desk {
  position: absolute;
  top: -8px;
  right: calc(-33.33vw + 12px);
  padding-top: 32px;
  width: calc(33.33vw - 12px - 12px);
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity ease 0.7s;
  z-index: 999;
}
.linha:hover {
  border-top-color: rgba(255, 255, 255, 1);
}
.linha:hover p {
  opacity: 1;
  font-weight: 500;
}
.linhas img.thumb-desk.is-visible {
  opacity: 1;
}
.thumb-mobi {
  display: none;
}
.linha.titulos, .linha.titulos:hover {
  /* border: none; */
  padding-top: 0px;
  pointer-events: none;
}
.linha.titulos p {
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 1;
  font-size: 12px;
}
.linha .titulo {
  font-size: 15px;
}

.publis {
  border-top: 1pt solid var(--marrom);
}
.publis a {
  border-bottom: 1pt solid var(--marrom);
}
.publicacoes img {
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
}
.publi-premio {
  max-height: 87vw;
  overflow-y: scroll;
}

.single-projeto {
  width: 128dvh;
  margin-left: auto;
  margin-right: auto;
}
.single-title, .single-about {
  padding-left: calc((100vw - 128dvh)/2);
}
.single-title {
  /* width: calc((100vw - 60dvh)/2); */
  padding-right: 20px;
}
.single-about {
  width: 40vw;
}
.single h1 {
  margin-top: calc(15dvh - 50px + 24px);
}
.single-projeto p, .single-projeto small {
  margin: 0px;
  line-height: 1;
}
.single-projeto div.flex {
  /* border-top: 0.6pt solid var(--marrom); */
  padding: 6px 0px 9px 0px;
  align-items: center!important;
}
.single-projeto div.flex.mobi {
  display: none;
}
.single-projeto div.flex.col12 {
  padding-bottom: 0px;
}
.single-projeto div.flex.bt0 {
  border-top: none;
  border-bottom: 0.6pt solid var(--marrom);
}
.single-projeto .col2 {
  flex-grow: 1;
}
.col1 .single-titulo {
  width: 150px;
}
.col2 .single-titulo {
  width: 180px;
}
.single-titulo {
  display: block;
  padding-top: 4px;
}
.single-info {
  padding-top: 4px;
  font-family: "charter-bt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-right: 16px;
}
.single-info.nowrap {
  white-space: normal;
}

/* css single modificado */

.single-projeto {
  width: 128dvh;
  margin-left: auto;
  margin-right: auto;
  /* border-top: 0.6pt solid #4E2F0E; */
}
.single-projeto p, .single-projeto small {
  margin: 0px;
  line-height: 1;
}

.info-container {
  display: grid;
  grid-template-columns: 400px 1fr;
  width: 100%;
  border-top: 0.6pt solid var(--marrom);
}

.info-container div.flex {
  display: flex;
  align-items: flex-end;
  border-bottom: 0.6pt solid var(--marrom);
  padding: 6px 0px 9px 0px;
}

/* .info-container div.flex:nth-child(1),
.info-container div.flex:nth-child(2) {
   border-top: none;
} */

.info-container .single-titulo {
  flex-basis: 160px;
  flex-shrink: 0;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 500;
}

.info-container .single-info {
  flex-grow: 1;
  flex-basis: 0;
  padding-top: 4px;
  font-family: "charter-bt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* end css single */

.slide {
  width: 100%;
  height: calc(100dvh - 64px - 90px);
  height: 80dvh;
}
.slide img.view.horizontal {
  height: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity ease 2s;
}
.slide img.view.vertical {
  height: 100%;
  width: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity ease 2s;
}
.slide .minis {
  bottom: calc( -1 * (15dvh - 50px + 4px));
  left: 50%;
  transform: translateX(-50%);
  width: 60dvh;
  height: calc(15dvh - 50px);
  gap: 4px;
  overflow-x: auto;
  display: flex;
}
.minis img.mini {
  height: 100%;
  width: auto;
  opacity: 30%;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}
.minis img.mini.is-active {
  opacity: 1;
}
.slide .minis.active-drag {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  user-select: none;
}
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--marrom);
  opacity: 0.6;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 10;
}
.nav-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.nav-arrow.prev { left: 12px; }
.nav-arrow.next { right: 12px; }
.nav-arrow svg {
  display: block;
  width: 20px;
  height: 20px;
}

.slide > img.view { display: none; }

.slide .viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slide .viewport::-webkit-scrollbar { display: none; }

.slide .track {
  display: flex;
  height: 100%;
}

.slide .item {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
}
.slide .item img.view { height: 100%; }

.slide .viewport { overflow-anchor: none; }
@media (any-pointer: fine) {
  .slide.cursor-prev  .viewport { cursor: var(--cursor-prev), w-resize; }
  .slide.cursor-next  .viewport { cursor: var(--cursor-next), e-resize; }
  .slide .viewport.dragging { cursor: grabbing; }
}

.nav-arrow { display: none !important; pointer-events: none !important; }

@media (min-width: 1600px) {
  .sobre h3, .sobre h3 p {
    font-size: 26px;
  }
}

@media (max-width: 1024px) {
  :root {
    --pt-header: 15vw;
    --pt-nav: 7vw;
  }
  header {
    margin-top: 15vw;
  }
  /* nav {
    top: 18vw;
  } */

  h1, h2 {
    font-size: 24px;
    line-height: 1;
  }
  h3, h3 p {
    font-size: 20px;
  }
  .sobre h3, .sobre h3 p {
    font-size: 20px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 13px;
  }
  .slider-img-desk {
      display: none;
  }
  .slider-img-mobi {
      display: block;
  }

  nav div {
    padding-left: 12px!important;
    padding-right: 12px!important;
    padding-top: 0px!important;
    justify-content: space-between;
    gap: 0px;
  }
  nav div::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 1px solid var(--marrom);
  }
  nav a {
    display: block;
    width: 26vw;
    margin: 6px 0px 3px 0px!important;
    text-align: center;
  }
  nav a:nth-child(1), nav a:nth-child(4) {
    text-align: left;
  }
  nav a:nth-child(3), nav a:last-child {
    text-align: right;
  }

  .sobre .w-third, .sobre .w-two-thirds  {
    width: 100%;
  }
  .sobre img.pr5 {
    padding-right: 0px;
    width: 50%;
    margin-top: 4rem;
  }
  .publicacoes {
    flex-direction: column-reverse;
    padding-bottom: 20px;
  }
  .publi-premio {
    max-height:none;
    overflow-y: visible;
  }
  .bio div.pl3 {
    padding-left: 0px;
    display: grid;
  }
  .bio p {
    font-size: 12px;
    margin-bottom: 0px;
  }
  .linhas {
    height: auto;
  }
  .linhas.w-two-thirds {
    width: 100%;
    padding-right: 12px;
  }
  .linha .local, .linha .area {
    display: none;
  }
  .linha p {
    font-size: 12px;
    margin-right: 0px;
  }
  .linha .categoria {
    width: 70px;
  }
  .linha .ano {
    width: 30px;
  }
  .linha .titulo {
    width: calc(100% - 30px - 70px - 16px);
    padding-right: 16px;
  }
  .linha {
    min-height: 36px;
    transition: min-height ease 1s;
    position: relative;
  }
  .linha.open {
    min-height: 140px;
  }
  .linha > .thumb-mobi {
    display: block;
    position: absolute;
    top: 50px;
    right: 0;
    width: 100px;
    height: 0px;
    object-fit: cover;
    pointer-events: none;
    transition: opacity ease 3s;
    opacity: 0;
  }
  .linha.open > .thumb-mobi {
    opacity: 1;
    height: 75px;
  }
  .thumb-desk {
    display: none;
  }

  .single-projeto {
    width: 100%;
  }
  .info-container {
    grid-template-columns: 1fr
  }
  .col12 {
    flex-direction: column;
  }
  .col1, .col2 {
    width: 100%;
  }
  .single-titulo {
    font-size: 12px;
  }
  .single-info {
    padding-top: 0px;
  }
  .col1 .single-titulo, .col2 .single-titulo {
    width: 160px;
  }
  .single-info {
    width: calc(100% - 170px);
  }
  .slide img {
    height: auto;
    width: 100%;
  }
  .slide {
    height: calc(100dvh - 64px - 140px);
    align-items: center;
  }

  .single {
    padding-left: 12px;
    padding-right: 12px;
  }
  .slide .minis {
    bottom: -84px;
    width: 100%;
    max-width:100%;
  }
  .slide img.view.vertical {
    width: 100%;
  }
  .slide img.view.horizontal {
    object-fit:cover;
    aspect-ratio: 4/3;
    object-position: center;
  }
  .single h1 {
    margin-top: 104px;
    width: 100%!important;
  }
  .single .w-third {
    width: 100%!important;
  }
    .slide {
    display: none;
  }
  .mobi {
    display: block;
  }
    .single h1 {
    margin-top: 12px;
  }
  .info-container div.flex:nth-child(2) {
    border-top: 0.6pt solid #4E2F0E;
  }
}

@media (max-width: 760px) {
  h1, h2 {
    font-size: 20px;
  }
  body {
    font-size: 12px;
  }
  :root {
    --pt-header: 25vw;
    --pt-nav: 0px;
  }
  .logo svg {
    width: 140px;
  }
  header {
    margin-top: 33vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  nav {
    /* top: 37vw; */
    /* margin-top: 33vw; */
  }
  .projetos.grid3 {
    grid-template-columns: 1fr;
  }
  .projetos a.mb5 {
    margin-bottom: 1.5rem;
  }
  header {
    justify-content: center;
  }
  header a {
    width: 96px;
  }
  .single-info.nowrap {
    white-space: normal;
  }
  .single-about {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .contatos.grid3.pv6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .slide {
    display: none;
  }
  .mobi {
    display: block;
  }
  .single-projeto div.flex.mobi {
    display: flex;
  }
  .single-projeto div.flex.desk {
    display: none;
  }
  .single h1 {
    margin-top: 12px;
  }
  .single .w-third.mt5 {
    margin-top: 32px;
    margin-bottom: 40px;
  }
  .single-projeto small {
    font-size: 10px;
  }
  .linguas.canto {
    top: 12px;
    right: 12px;
    /* writing-mode: vertical-lr;
    text-orientation: mixed; */
  }
  /* .linguas.canto a.glink + a.glink::before {
    margin: 6px 0;
  } */
}
