@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Onest:wght@100..900&display=swap");
@import url("../fonts/neueHassGrotesk/stylesheet.css");
@import url("../fonts/icones/css/icones.css");
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  color: #1C1C1C;
  background-color: #F0F0F0;
  line-height: 1.4;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-family: "Onest", sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

ul {
  list-style-type: none;
  margin: 0;
  margin-left: 0;
  padding: 0;
  font-size: 24px;
}
@media (max-width: 678px) {
  ul {
    font-size: 14.64px;
  }
}

.font-xs {
  font-size: 24px;
}
@media (max-width: 678px) {
  .font-xs {
    font-size: 14.64px;
  }
}

.font-sm {
  font-size: 32px;
}
@media (max-width: 678px) {
  .font-sm {
    font-size: 19.52px;
  }
}

.font-lg {
  font-size: 40px;
}
@media (max-width: 678px) {
  .font-lg {
    font-size: 24.4px;
  }
}

body {
  padding-top: 120px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 64px 24px;
  z-index: 999;
}
body.admin-bar header {
  padding-top: 64px;
}
@media (max-width: 678px) {
  header {
    position: absolute;
    padding: 48px 16px 24px;
  }
  header .custom-logo {
    width: 72px;
  }
}
header .menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 2px solid #1C1C1C;
  padding: 8px;
  z-index: 999;
  position: relative;
  transition: 300ms;
}
header .menu-toggle span {
  width: 100%;
  background-color: #1C1C1C;
  height: 2px;
  position: relative;
  display: block;
  transition: 300ms;
}
header .menu-toggle span::before, header .menu-toggle span::after {
  content: "";
  width: 100%;
  background-color: #1C1C1C;
  height: 2px;
  display: block;
  position: absolute;
  transition: 300ms;
}
header .menu-toggle span::before {
  bottom: 100%;
  margin-bottom: 8px;
}
header .menu-toggle span::after {
  top: 100%;
  margin-top: 8px;
}
header .menu-toggle.menu-open {
  border-color: #F0F0F0;
}
header .menu-toggle.menu-open span, header .menu-toggle.menu-open span::before, header .menu-toggle.menu-open span::after {
  background-color: #F0F0F0;
}
header .menu-toggle.menu-open span {
  background: transparent;
}
header .menu-toggle.menu-open span::before {
  transform: rotate(-45deg);
  bottom: 0;
  margin: 0;
}
header .menu-toggle.menu-open span::after {
  transform: rotate(45deg);
  top: 0;
  margin: 0;
}
header .menu-content ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
header .menu-content ul li a {
  color: #1C1C1C;
  font-size: 24px;
  font-weight: 400;
}
header .menu-content ul li a:hover, header .menu-content ul li a:target {
  text-decoration: underline;
  color: #ff8e01;
}
@media (max-width: 678px) {
  header .menu-content ul li a {
    font-size: 16px;
  }
}
header .menu-content .btn {
  margin-top: 24px;
}
@media (max-width: 678px) {
  header .menu-content nav {
    display: none;
  }
}

@media (max-width: 678px) {
  .row {
    gap: 24px 0;
  }
}

section {
  padding: 80px 64px;
  scroll-margin-top: 154px;
}
@media (max-width: 678px) {
  section {
    padding: 50px 16px;
  }
}
section.dark {
  background-color: #1C1C1C;
  color: #F0F0F0;
}

.hero {
  min-height: calc(100dvh - 154px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
}
@media (max-width: 1048px) {
  .hero {
    padding-top: 0;
    flex-direction: column;
    gap: 32px;
  }
}
.hero .content {
  width: 75%;
  position: relative;
}
@media (max-width: 1048px) {
  .hero .content {
    width: 100%;
  }
  .hero .content br {
    display: none;
  }
}
.hero h1 {
  font-family: "Neue Haas Grotesk Display", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: right;
  font-size: 104px;
  letter-spacing: 10px;
}
@media (max-width: 1300px) {
  .hero h1 {
    font-size: 80px;
  }
}
@media (max-width: 678px) {
  .hero h1 {
    font-size: 40px;
    letter-spacing: initial;
    text-align: left;
  }
}
.hero h1 span {
  display: block;
  text-align: left;
  letter-spacing: 50px;
}
@media (max-width: 678px) {
  .hero h1 span {
    letter-spacing: initial;
  }
}
.hero p {
  font-size: 24px;
  font-weight: 400;
  width: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 1300px) {
  .hero p {
    font-size: 20px;
    width: 38%;
  }
}
@media (max-width: 678px) {
  .hero p {
    position: static;
    width: 100%;
    margin-top: 32px;
  }
}
@media (max-width: 678px) {
  .hero .circle {
    max-width: 120px;
    align-self: flex-end;
    display: none;
  }
}
.hero .circle img {
  animation: rotate 10s infinite linear;
  transform: rotate(0);
}
@media (max-width: 678px) {
  .hero .circle img {
    margin: 0 auto;
  }
}
.hero .scroll-btn {
  flex-basis: 100%;
  align-self: flex-end;
}
@media (max-width: 1048px) {
  .hero .scroll-btn {
    width: 100%;
    order: 3;
  }
}
@media (max-width: 678px) {
  .hero .scroll-btn {
    align-self: flex-start;
  }
}
@media (max-width: 678px) {
  .hero .scroll-btn img {
    align-self: flex-start;
    aspect-ratio: 9/16;
    object-fit: cover;
    width: 24px;
  }
}
.hero .scroll-btn button {
  background-color: transparent;
  border: none;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.marquee {
  overflow: hidden;
  /* Esconde o conteúdo que ultrapassa a largura */
  white-space: nowrap;
  /* Impede que o texto quebre em múltiplas linhas */
  margin: 0 -64px 70px;
  font-size: 80px;
}

.marquee-content {
  display: inline-block;
  /* Garante que o texto ocupe apenas o espaço necessário */
  animation: marquee 80s linear infinite;
  /* Define a animação */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
    /* Posição inicial */
  }
  100% {
    transform: translateX(-100%);
    /* Move todo o conteúdo para fora pela esquerda */
  }
}
.about .btn {
  margin-top: 80px;
}

.clients h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
}

.work {
  padding-top: 200px;
  z-index: 1;
  position: relative;
}
@media (max-width: 678px) {
  .work {
    padding-top: 40px;
  }
}
.page-id-8 .work {
  padding-top: 0;
}
.work h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 32px;
}
.work .lettering {
  font-size: 650px;
  font-weight: 400;
  line-height: 0.6;
  color: #E9E9E9;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 678px) {
  .work .lettering {
    font-size: 150px;
  }
}
.work .btn {
  margin: 32px auto 0;
}

.projects {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 678px) {
  .projects {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects .project-image {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 1/1;
  position: relative;
}
.projects .project-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.projects .project-image:hover img {
  transition: 300ms;
  width: 110%;
}
.projects .project-description h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}
.projects .project-description p {
  font-size: 24px;
  margin-bottom: 8px;
}
.projects .project-description .tags a {
  color: #888888;
  font-size: 20px;
  text-decoration: underline;
}

.project-hero {
  height: calc(100dvh - 154px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  background-size: cover;
  z-index: 1;
}
.project-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.project-hero__content {
  position: relative;
  z-index: 1;
  background: #F0F0F0;
  padding: 32px 64px 0;
}
.project-hero__content::before {
  z-index: -1;
  width: 2500px;
  height: 500px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 678px) {
  .project-hero__content {
    display: flex;
    flex-direction: column;
    padding: 32px 16px 0;
  }
  .project-hero__content h1 {
    order: -1;
  }
}
.project-hero__content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  width: 80%;
}
@media (max-width: 678px) {
  .project-hero__content h1 {
    margin-bottom: 8px;
  }
}
.project-hero__content p {
  font-size: 40px;
  font-weight: 400;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  margin-bottom: 0;
  line-height: 1.1;
}
@media (max-width: 678px) {
  .project-hero__content p {
    font-size: 24px;
  }
}
.project-hero__content .tags {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  position: absolute;
  width: 18%;
  top: 32px;
  right: 0;
  color: #888;
}
.project-hero__content .tags span {
  text-decoration: underline;
}
@media (max-width: 678px) {
  .project-hero__content .tags {
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }
}
.project-overview {
  padding-top: 120px;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 678px) {
  .project-overview {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}
.project-overview .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: max-content;
  gap: 80px 24px;
  width: 55%;
}
@media (max-width: 678px) {
  .project-overview .info {
    width: 100%;
    gap: 32px 16px;
  }
}
.project-overview .info .data {
  flex: 1;
  font-size: 24px;
  font-weight: 400;
  font-family: "Neue Haas Grotesk Display", sans-serif;
}
.project-overview .info .data h3 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: "Onest", sans-serif;
}
.project-overview .briefing {
  width: 40%;
  font-size: 24px;
  font-weight: 400;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  line-height: 1.1;
}
@media (max-width: 678px) {
  .project-overview .briefing {
    width: 100%;
    margin-top: 32px;
  }
}
.project-content {
  padding-top: 60px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  font-family: "Neue Haas Grotesk Display", sans-serif;
}
@media (max-width: 678px) {
  .project-content {
    padding-top: 30px;
  }
}
.project-content .wp-block-columns {
  align-items: center !important;
  gap: 32px;
}
.project-content .wp-block-columns img {
  width: 100%;
  object-fit: cover;
}
.project-content .wp-block-columns + .wp-block-columns {
  margin-top: 32px;
}
.project-related h2 {
  font-size: 56px;
  font-weight: 700;
}

.team {
  font-size: 32px;
  font-weight: 400;
  font-family: "Neue Haas Grotesk Display", sans-serif;
}
.team h2 {
  font-size: 56px;
  font-weight: 700;
}
.team-members {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 678px) {
  .team-members {
    grid-template-columns: repeat(1, 1fr);
  }
}
.team .member-image {
  overflow: hidden;
  margin-bottom: 24px;
  aspect-ratio: 1/1;
  position: relative;
}
.team .member-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.team .member-image:hover img {
  transition: 300ms;
  width: 110%;
}
.team .member-description h3 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.team .member-description p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: "Onest", sans-serif;
}
.team .member-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.team .member-social a:first-child img {
  width: 20px;
}
.team .member-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.contact {
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}
@media (max-width: 678px) {
  .contact {
    padding-bottom: 60px;
  }
}
.contact h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  justify-content: space-between;
}
.contact form p {
  width: 100%;
  margin-bottom: 0;
}
.contact form div {
  flex-basis: calc(50% - 12px);
}
@media (max-width: 678px) {
  .contact form div {
    flex-basis: 100%;
  }
}
.contact form label {
  color: inherit;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  width: 100%;
}
.contact form input,
.contact form textarea {
  width: 100%;
  margin: 0;
  border-radius: 8px;
}
.contact form input {
  height: 48px;
}
.contact form input[name=service] {
  pointer-events: none;
}
.contact form textarea {
  height: 80px;
  margin-top: 8px;
  margin-bottom: 32px;
}
.contact .lettering {
  font-size: 650px;
  font-weight: 700;
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #323232;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 678px) {
  .contact .lettering {
    font-size: 160px;
  }
}

footer {
  padding: 24px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1C1C1C;
  color: #F0F0F0;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 678px) {
  footer {
    padding: 16px;
    flex-direction: column;
    gap: 16px;
  }
}

.accordion {
  background-color: transparent;
}
.accordion .accordion-item,
.accordion .accordion-title,
.accordion .accordion-content {
  background-color: transparent;
  border: 0;
}
.accordion .accordion-title {
  font-size: 40px;
  color: #F0F0F0;
  text-transform: uppercase;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 678px) {
  .accordion .accordion-title {
    font-size: 20px;
  }
}
.accordion .accordion-title::before {
  right: 0;
  content: "\e810";
  font-size: 20px;
  font-family: "icones";
  transition: 300ms;
}
.accordion .accordion-item {
  border-bottom: 1px solid #F0F0F0;
}
.accordion .accordion-item.is-active .accordion-title::before {
  transform: rotate(180deg);
}
.accordion .accordion-item .accordion-content {
  color: #F0F0F0;
  padding: 0;
  padding-bottom: 58px;
}
.accordion .accordion-item .accordion-content ul {
  margin-left: 0;
}
@media (min-width: 679px) {
  .accordion .accordion-item .accordion-content ul {
    columns: 2;
  }
}

.btn {
  display: block;
  padding: 8px 24px;
  width: fit-content;
  background: transparent;
  font-size: 24px;
  border-radius: 500px;
  border: 2px solid #1C1C1C;
  color: #1C1C1C;
  min-width: 200px;
  cursor: pointer;
}
.btn:hover {
  background-color: #1C1C1C;
  color: #F0F0F0;
  text-decoration: none;
  transition: 300ms ease-in;
}
.dark .btn, .open .btn {
  color: #F0F0F0;
  border-color: #F0F0F0;
}
.dark .btn:hover, .open .btn:hover {
  background-color: #F0F0F0;
  color: #1C1C1C;
}
@media (max-width: 678px) {
  .btn {
    padding: 8px 18px;
    font-size: 20px;
    min-width: 130px;
  }
}

.clients-carousel .slick-track {
  margin: 0 -16px;
}
.clients-carousel .slick-list {
  overflow: visible;
}
.clients-carousel .slick-list .slick-slide {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  border-radius: 16px;
  overflow: hidden;
}
.clients-carousel .slick-list .slick-slide img {
  object-fit: contain;
}

/*# sourceMappingURL=main.css.map */
