
:root {
  --base: #F8F5F1;
  --cor: rgb(80,80,80);
}
#wpadminbar {
  display: none !important;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 20
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0px!important;
}
::-webkit-scrollbar {
  display: none;
}
::selection {
  background-color: var(--cor);
  color: var(--base);
}
.page {
  margin: 0px;
}
body {
  background-color: var(--base);
  color: var(--cor);
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.5px;
  font-size: clamp(13px, 1vw, 1vw);
}
@keyframes fade {
  0% {
    opacity: 0;
    transform: translate(0, 2rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.in-view {
  animation: fade .4s .4s both;
}
.not-in-view {
  opacity: 0;
}
.none {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
}
h1, h2, h3 {
  line-height: 1;
}
small {
  display: block;
  line-height: 1.25;
}
h1 {
  font-size: clamp(24px, 2vw, 2vw);
  letter-spacing: -1px;
}
h3 {
  font-size: clamp(24px, 2.6vw, 2.6vw);
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(24px, 3.5vw, 3.5vw);
  letter-spacing: clamp(-1px, -2.5px, -2.5px);
  line-height: 0.9;
}
h4 {
  font-size: clamp(16px, 1.4vw, 1.4vw);
  letter-spacing: -0.5px;
}
.container-cs {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.pt-h {
  padding-top: 100px;
}
.tj {
  text-align: justify;
  text-justify: inter-word;
}
a, a:hover, a:visited, a:active {
  color: var(--cor);
  text-decoration: none;
  transition: all 0.5s ease;
}
ul, ol {
  margin: 0px;
  padding: 0px;
}
.ratio-1x1 {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.w-fit {
  width: fit-content;
}
.fw5 {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.gap-20 {
  gap: 20px;
}
.pr10 {
  padding-right: 10px;
}
.pl10 {
  padding-left: 10px;
}

header {
  z-index: 999;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 0.7s ease;
}
header.bg {
  width: 100%;
  background-color: rgba(248, 245, 241, 0.5);
  backdrop-filter: blur(20px);
}
#btnMenu {
  margin-top: 40px;
  font-size: 10px;
  letter-spacing: 0.5px;
  transition: transform 0.5s ease;
  writing-mode: vertical-rl;
  padding: 6px 0px 6px 6px;
  transform: translateY(-50%) rotate(180deg);
}
#btnMenu:hover {
  transform: translateY(-50%) rotate(180deg) translateX(-3px);
}
menu {
  position: fixed;
  top: 0;
  left: 0;
  padding: 16px 20px 40px;
  width: 100vw;
  min-height: 30vh;
  background-color: var(--cor);
  color: var(--base);
  transition: transform 0.5s ease;
  transform: translateY(-120%);
  margin: 0px;
  z-index: 999;
}
menu a {
  width: fit-content;
  display: inline-block;
}
menu a, menu a:hover {
  color: var(--base)!important;
}
menu.abre {
  transition: transform 0.5s ease;
  transform: translateY(0);
}
menu .links a {
  display: block;
}
menu .links a::before {
  content: '';
  display: inline-block;
  width: clamp(14px, 0.8vw, 0.8vw);
  height: clamp(14px, 0.8vw, 0.8vw);
  border: 1pt solid var(--base);
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: -1px;
}
menu ul, menu li {
  display: inline;
}
.tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-size: 10px;
  color: var(--base);
  margin-right: 8px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: start;
}
.grid-bg {
  padding: 0px 20px;
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  align-items: normal;
}
.single .grid {
  align-items: normal;
}
.grid-bg div {
  background-color: rgba(0,0,0,0.008);
  border-left: 0.5px solid rgba(0,0,0,0.07);
  border-right: 0.5px solid rgba(0,0,0,0.07);
}

.grid .col-2fr {
  grid-column: span 2;
}
.grid .col-3fr {
  grid-column: span 3;
}
.grid .col-4fr {
  grid-column: span 4;
}
.grid .col-5fr {
  grid-column: span 5;
}
.grid .col-6fr {
  grid-column: span 6;
}
.grid .col-7fr {
  grid-column: span 7 / -1;
}
.grid-menu {
  grid-column: span 8;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 4px 20px;
  align-items: start;
}

#sort-titulo,
#sort-tipo,
#sort-ano-d,
#sort-ano-m {
  cursor: pointer;
}

.fecha {
  right: 10px;
  z-index: 99;
  top: -15pt;
  transform: translateY(-52%);
  padding: 8px;
}
.fecha img {
  min-width: 15px!important;
  width: 16px!important;
  height: 16px!important;
}

.dot-tag {
  transition: opacity 0.5s ease;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: var(--cor);
}
.dot-tag + .dot-tag {
  margin-left: -4px;
}
.home .grid-item {
  display: grid;
  grid-template-rows: 40px 0fr;
  transition: grid-template-rows 0.5s ease;
}
/* .home .grid-item:hover {
  grid-template-rows: 40px 1fr;
} */
@media (hover: hover) and (pointer: fine) {
  .home .grid-item:hover {
    grid-template-rows: 40px 1fr;
  }
}
.grid-item:hover .grid-head .dot-tag {
  opacity: 0;
}
.grid-item .grid-body {
  overflow: hidden;
  min-height: 0;
}
.home .grid-body a {
  text-decoration: underline;
}
.grid-item img {
  width: 100%;
}
/* .home .grid-item:nth-child(1) .grid-body img {
  opacity: 0;
  transition-delay: 0.5s;
} */
.grid-item:hover .grid-body img {
  opacity: 1;
}
.grid-item .grid-head {
  background-color: transparent;
  transition: background 0.5s ease;
  cursor: pointer;
  height: 40px;
}
.grid-item:hover .grid-head {
  background-color: var(--cor);
}
.grid-titles {
  font-size: 10px;
  text-transform: uppercase;
}

.single .grid-item,
.sobre .grid-item {
  border-top: 30pt solid var(--cor);
  margin-top: 24px;
}
.single .grid-item .grid-body {
  overflow: visible;
  min-height: initial;
}
.single .nowrap {
  flex-wrap: nowrap;
}
.single .nowrap > div,
.single .nowrap > img {
  flex-shrink: 0;
}
.single .nowrap div.flex {
  flex-wrap: nowrap;
  flex-basis: content;
}
.single .grid-item img {
  width: 0;
  flex-grow: 1;
  min-width: 60px;
  height: auto;
  object-fit: contain;
  flex-shrink: 1;
}


.blur {
  filter: blur(8px);
  padding-left: 20px;
  pointer-events: none;
}
.txt p img {
  width: 100%!important;
}
.top-md {
  top: 35%;
  left: 0;
}
small.top-md {
  width: 61.5%;
}
.tabela-infos div {
  border-top: 1pt solid var(--cor);
  padding: 2px 0px;
}
.tabela-infos div:last-child {
  border-bottom: 1pt solid var(--cor);
}


.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 36px;
  width: 100vw;
  z-index: 9;
  background-color: var(--cor);
  transition: background-color 0.5s ease;
}
.footer a {
  display: block;
  color: var(--base);
  width: fit-content;
  padding: 4px 4px 4px 0px;
}
.footer a::before {
  content: '';
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 4px;
  margin-bottom: -2px;
  border-radius: 16px;
  background-color: var(--base);
}

.sobre img {
  width: 100%;
  filter: grayscale(100%);
  display: block;
}
.sobre .thumb {
  height: fit-content;
}
.sobre .thumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cor);
  mix-blend-mode: screen;
}


/* botao cor */

.color-toggle {
  width: 50px;
  height: 28px;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.45s;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
}

.color-toggle__knob {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.45s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

  /* .mobi-none {
    display: block;
  } */
  .mobi-show {
    display: none;
  }


  /* frase com numeros */

  .sentence-with-links a {
    transition: all 0.1s ease;
  }
  .sentence-with-links a:hover {
    filter: brightness(110%);
  }

  .post-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(16px, 1.5vw, 1.5vw);
    height: clamp(16px, 1.5vw, 1.5vw);
    font-size: clamp(10px, 1vw, 1vw);
    text-align: center;
    background: var(--cor);
    color: var(--base);
    border-radius: 100%;
    margin-left: 2px;
    vertical-align: 0.7vw;
    line-height: 1;
  }


/* 1. Esconde as traduções por padrão */
.lang-text {
    display: none !important;
}

/* 2. Se o HTML for Português, mostra o que é PT */
html[lang*="pt"] .lang-text.pt {
    display: inline-block !important;
}

/* 3. Se o HTML for Inglês, mostra o que é EN */
html[lang*="en"] .lang-text.en {
    display: inline-block !important;
}


a small.underline {
  display: block;
  background-color: var(--cor);
  color: var(--base);
  padding: 4px 8px;
  width: fit-content;
  border-radius: 40px;
  transition: filter 0.5s ease;
}
a small.underline:hover {
  filter: brightness(110%)
}
a.underline span {
  text-decoration: underline!important;
}
