@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;
}

.language-switcher{
	display:none!important;
}

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: 0;
}
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: 600px;
  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: #141414;
  color: #ffffff;
  padding: 100px 20px 0;
  font-family: "Lato", sans-serif;
}
.site-footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 100px;
}
.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-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: 150px;
}
.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 0;
  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: 120px 0 10px;
  }
  .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 0;
  }
  .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: 10px 20px 30px;
  }
  .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;
  margin-bottom: 4rem;
}
.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: 100px;
}
.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: 56px;
}
.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;
  display: flex;
  gap: 2rem;
}
.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;
  }
}

/* ==========================================
   Seletor de Idiomas WPML
   ========================================== */
.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
}
.language-switcher .lang-icon {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.language-switcher .lang-icon svg {
  width: 28px;
  height: 28px;
}
.language-switcher .lang-icon svg path {
  transition: fill 0.3s ease;
}
.language-switcher .lang-icon:hover {
  opacity: 0.8;
}
.language-switcher .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 80px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.language-switcher .lang-dropdown::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #eef2f9;
  border-left: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
  z-index: 1;
}
.language-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}
.language-switcher .lang-item {
  position: relative;
  z-index: 2;
}
.language-switcher .lang-item a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  color: #666666;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.language-switcher .lang-item.active a {
  background-color: #eef2f9;
  color: #000000;
  font-weight: 700;
}
.language-switcher .lang-item:not(.active) a:hover {
  background-color: #f5f5f5;
  color: #eb6e34;
}

.site-header {
  background-color: #ffffff;
  padding: 20px;
  font-family: "Lato", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.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 .site-logo .logo-branca {
  display: none;
}
.site-header .site-logo .logo-escura {
  display: block;
}
.site-header.header-transparent {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
}
.site-header.header-transparent .nav-menu li a {
  color: #ffffff;
}
.site-header.header-transparent .language-switcher .lang-icon svg {
  color: #ffffff;
}
.site-header.header-transparent .mobile-menu-toggle .hamburger-line {
  background-color: #ffffff;
}
.site-header.header-transparent .site-logo .logo-branca {
  display: block;
}
.site-header.header-transparent .site-logo .logo-escura {
  display: none;
}
.site-header.header-transparent.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  position: fixed;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.site-header.header-transparent.scrolled .nav-menu li a {
  color: #1a1a1a;
}
.site-header.header-transparent.scrolled .language-switcher .lang-icon svg {
  color: #909090;
}
.site-header.header-transparent.scrolled .mobile-menu-toggle .hamburger-line {
  background-color: #1a1a1a;
}
.site-header.header-transparent.scrolled .site-logo .logo-branca {
  display: none;
}
.site-header.header-transparent.scrolled .site-logo .logo-escura {
  display: block;
}
.site-header.scrolled:not(.header-transparent) {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: none;
}
.site-header .language-switcher .lang-icon svg {
  color: #909090;
  transition: color 0.3s ease;
}

.contact-section {
  background-color: #ffffff;
  color: #000000;
  padding: 80px 20px 120px;
  font-family: "Lato", sans-serif;
}
.contact-section .contact-title {
  margin-bottom: 80px;
}
.contact-section .contact-title h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-section .contact-info {
  max-width: 400px;
}
.contact-section .contact-info h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}
.contact-section .contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}
.contact-section {
  /* =========================================
     Estilos do Formulário Minimalista
     ========================================= */
}
.contact-section .contact-form-wrapper {
  width: 100%;
  max-width: 600px;
}
.contact-section .contact-form-wrapper .izy-form-group {
  margin-bottom: 40px;
  position: relative;
}
.contact-section .contact-form-wrapper .izy-form-group label {
  display: block;
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 8px;
}
.contact-section .contact-form-wrapper .izy-form-group {
  /* Reseta os inputs padrão e deixa só a borda de baixo */
}
.contact-section .contact-form-wrapper .izy-form-group input[type=text],
.contact-section .contact-form-wrapper .izy-form-group input[type=email],
.contact-section .contact-form-wrapper .izy-form-group input[type=tel],
.contact-section .contact-form-wrapper .izy-form-group select,
.contact-section .contact-form-wrapper .izy-form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 10px 0;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  color: #000000;
  border-radius: 0;
  transition: border-color 0.3s ease;
}
.contact-section .contact-form-wrapper .izy-form-group input[type=text]:focus,
.contact-section .contact-form-wrapper .izy-form-group input[type=email]:focus,
.contact-section .contact-form-wrapper .izy-form-group input[type=tel]:focus,
.contact-section .contact-form-wrapper .izy-form-group select:focus,
.contact-section .contact-form-wrapper .izy-form-group textarea:focus {
  outline: none;
  border-bottom-color: #eb6e34;
}
.contact-section .contact-form-wrapper .izy-form-group textarea {
  resize: vertical;
  min-height: 40px;
}
.contact-section .contact-form-wrapper {
  /* Estilo customizado para a setinha do Select */
}
.contact-section .contact-form-wrapper .custom-select-wrapper {
  position: relative;
}
.contact-section .contact-form-wrapper .custom-select-wrapper select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 30px;
}
.contact-section .contact-form-wrapper .custom-select-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 14px;
  height: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.contact-section .contact-form-wrapper {
  /* Checkbox de Consentimento */
}
.contact-section .contact-form-wrapper .izy-form-consent {
  margin-bottom: 40px;
}
.contact-section .contact-form-wrapper .izy-form-consent .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-section .contact-form-wrapper .izy-form-consent input[type=checkbox] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.contact-section .contact-form-wrapper .izy-form-consent .wpcf7-list-item-label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #1a1a1a;
  cursor: pointer;
}
.contact-section .contact-form-wrapper {
  /* Botão Enviar */
}
.contact-section .contact-form-wrapper .izy-form-submit .btn-primary {
  width: 100%;
  background-color: #eb6e34;
  color: #ffffff;
  border: none;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-section .contact-form-wrapper .izy-form-submit .btn-primary:hover {
  background-color: #d15d26;
  transform: translateY(-2px);
}
.contact-section .contact-form-wrapper {
  /* Esconder mensagens de erro padrão do CF7 enquanto não disparadas */
}
.contact-section .contact-form-wrapper .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #d32f2f;
  margin-top: 5px;
}
.contact-section .contact-form-wrapper .wpcf7-response-output {
  border-radius: 8px;
  margin-top: 20px;
}
.contact-section {
  /* =========================================
     Responsivo (Mobile)
     ========================================= */
}
@media (max-width: 900px) {
  .contact-section {
    padding: 60px 20px;
  }
  .contact-section .contact-title {
    margin-bottom: 50px;
  }
  .contact-section .contact-title h1 {
    font-size: 3rem;
  }
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-section .contact-info {
    max-width: 100%;
  }
}

/* =========================================
   Estilos Minimalistas do Formulário HubSpot
   ========================================= */
.contact-form-wrapper .hsfc-Form {
  font-family: "Lato", sans-serif;
}
.contact-form-wrapper .hsfc-Row {
  margin-bottom: 40px;
  position: relative;
}
.contact-form-wrapper .hsfc-FieldLabel {
  display: block;
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form-wrapper .hsfc-FieldLabel .hsfc-FieldLabel__RequiredIndicator {
  color: #d32f2f;
  margin-left: 4px;
}
.contact-form-wrapper .hsfc-TextInput,
.contact-form-wrapper .hsfc-TextareaInput,
.contact-form-wrapper .hsfc-DropdownInput .hsfc-TextInput {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 10px 0;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  color: #000000;
  border-radius: 0;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  box-shadow: none;
}
.contact-form-wrapper .hsfc-TextInput:focus, .contact-form-wrapper .hsfc-TextInput:focus-visible,
.contact-form-wrapper .hsfc-TextareaInput:focus,
.contact-form-wrapper .hsfc-TextareaInput:focus-visible,
.contact-form-wrapper .hsfc-DropdownInput .hsfc-TextInput:focus,
.contact-form-wrapper .hsfc-DropdownInput .hsfc-TextInput:focus-visible {
  outline: none;
  border-bottom-color: #eb6e34;
}
.contact-form-wrapper .hsfc-TextareaInput {
  resize: vertical;
  min-height: 40px;
}
.contact-form-wrapper {
  /* --- Selects/Dropdowns Customizados do HubSpot --- */
}
.contact-form-wrapper .hsfc-DropdownInput {
  position: relative;
  cursor: pointer;
}
.contact-form-wrapper .hsfc-DropdownInput .hsfc-DropdownInput__Caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-form-wrapper .hsfc-DropdownInput .hsfc-DropdownInput__Caret span {
  border-top-color: #000000;
}
.contact-form-wrapper .hsfc-DropdownInput .hsfc-DropdownOptions {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
}
.contact-form-wrapper .hsfc-DropdownInput .hsfc-DropdownOptions .hsfc-DropdownOptions__List__ListItem {
  padding: 12px 16px;
  font-size: 1rem;
}
.contact-form-wrapper .hsfc-DropdownInput .hsfc-DropdownOptions .hsfc-DropdownOptions__List__ListItem:hover, .contact-form-wrapper .hsfc-DropdownInput .hsfc-DropdownOptions .hsfc-DropdownOptions__List__ListItem--selected {
  background-color: #f5f5f5;
  color: #eb6e34;
}
.contact-form-wrapper {
  /* --- Campo de Telefone Especial (com bandeira) --- */
}
.contact-form-wrapper .hsfc-PhoneInput {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000000;
}
.contact-form-wrapper .hsfc-PhoneInput .hsfc-PhoneInput__FlagAndCaret {
  padding: 10px 10px 10px 0;
  cursor: pointer;
  border: none;
  background: transparent;
}
.contact-form-wrapper .hsfc-PhoneInput .hsfc-TextInput {
  border-bottom: none;
  padding-left: 10px;
}
.contact-form-wrapper .hsfc-PhoneInput .hsfc-TextInput:focus {
  border-bottom: none;
}
.contact-form-wrapper .hsfc-PhoneInput:focus-within {
  border-bottom-color: #eb6e34;
}
.contact-form-wrapper {
  /* --- Botão de Enviar --- */
}
.contact-form-wrapper .hsfc-NavigationRow {
  margin-top: 50px;
}
.contact-form-wrapper .hsfc-Button {
  width: 100%;
  background-color: #eb6e34;
  color: #ffffff;
  border: none;
  padding: 18px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Lato", sans-serif;
  box-shadow: none;
}
.contact-form-wrapper .hsfc-Button:hover {
  background-color: #d15d26;
  transform: translateY(-2px);
}
.contact-form-wrapper [aria-invalid=true] {
  border-bottom-color: #d32f2f !important;
}

.news {
  display: flex;
  height: auto;
  min-height: 350px;
  background: url(../imgs/bg_footer.svg) no-repeat left 5rem;
  align-items: center;
  justify-content: end;
}
.news .newsletter-section {
  color: #ffffff;
}
.news .newsletter-section .container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: end;
}
.news .newsletter-section .ff {
  width: 395px;
}
@media (max-width: 990px) {
  .news .newsletter-section .ff {
    width: 100%;
  }
}
.news .newsletter-section h3 {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 1rem;
}
.news .newsletter-section .newsletter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.news .newsletter-section .newsletter-form-group {
  width: 100%;
}
.news .newsletter-section .newsletter-form-group input[type=text],
.news .newsletter-section .newsletter-form-group input[type=email] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  color: #ffffff;
  border-radius: 0;
  transition: border-color 0.3s ease;
  box-shadow: none;
}
.news .newsletter-section .newsletter-form-group input[type=text]::-moz-placeholder, .news .newsletter-section .newsletter-form-group input[type=email]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.news .newsletter-section .newsletter-form-group input[type=text]::placeholder,
.news .newsletter-section .newsletter-form-group input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.news .newsletter-section .newsletter-form-group input[type=text]:focus,
.news .newsletter-section .newsletter-form-group input[type=email]:focus {
  outline: none;
  border-bottom-color: #eb6e34;
}
.news .newsletter-section .newsletter-form-submit {
  margin-top: 10px;
}
.news .newsletter-section .newsletter-form-submit .btn-primary {
  display: inline-block;
  background-color: #eb6e34;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Lato", sans-serif;
}
.news .newsletter-section .newsletter-form-submit .btn-primary:hover {
  background-color: #d15d26;
  transform: translateY(-2px);
}
.news .newsletter-section .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 8px;
  display: block;
}
.news .newsletter-section .wpcf7-response-output {
  border-radius: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
}

#politica {
  color: #000;
  margin-block: 6rem;
}
#politica h2 {
  font-size: 84px;
  color: #000;
  width: 60%;
  font-weight: 500;
}
#politica .text {
  margin-top: 4rem;
  padding-left: 4rem;
}
#politica .text h3 {
  font-size: 24px;
  margin-block-start: 70px;
  margin-bottom: 2rem;
}

.izy-form-container {
  width: 100%;
  max-width: 600px;
  font-family: "Lato", sans-serif;
  color: #666666;
}
.izy-form-container .form-group {
  margin-bottom: 35px;
  position: relative;
}
.izy-form-container {
  /* ==========================================================================
     Inputs de Texto e Textarea (Design Flutuante Minimalista)
     ========================================================================== */
}
.izy-form-container .input-group {
  display: flex;
  flex-direction: column-reverse; /* Permite que o label interaja com o input via CSS */
}
.izy-form-container .input-group label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 1rem;
  color: #666666;
  transition: all 0.2s ease;
  pointer-events: none;
}
.izy-form-container .input-group .floating-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #999999;
  padding: 10px 0 5px 0;
  font-size: 1rem;
  color: #333333;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  transition: border-color 0.2s ease;
  /* Quando o input estiver focado OU não estiver vazio (via placeholder hack) */
}
.izy-form-container .input-group .floating-input:not(:-moz-placeholder) {
  border-bottom-color: #eb6e34;
  /* Joga o label para cima */
}
.izy-form-container .input-group .floating-input:focus, .izy-form-container .input-group .floating-input:not(:placeholder-shown) {
  border-bottom-color: #eb6e34;
  /* Joga o label para cima */
}
.izy-form-container .input-group .floating-input:not(:-moz-placeholder) + label {
  top: -15px;
  font-size: 0.85rem;
  color: #eb6e34;
}
.izy-form-container .input-group .floating-input:focus + label, .izy-form-container .input-group .floating-input:not(:placeholder-shown) + label {
  top: -15px;
  font-size: 0.85rem;
  color: #eb6e34;
}
.izy-form-container .input-group textarea.floating-input {
  resize: vertical;
  min-height: 40px;
  height: 100px;
}
.izy-form-container {
  /* ==========================================================================
     Dropdowns Customizados
     ========================================================================== */
}
.izy-form-container .select-group {
  border-bottom: 1px solid #999999;
  padding: 10px 0 5px 0;
  cursor: pointer;
}
.izy-form-container .select-group .select-label {
  font-size: 1rem;
  color: #666666;
  display: block;
  margin-bottom: 5px;
  transition: all 0.2s ease;
}
.izy-form-container .select-group {
  /* Esconde o select real do CF7, manteremos ele apenas para enviar o dado */
}
.izy-form-container .select-group .hidden-select {
  display: none !important;
}
.izy-form-container .select-group .dropdown-display {
  min-height: 24px;
  font-size: 1rem;
  color: #333333;
  width: calc(100% - 20px);
}
.izy-form-container .select-group .dropdown-arrow {
  position: absolute;
  right: 0;
  bottom: 10px;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.izy-form-container .select-group {
  /* A lista que aparece ao clicar */
}
.izy-form-container .select-group .dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  max-height: 250px;
  overflow-y: auto;
  z-index: 100;
  /* Estado inicial escondido */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}
.izy-form-container .select-group .dropdown-list li {
  padding: 15px 20px;
  font-size: 1rem;
  color: #666666;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.izy-form-container .select-group .dropdown-list li:last-child {
  border-bottom: none;
}
.izy-form-container .select-group .dropdown-list li:hover {
  background-color: #f5f5f5;
}
.izy-form-container .select-group .dropdown-list li {
  /* Item selecionado (simula o fundo cinza claro do print) */
}
.izy-form-container .select-group .dropdown-list li.selected {
  background-color: #e0e0e0;
  color: #333333;
}
.izy-form-container .select-group {
  /* Classe ativa controlada pelo JS */
}
.izy-form-container .select-group.active {
  border-bottom-color: #eb6e34;
}
.izy-form-container .select-group.active .select-label {
  font-size: 0.85rem;
  color: #eb6e34;
  transform: translateY(-10px);
}
.izy-form-container .select-group.active .dropdown-arrow {
  transform: rotate(180deg);
}
.izy-form-container .select-group.active .dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.izy-form-container {
  /* ==========================================================================
     Checkbox e Aceite
     ========================================================================== */
}
.izy-form-container .checkbox-group {
  margin-top: 40px;
  margin-bottom: 40px;
}
.izy-form-container .checkbox-group .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.izy-form-container .checkbox-group input[type=checkbox] {
  margin-top: 5px;
  margin-right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #eb6e34;
  flex-shrink: 0;
}
.izy-form-container .checkbox-group .wpcf7-list-item-label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333333;
}
.izy-form-container .checkbox-group .wpcf7-list-item-label a {
  color: #333333;
  text-decoration: underline;
}
.izy-form-container .checkbox-group .wpcf7-list-item-label a:hover {
  color: #eb6e34;
}
.izy-form-container {
  /* ==========================================================================
     Botão de Envio
     ========================================================================== */
}
.izy-form-container .submit-group .btn-submit {
  width: 100%;
  background-color: #eb6e34;
  color: #ffffff;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.izy-form-container .submit-group .btn-submit:hover {
  background-color: #d15d26;
}
.izy-form-container .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  margin-top: 5px;
}

/* =========================================
   WhatsApp Flutuante
   ========================================= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  /* O SVG do ícone */
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.whatsapp-float {
  /* Animação de pulso para chamar atenção */
  animation: pulse-wa 2s infinite;
  /* Efeito ao passar o mouse */
}
.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.08) translateY(-3px);
  animation: none;
}
.whatsapp-float {
  /* =========================================
     Responsivo (Mobile)
     ========================================= */
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Keyframes para a animação do pulso */
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 990px) {
  .main-navigation {
    margin-top: 7rem;
  }
  .site-header .nav-wrapper.active {
    background: rgba(0, 0, 0, 0.9);
  }
  .site-header.header-transparent.scrolled .nav-menu li a, .site-header .main-navigation .nav-menu li a {
    color: white !important;
  }
  .site-header .mobile-menu-toggle.active .hamburger-line {
    background: white !important;
  }
  #banner_time {
    height: 300px;
  }
  #banner_time .flex {
    height: 240px;
  }
  .team-section .team-header .header-left .large-arrow {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .team-section .team-header .header-right p {
    margin: 3rem 0 0;
    font-size: 20px;
  }
  .services-accordion {
    padding: 0 0;
  }
  .services-accordion .accordion-header .title {
    font-size: clamp(1.5rem, 5vw, 4rem);
  }
  .strategy-intro {
    padding: 80px 20px 30px;
  }
  .contact-section {
    padding: 120px 20px;
  }
}/*# sourceMappingURL=main.css.map */