* {
  box-sizing: border-box;
}
:root {
  --preto: #000;
  --branco: #F2F2F2;
  --vermelho: #FF0030;
  --rosa: #FF71FF;
  --laranja: #FF4200;
  --amarelo: #FFC800;
  --lilas: #BCB1FE;
  --verde: #E7F59B;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background-color: var(--vermelho);
  border: 1.5pt solid var(--lilas);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%), scale(1);
  pointer-events: none;
  z-index: 999999;
  transition: transform 0.3s ease-out, background-color 0.3s ease;
}
.custom-cursor.cursor-cresce {
  transform: translate(5%, 5%) scale(1.3);
}
.bg-branco {
  background-color: var(--branco);
}
#wpadminbar {
  display: none !important;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0px!important;
}
::-webkit-scrollbar {
  display: none;
}
::selection {
  background-color: transparent;
}
.page {
  margin: 0px;
}
body {
  background-color: var(--branco);
  color: var(--preto);
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: opacity 0.5s ease;
}
body.preload,
body.page-fadeout {
  opacity: 0;
}
body.page-loaded {
  opacity: 1;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.in-view {
  animation: fade .5s .5s both;
}
.not-in-view {
  opacity: 0;
}

.sans {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-style: normal;
}
.serif {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0px;
}
h1, h2, h3, h4 {
  line-height: 1;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}
h1 em, h2 em, h3 em, h4 em {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
}
h1, h1 p, h2, h2 p {
  font-size: clamp(32px, 3.8vw, 3.8vw);
}
h1 em, h1 em p, h2 em, h2 em p {
  font-size: clamp(30px, 3.5vw, 3.5vw);
  letter-spacing: -0.5px;
}
h3, h3 p {
  font-size: clamp(28px, 2.2vw, 2.2vw);
}
h3 em, h3 em p {
  font-size: clamp(26px, 1.9vw, 1.9vw);
}
h4, h4 p {
  font-size: clamp(24px, 1.6vw, 1.6vw);
  line-height: 1.15;
}
h4 em, h4 em p {
  font-size: clamp(22px, 1.45vw, 1.45vw);
}
h5 {
  font-size: 20px;
}
p {
  font-size: 12px;
}
h6, h6 p {
  font-size: 12px;
}
.bg-lilas {
  background-color: var(--lilas);
}
.bg-red {
  background-color: var(--vermelho);
}
.red {
  color: var(--vermelho)!important;
}
.pink {
  color: var(--rosa)!important
}


.container-cs {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}
.pt-h {
  padding-top: var(--medida);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-40 {
  gap: 40px;
}
.gap-60 {
  gap: 60px;
}
a, a:hover, a:visited, a:active {
  color: var(--preto);
  text-decoration: none;
  transition: all 0.5s ease;
}
ul, ol, li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.ratio-1x1 {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.ratio-4x5 {
  aspect-ratio: 4/5;
  object-fit: cover;
}
.video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.w-fit {
  width: fit-content;
}
.f-grow {
  flex-grow: 1;
}
.hide {
  opacity: 0;
  transition: opacity 0.3s ease;
}



header a {
  position: fixed;
  z-index: 999;
}
header h3 {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: var(--rosa)
}
header a:first-child {
  top: 24px;
  left: 40px;
}
header a:nth-child(2) {
  top: 24px;
  right: 40px;
}
header a:nth-child(3) {
  bottom: 24px;
  left: 40px;
}
header a:last-child {
  bottom: 24px;
  right: 40px;
}
header img {
  height: 1.8vw;
  margin-top: 3px;
}

.seletor-idioma {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--branco)
}

.seletor-idioma div {
  display: flex;
}

.lista-idiomas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.lista-idiomas li + li::before {
  content: "|";
  margin: 0 8px;
  color: inherit;
}

.lista-idiomas a {
  text-decoration: none;
  color: inherit;
  font-family: "Instrument Serif", serif;

}

/* home */

.hero {
  width: 100%;
  height: 80dvh;
  overflow: hidden;
  color: var(--branco)
}

#hero_shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
#hero_shader.is-loaded {
  opacity: 1;
}

.hero_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}
.hero em {
   font-family: "neue-haas-grotesk-display", sans-serif;
   font-style: normal;
   font-weight: 500;
}
.hero h1, .hero h1 p {
  font-size: clamp(48px, 5vw, 5vw);
}
.hero h1 em, .hero h1 p em {
  font-size: clamp(50px, 5vw, 5vw);
}
.hero li {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-style: normal;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
}
.hero li:nth-child(odd) {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}
.hero .hero_content div:last-child li {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.manifest p {
  text-indent: 100px;
  color: var(--vermelho);
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.carousel-cell {
  width: 25vw;
  height: 80vh;
  border-radius: 12px;
  margin-right: 60px;
}
.flickity-page-dots {
  display: none;
}

.botao {
  position: relative;
  overflow: hidden;
  background-color: var(--vermelho);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.5s ease, transform 0.3s ease;
  z-index: 1;
}

.botao:hover {
  background-color: var(--laranja);
  transform: translateY(-2px);
}

.projects_wrapper {
  flex-grow: 1;
  border-radius: 12px;
  background: var(--cor-bg);
  padding: 50px 60px;
}
.projects_cell h3.cliente,
.projects_cell h3.titulo,
.projects_cell p.mais {
  color: var(--cor-linha);
}
.projects_cell h3.cliente::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border-width: 3pt;
  border-style: solid;
  border-color: var(--cor-linha);
  background-color: var(--cor-bg);
}
.projects_cell:nth-child(even) h3.cliente {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
}
.projects_cell:nth-child(even) h3.cliente::before {
  border-width: 6pt;
}
.projects_cell .accordion-button,
.projects_cell .accordion-body {
  padding: 6px 0px;
  font-size: 13px;
  font-weight: 500;
}
.projects_cell div.bt,
.projects_cell p.bb {
  border-color: var(--cor-linha);
}
.projects_cell a.mais {
  color: var(--cor-linha);
  position: relative;
  z-index: 9;
}
.projects_cell img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1);
  width: 50%;
  transition: all 0.8s ease;
  z-index: 9;
}
.projects_cell .projects_wrapper::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 8;
  transition: all 0.5s ease;
  opacity: 0;
}
.projects_cell:hover .projects_wrapper::after {
  opacity: 1;
}
.projects_cell:hover img {
  transform: translate(-50%,-50%) scale(1.8);
  border-radius: 50%;
  transition: all 0.8s ease;
}
.flickity-prev-next-button.next {
  right: 40px;
  background-color: var(--vermelho);
}
.flickity-prev-next-button.previous {
  left: 40px;
  background-color: var(--verde);
}
.flickity-prev-next-button .flickity-button-icon {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  color: var(--lilas)
}



/* duplas */

.projects_cell.cc-lilas_vermelho {
  --cor-bg: rgba(171, 158, 254, 0.75);
  --cor-linha: rgba(255, 0, 48, 1);
}
.projects_cell.cc-rosa_vermelho {
  --cor-bg: rgba(255, 113, 255, 0.7);
  --cor-linha: rgba(255, 0, 48, 1);
}
.projects_cell.cc-amarelo_laranja {
  --cor-bg: rgba(255, 200, 0, 0.9);
  --cor-linha: rgba(255, 66, 0, 1);
}
.projects_cell.cc-amarelo_rosa {
  --cor-bg: rgba(255, 200, 0, 0.8);
  --cor-linha: rgba(255, 77, 255, 1);
}
.projects_cell.cc-verde_lilas {
  --cor-bg: rgba(206, 236, 56, 0.85);
  --cor-linha: rgba(150, 134, 254, 1);
}
.projects_cell.cc-verde_vermelho {
  --cor-bg: rgba(206, 236, 56, 0.85);
  --cor-linha: rgba(255, 0, 48, 1);
}

/* grid collection */
.grid-projects {
  padding-top: 18dvh;
  padding-bottom: 10dvh;
}
.grid-projects .projects_cell {
  height: 80dvh;
}
.grid-projects .projects_cell h3 {
  font-size: 32px;
}
.grid-projects .projects_wrapper {
  padding: 20px
}
.grid-projects .projects_cell:hover img {
  transform: translate(-50%,-50%) scale(2);
}
.barra-clientes,
.barra-servicos {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  height: 30px;
  border-radius: 30px;
  width: 55vw;
  overflow-x: scroll;
  background-color: rgba(255,113,255,0.6);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  justify-content: safe center;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}
.barra-clientes a, .barra-servicos a, .barra-clientes p, .barra-servicos p {
  color: white;
  font-size: 13px;
  padding-bottom: 1px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}
.projects_cell p {
  font-size: 13px;
}

.barra-servicos {
  top: 24px;
}
.barra-clientes {
  bottom: 24px;
}
.taxonomia {
  width: 55vw;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 20px 20px 16px;
  background: linear-gradient(
    to left,
    color-mix(in srgb, var(--rosa) 30%, transparent),
    color-mix(in srgb, var(--rosa) 65%, transparent)
  );
  color: var(--vermelho);
}
.taxonomia-container ~ .grid-projects.grid-4 {
  padding-top: 60px!important;
}
.taxonomia h5 p {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px!important;
}
.lista-clientes h3:nth-child(even) {
  font-family: "neue-haas-grotesk-display", sans-serif;
}

hr.gradient {
  height: 2px;
  margin: 0px;
  border: none;
  background: linear-gradient(to right, var(--rosa), var(--laranja));
}

.frases h2 p::before {
  content: '';
  display: inline-block;
  margin-right: 16px;
  width: clamp(24px, 2.5vw, 2.5vw);
  height: clamp(24px, 2.5vw, 2.5vw);
  background-color: var(--vermelho);
  border: 4pt solid var(--rosa);
  border-radius: 50%;
}
.frases h3 p::after {
  content: '';
  display: inline-block;
  transform: translateX(7px);
  width: clamp(20px, 1.8vw, 1.8vw);
  height: clamp(20px, 1.8vw, 1.8vw);
  background-color: var(--verde);
  border: 5pt solid var(--lilas);
  border-radius: 50%;
  margin-bottom: -2px;
}

.about {
  width: 100%;
  overflow: hidden;
}
#about_shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
#about_shader.is-loaded {
  opacity: 1;
}
.about h3, .about div {
  position: relative;
  z-index: 2;
}
.about_container {
  width: 360px;
  max-width: calc(100vw - 32px);
  background-color: rgba(206,236,56,0.3);
  border-radius: 12px;
}
.about_container p {
  margin-bottom: 12px
}
.about video,
.quadro-servicos video,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.about_container img {
  border-radius: 8px;
}
#aboutSection {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
#aboutSection.show-about {
  pointer-events: auto;
  opacity: 1;
}
#aboutSection .about_container {
  background-color: rgba(255,66,0,0.45);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: fit-content;
  color: white;
  overflow-y: scroll;
}

.barra-clientes .vermelho p, .barra-servicos .vermelho p {
  color: var(--vermelho)
}


.mb-90 {
  margin-bottom: 100vh;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.footer-container {
  padding: 100px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
footer h4::before {
  content: '';
  margin-right: 8px;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  transform: translateY(6px)
}
footer h4.red::before {
  background-color: var(--amarelo);
  border: 6pt solid var(--laranja);
}
footer h4.pink::before {
  background-color: var(--verde);
  border: 3pt solid var(--rosa);
}

.logo-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.moood-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.quadro-servicos .container-cs {
  padding-top: 5vw;
  padding-bottom: 6vw;
  color: white;
}
