@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
:root {
  --primary-font: "Nunito", sans-serif;
  --second-font: "Libre Baskerville", serif;
  --primary-color: #4b5563;
  --red: #ff0000;
  --semi-bold: 700;
  --med-bold: 600;
  --low-bold: 500;
}

a {
  text-decoration: none;
}

.ab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.bg_red {
  background-color: var(--red);
}

*:focus {
  outline: none;
}

.relative {
  position: relative;
}

.all {
  transition: all 0.4s ease;
}

ul li {
  list-style: none;
}

.wpcf7-not-valid {
  border: 1px solid #ff0000 !important;
  animation: shake 150ms 2 linear;
  -moz-animation: shake 150ms 2 linear;
  -webkit-animation: shake 150ms 2 linear;
  -o-animation: shake 150ms 2 linear;
}

.al-center {
  align-items: center;
}

@keyframes shake {
  0% {
    transform: translate(3px, 0);
  }
  50% {
    transform: translate(-3px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.slick-dots li button:before {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

.slick-disabled {
  opacity: 0.4;
}

strong {
  font-weight: var(--semi-bold);
}

html {
  padding: 0;
  margin-top: 0 !important;
}

html,
body {
  overflow-x: hidden;
}

html.is-active {
  overflow: hidden;
}

body {
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  background-color: #fff;
  padding-top: 86px;
}
body.is-active {
  overflow: hidden !important;
}

p {
  margin: 0.75rem 0;
  line-height: 26px;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 0.95rem;
  position: relative;
}

@media (max-width: 1190px) {
  .container {
    max-width: 990px;
    padding-inline: 1rem;
  }
}
.container-large {
  max-width: 1400px;
}

@media (max-width: 1390px) {
  .container-large {
    max-width: 1210px;
  }
}
.container-space {
  max-width: 1240px;
}

.container-small-70 {
  max-width: 970px;
}

.container-small {
  max-width: 920px;
}

.container-litle {
  max-width: 840px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 62px;
  height: 62px;
  z-index: 2;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
  display: none;
}

.hamburger {
  position: fixed;
  right: 60px;
  z-index: 99;
  top: 30px;
  transition: all 0.4s ease;
}
.hamburger.ativo {
  top: 15px;
  transform: scale(0.7);
}

.hamburger .line {
  width: 38px;
  height: 2px;
  border-radius: 2rem;
  background-color: #fff;
  display: block;
  margin: 10px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.is-active .line {
  background-color: #fff !important;
}

.hamburger.ativo .line {
  background-color: #3a5457;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger#hamburger-1.is-active .line:nth-child(1) {
  transform: translateY(18px) rotate(45deg);
}

.hamburger#hamburger-1.is-active .line:nth-child(3) {
  transform: translateY(-6px) rotate(-49deg);
}

body {
  font-family: "Lato", sans-serif;
  margin: 0;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../imgs/bg_home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-banner .hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding: 40px 20px 0;
  box-sizing: border-box;
  height: 520px;
  color: white;
}
.hero-banner .hero-title h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 700;
  color: white;
}
.hero-banner .hero-title h1 .line {
  display: block;
}
.hero-banner .hero-description {
  flex: 0 1 320px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.hero-banner .hero-description p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 300;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-banner .hero-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
  }
  .hero-banner .hero-title {
    align-self: flex-start;
  }
  .hero-banner .hero-description {
    text-align: left;
    align-items: flex-start;
    flex: auto;
  }
}
.about-intro {
  background-color: #ffffff;
  color: #000000;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
}
.about-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.about-intro h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  max-width: 1050px;
  letter-spacing: -0.5px;
}
.about-intro .bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.about-intro .about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}
.about-intro .about-link svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.2px;
}
.about-intro .about-link:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .about-intro {
    padding: 60px 20px;
  }
  .about-intro .container {
    gap: 60px;
  }
  .about-intro h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .about-intro .bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .about-intro .large-arrow svg {
    width: 36px;
    height: 60px;
  }
}
.portfolio-grid {
  width: 100%;
}

.grid-item {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
}
.grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.grid-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 769px) {
  .portfolio-grid {
    display: flex;
    gap: 15px;
    aspect-ratio: 16/10;
  }
  .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .grid-item img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .column-left .item-coletivo {
    flex: 6.5;
  }
  .column-left .item-logo-bueno {
    flex: 3.5;
  }
  .column-center .item-montana {
    flex: 3.2;
  }
  .column-center .item-bag-nectar {
    flex: 6.8;
  }
  .column-right .item-krv {
    flex: 1;
  }
  .column-right .item-maria-eduarda {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .grid-item.item-coletivo {
    aspect-ratio: 4/5;
  }
  .grid-item.item-logo-bueno {
    aspect-ratio: 3/2;
  }
  .grid-item.item-montana {
    aspect-ratio: 16/9;
  }
  .grid-item.item-bag-nectar {
    aspect-ratio: 4/5;
  }
  .grid-item.item-krv {
    aspect-ratio: 1/1;
  }
  .grid-item.item-maria-eduarda {
    aspect-ratio: 1/1;
  }
}
.testimonials {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px;
  font-family: "Lato", sans-serif;
  display: flex;
  justify-content: center;
}

.testimonials-container {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swiper {
  width: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

blockquote {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
}

.author {
  margin-top: 40px;
  font-size: 1.1rem;
}
.author strong {
  font-weight: 700;
}

.slider-controls {
  display: flex;
  gap: 24px;
  margin-top: 60px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .testimonials-container {
    padding: 50px 0;
  }
  .author {
    margin-top: 30px;
  }
  .slider-controls {
    margin-top: 40px;
  }
}
.services-section {
  background-color: #ffffff;
  color: #000000;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
}
.services-section .services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 3rem;
}
.services-section .services-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #e5e5e5;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 400;
}
.services-section .services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}
.services-section .services-link:hover {
  opacity: 0.6;
}
.services-section .services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.services-section .service-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.services-section .service-number {
  font-size: 1.2rem;
  font-weight: 400;
  min-width: 30px;
}
.services-section .service-title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.services-section .service-title:hover {
  color: #666666;
}
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }
  .services-section .container {
    gap: 50px;
  }
  .services-section .services-header {
    flex-direction: row;
  }
  .services-section .services-badge {
    padding: 8px 16px;
    font-size: 1rem;
  }
  .services-section .services-list {
    gap: 30px;
  }
  .services-section .service-item {
    gap: 15px;
  }
  .services-section .service-number {
    font-size: 1rem;
  }
}

.site-footer {
  background-color: #121212;
  color: #ffffff;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.site-footer .footer-cta {
  flex: 1;
  min-width: 300px;
}
.site-footer .footer-cta h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
}
.site-footer .footer-cta .btn-primary {
  display: inline-block;
  background-color: #ff6022;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.site-footer .footer-cta .btn-primary:hover {
  background-color: #e55018;
  transform: translateY(-2px);
}
.site-footer .footer-links-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.site-footer .footer-nav {
  display: flex;
  gap: 60px;
}
.site-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer .footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.site-footer .footer-nav a:hover {
  color: #ffffff;
}
.site-footer .back-to-top {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}
.site-footer .back-to-top:hover {
  transform: translateY(-10px);
}
@media (max-width: 900px) {
  .site-footer .footer-container {
    flex-direction: column;
    gap: 60px;
  }
  .site-footer .footer-links-wrapper {
    width: 100%;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-links-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .site-footer .footer-nav {
    flex-direction: column;
    gap: 30px;
  }
  .site-footer .back-to-top {
    align-self: flex-start;
  }
  .site-footer .back-to-top svg {
    height: 60px;
  }
}

.strategy-intro {
  background-color: #ffffff;
  color: #000000;
  padding: 120px 20px;
  font-family: "Lato", sans-serif;
}
.strategy-intro .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.strategy-intro .top-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.strategy-intro h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
}
.strategy-intro .text-content {
  max-width: 420px;
  text-align: right;
}
.strategy-intro .text-content p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
}
.strategy-intro .large-arrow {
  display: flex;
}
@media (max-width: 768px) {
  .strategy-intro {
    padding: 80px 20px;
  }
  .strategy-intro .container {
    gap: 60px;
  }
  .strategy-intro .top-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .strategy-intro .text-content {
    text-align: left;
    max-width: 100%;
  }
  .strategy-intro .large-arrow svg {
    width: 36px;
    height: 60px;
  }
}

.services-accordion {
  background-color: #ffffff;
  color: #000000;
  padding: 60px 20px;
  font-family: "Lato", sans-serif;
}
.services-accordion .accordion-item {
  border-bottom: 1px solid #1a1a1a;
}
.services-accordion .accordion-item.active .icon svg {
  transform: rotate(180deg);
}
.services-accordion .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 40px 0;
  cursor: pointer;
  text-align: left;
  color: #000000;
}
.services-accordion .accordion-header .title-wrapper {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.services-accordion .accordion-header .number {
  font-size: 1.2rem;
  font-weight: 400;
}
.services-accordion .accordion-header .title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0;
}
.services-accordion .accordion-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-accordion .accordion-header .icon svg {
  transition: transform 0.4s ease;
}
.services-accordion .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}
.services-accordion .accordion-content .content-inner {
  padding-bottom: 40px;
  padding-left: 40px;
}
.services-accordion .accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services-accordion .accordion-content ul li {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .services-accordion .accordion-header {
    padding: 30px 0;
  }
  .services-accordion .accordion-header .title-wrapper {
    gap: 12px;
  }
  .services-accordion .accordion-content .content-inner {
    padding-left: 24px;
    padding-bottom: 30px;
  }
}

#h.services-accordion .accordion-item {
  border: 0;
}
#h.services-accordion .accordion-header {
  padding: 0 0 45px;
  cursor: default;
}

.flex_r {
  display: flex;
  align-items: end;
  justify-content: end;
  width: 100%;
  text-align: end;
  margin-block: 2rem;
}
.flex_r a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.projects-marquee {
  background-color: #ffffff;
  color: #000000;
  padding: 100px 0; /* Padding apenas em cima e embaixo, o marquee ocupa 100% da largura */
  font-family: "Lato", sans-serif;
  overflow: hidden;
}
.projects-marquee .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
}
.projects-marquee .intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.projects-marquee .intro-content h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
.projects-marquee .intro-content .large-arrow {
  margin-block: 2rem;
}
.projects-marquee {
  /* --- ESTILOS DO LETREIRO (MARQUEE) --- */
}
.projects-marquee .marquee-container {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.projects-marquee .marquee-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  /* Aumente ou diminua os 20s para mudar a velocidade do loop */
  animation: scroll-marquee 20s linear infinite;
}
.projects-marquee .marquee-track:hover {
  /* Opcional: Pausa a animação quando o mouse passa por cima */
  animation-play-state: paused;
}
.projects-marquee .marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 4vw; /* Espaço entre as palavras */
  padding-right: 4vw; /* Espaço entre o grupo 1 e o grupo 2 */
}
.projects-marquee .marquee-text {
  font-size: clamp(5rem, 15vw, 12rem); /* Fica gigante no desktop e adapta no mobile */
  line-height: 1;
  white-space: nowrap;
  font-weight: 300; /* Peso fino para o .STUDIO */
  letter-spacing: -3px;
  color: #000000;
}
.projects-marquee .marquee-text strong {
  font-weight: 900; /* Peso extra grosso para o IZY */
}
.projects-marquee {
  /* Animação que cria o loop perfeito movendo exatamente metade do track */
}
@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .projects-marquee {
    padding: 60px 0;
  }
  .projects-marquee .container {
    margin-bottom: 40px;
  }
  .projects-marquee .intro-content {
    gap: 20px;
  }
  .projects-marquee .intro-content .large-arrow svg {
    width: 36px;
    height: 60px;
  }
  .projects-marquee .marquee-text {
    letter-spacing: -1px;
  }
}

.bloco-projeto-intro {
  padding-block: 4rem;
}
.bloco-projeto-intro p {
  color: #5e5e5e;
}
.bloco-projeto-intro .container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
}
.bloco-projeto-intro .intro-esq {
  flex: 1;
  max-width: 500px;
}
.bloco-projeto-intro .intro-esq p {
  font-size: 24px;
}
.bloco-projeto-intro .intro-esq h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #000000;
  line-height: 1.1;
}
.bloco-projeto-intro .intro-esq .subtitulo {
  margin: 0;
}
.bloco-projeto-intro .intro-dir {
  flex: 1;
  max-width: 600px;
  padding-top: 15px;
}
.bloco-projeto-intro .intro-dir .conteudo-texto {
  line-height: 1.6;
}
.bloco-projeto-intro .intro-dir .conteudo-texto p {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
}
.bloco-projeto-intro .intro-dir .conteudo-texto p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .bloco-projeto-intro {
    padding: 60px 20px;
  }
  .bloco-projeto-intro .container {
    flex-direction: column;
    gap: 40px;
  }
  .bloco-projeto-intro .intro-esq {
    max-width: 100%;
  }
  .bloco-projeto-intro .intro-dir {
    max-width: 100%;
    padding-top: 0;
  }
}

.bloco-projeto-imagem {
  width: 100%;
  margin-bottom: 60px;
}
.bloco-projeto-imagem.alignfull {
  max-width: 100%;
  padding: 0;
}
.bloco-projeto-imagem.alignwide {
  max-width: 1400px;
}
.bloco-projeto-imagem picture {
  display: block;
  width: 100%;
  height: 100%;
}
.bloco-projeto-imagem picture img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .bloco-projeto-imagem {
    margin-bottom: 40px;
  }
}

.bloco-projeto-texto {
  padding: 80px 20px;
}
.bloco-projeto-texto .conteudo-wrapper {
  max-width: 800px;
}
.bloco-projeto-texto h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #000000;
  margin: 0 0 30px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.bloco-projeto-texto .texto-interno {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1a1a1a;
  font-weight: 400;
}
.bloco-projeto-texto .texto-interno p {
  margin-top: 0;
  margin-bottom: 20px;
}
.bloco-projeto-texto .texto-interno p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .bloco-projeto-texto {
    padding: 50px 20px;
  }
  .bloco-projeto-texto h2 {
    margin-bottom: 20px;
  }
  .bloco-projeto-texto .texto-interno {
    font-size: 1.05rem;
  }
}

.team-section {
  background-color: #ffffff;
  color: #000000;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
}
.team-section .container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.team-section .team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.team-section .team-header .header-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team-section .team-header .header-left h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}
.team-section .team-header .header-left .large-arrow {
  margin-top: 113px;
  margin-bottom: 96px;
}
.team-section .team-header .header-right {
  flex: 1;
  max-width: 400px;
  text-align: right;
}
.team-section .team-header .header-right p {
  margin: 10rem 0 0;
  font-size: 20px;
}
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 143px;
}
.team-section .team-member {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-section .team-member .member-image {
  width: 100%;
  height: 533px;
  overflow: hidden;
  background-color: #f4f4f4;
}
.team-section .team-member .member-image img {
  width: 100%;
  height: 533px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.team-section .team-member .member-image:hover img {
  transform: scale(1.03);
}
.team-section .team-member .member-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-section .team-member .member-info h3 {
  font-size: 36px;
  font-weight: 500;
  margin: 0;
}
.team-section .team-member .member-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 33px;
}
.team-section .team-member .member-info p {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .team-section {
    padding: 60px 20px;
  }
  .team-section .container {
    gap: 60px;
  }
  .team-section .team-header {
    flex-direction: column;
    gap: 40px;
  }
  .team-section .team-header .header-left {
    gap: 30px;
  }
  .team-section .team-header .header-left .large-arrow svg {
    width: 36px;
    height: 60px;
  }
  .team-section .team-header .header-right {
    text-align: left;
    max-width: 100%;
  }
  .team-section .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

#banner_time {
  width: 100%;
  background: url(../imgs/banner_time.png) center no-repeat;
  background-size: cover;
  height: 500px;
}
#banner_time .flex {
  display: flex;
  width: 100%;
  align-items: end;
  height: 400px;
  justify-content: end;
}

.related-projects {
  background-color: #121212;
  color: #ffffff;
  padding: 100px 20px;
  font-family: "Lato", sans-serif;
}
.related-projects .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.related-projects .related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.related-projects .related-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 500;
  margin: 0;
}
.related-projects .related-header .view-all {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-projects .related-header .view-all:hover {
  opacity: 0.6;
}
.related-projects .swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 20px;
}
.related-projects .project-card {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
}
.related-projects .project-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.related-projects .project-card .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.related-projects .project-card .project-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.related-projects .project-card:hover img {
  transform: scale(1.05);
}
.related-projects .project-card:hover .project-overlay {
  opacity: 1;
}
.related-projects .project-card:hover .project-overlay h3 {
  transform: translateY(0);
}
.related-projects .related-prev,
.related-projects .related-next {
  color: #ffffff;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.related-projects .related-prev::after,
.related-projects .related-next::after {
  font-size: 24px;
  font-weight: bold;
}
.related-projects .related-prev:hover,
.related-projects .related-next:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .related-projects {
    padding: 60px 20px;
  }
  .related-projects .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .related-projects .related-prev,
  .related-projects .related-next {
    display: none;
  }
}
.related-projects .related-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
}
.related-projects .related-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 0.3;
  margin: 0 6px !important;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.related-projects .related-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .related-projects .related-pagination {
    margin-top: 30px;
  }
}
.related-projects .swiper-slide {
  padding: 0;
}

.site-header {
  background-color: #ffffff;
  padding: 20px;
  font-family: "Lato", sans-serif;
  /* Faz o header fixar no topo */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  /* Animação suave quando a classe mudar */
  transition: all 0.3s ease;
  /* Classe ativada pelo JS ao rolar a página */
}
.site-header.scrolled {
  padding: 10px 20px; /* Fica um pouco mais fino */
  background-color: rgba(255, 255, 255, 0.98); /* Fica levemente transparente */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Adiciona uma sombra suave */
  border-bottom: none;
}
.site-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .site-logo {
  position: relative;
  z-index: 1001;
}
.site-header .site-logo a {
  display: flex;
}
.site-header .site-logo img {
  height: 45px;
  width: auto;
}
.site-header .nav-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.site-header .main-navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.site-header .main-navigation .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
}
.site-header .main-navigation .nav-menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.site-header .main-navigation .nav-menu li a:hover {
  color: #ed723f;
}
.site-header .header-cta {
  margin-left: 20px;
}
.site-header .header-cta .btn-primary {
  display: inline-block;
  background-color: #eb6e34;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.site-header .header-cta .btn-primary:hover {
  background-color: #d15d26;
  transform: translateY(-2px);
}
.site-header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.site-header .mobile-menu-toggle .hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #1a1a1a;
  margin-bottom: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .mobile-menu-toggle .hamburger-line:last-child {
  margin-bottom: 0;
}
.site-header .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.site-header .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
  .site-header .mobile-menu-toggle {
    display: block;
  }
  .site-header .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .site-header .nav-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-header .main-navigation .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .site-header .main-navigation .nav-menu li a {
    font-size: 1.5rem;
  }
  .site-header .header-cta {
    margin-left: 0;
  }
  .site-header .header-cta .btn-primary {
    font-size: 1.1rem;
    padding: 14px 40px;
  }
}/*# sourceMappingURL=main.css.map */