/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", serif;
  --biggest-font-size: 2rem;
  --big-font-size: 1.5rem;
  --h3-font-size: 1rem;
  --h1-font-size: 1.5rem;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-minimal: 100;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --normal-font-size: 1rem;
    --biggest-font-size: 4rem;
    --big-font-size: 3rem;
    --h3-font-size: 1.25rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--white-color);
  position: relative;
  background: #0c0c2c; /* Cor de fundo caso o efeito demore para carregar */
  overflow-x: hidden;
}

.finisher-header {
  width: 100%;
  height: 300px; /* Ajuste conforme necessário */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Mantém atrás dos elementos */
  overflow: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.main {
  overflow: hidden;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #0c0c2c;
  z-index: var(--z-fixed);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  width: 130px; /* Defina o tamanho desejado da logo */
  height: auto; /* Mantém as proporções da imagem */
  display: block; /* Garante que a imagem seja tratada como um bloco */
}


.nav__close, 
.nav__toggle {
  display: flex;
  color: #85723e;
  font-size: 1.3rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #0c0c2c;
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: #848387;
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #85723e;
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: #f5c26b;
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__toggle, 
  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}

/*=============== HOME ===============*/
.home__swiper{
  position: relative;
  z-index: var(--z-tooltip);
}

.home__article{
  position: relative;
  padding-top: 13rem;
  width: 100%;
  height: 100vh;
}

.home__img,
.home__shadow,
.home__content{
  position: absolute;
  margin-top: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

.home__img{
  margin-top: var(--header-height);
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.home__shadow{
  background-color: hsla(0, 0%, 0%, .05);
  z-index: -1;
}

.home__data{
  text-align: left;
}

.home__subtitle{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
  color: #85723e;
}

.home__title{
  font-size: var(--biggest-font-size);
  margin-bottom: 2.5rem;
  font-weight: var(--font-minimal);
  
}

.home__button{
  color: #85723e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
}

.home__button i{
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform .4s;
}

.home__button:hover i{
  transform: translateX(.5rem);
}
.button-89 {
  padding: 12px 24px;
  font-size: 16px;
  color: #85723e; /* Cor do texto */
  background: transparent;
  border: 3px solid #85723e; /* Borda mais grossa */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.button-89::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #85723e; /* Cor de preenchimento ao clicar */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0s ease-in-out; /* Removendo animação para preenchimento instantâneo */
}

.button-89:hover {
  color: white; /* Cor do texto ao passar o mouse */
}

.button-89:active::before {
  transform: scaleX(1);
}

.button-89:active {
  color: white;
}


.swiper{
  height: 100vh;
}

.swiper-pagination{
  width: initial;
  height: max-content;
  top: 6rem;
  left: initial;
  right: 4rem;
  font-size: var(--big-font-size);
  font-weight: var(--font-semi-bold);
  display: flex;
  column-gap: .25rem;
  align-items: center;
}

.swiper-pagination-total{
  font-size: var(--normal-font-size);
}

.swiper-button-prev::after,
.swiper-button-next::after{
  content: '';
}

/* Tela de animação inicial */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0c0c2c; /* Fundo escuro */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  animation: fadeOut 1.5s ease-in-out 3s forwards; /* Desaparecer suavemente após 3s */
}

.splash-screen img {
  width: 150px; /* Tamanho da logo */
  animation: zoomIn 1s ease-in-out; /* Efeito de zoom ao entrar */
}

@keyframes fadeOut {
  to {
     opacity: 0;
     visibility: hidden;
  }
}

@keyframes zoomIn {
  from {
     transform: scale(0.8); /* Começa menor */
     opacity: 0; /* Invisível no início */
  }
  to {
     transform: scale(1); /* Cresce para o tamanho final */
     opacity: 1; /* Totalmente visível */
  }
}

/*=============== BACKGROUND PERSONALIZADO PARA O ESCRITÓRIO ===============*/
.escritorio-section {
    position: relative;
    padding: 6rem 2rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    border-radius: 15px; /* Bordas arredondadas sutis */
    background: url('assets/img/2.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Mantém o efeito parallax */
    overflow: hidden;
    z-index: 1;
}


.escritorio-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Título principal da seção */
.escritorio-title {
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  color: #f5c26b;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.escritorio-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f5c26b, transparent);
  margin-top: 5px;
}

/* Texto principal - Definindo um limite */
.escritorio-intro {
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  line-height: 1.5;
  color: #d1d1e0;
  max-width: 700px; /* Mantém um limite para evitar desalinhamento */
  margin-bottom: 2rem;
  text-align: left;
}

/* Container dos blocos de texto abaixo */
.escritorio-text-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  max-width: 700px; /* Agora os blocos de texto não ultrapassam o título */
  justify-content: space-between;
}

/* Blocos de texto abaixo do principal */
.escritorio-text {
  flex: 1;
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: #d1d1e0;
  max-width: 340px; /* Limita a largura dos textos para alinhamento */
  min-width: 300px; /* Evita que os blocos fiquem muito estreitos */
  align-self: flex-start; /* Garante que os textos fiquem alinhados ao topo */
}

/* Rodapé da seção */
.escritorio-footer {
  font-size: var(--normal-font-size);
  font-style: italic;
  font-weight: var(--font-medium);
  color: #f5c26b;
  margin-top: 2rem;
  text-align: left;
  max-width: 700px;
}

/* Responsividade */
@media screen and (max-width: 1150px) {
  .escritorio-section {
    max-width: 900px;
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 1150px) {
  .escritorio-section {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .escritorio-text-container {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    max-width: 100%;
  }

  .escritorio-text {
    max-width: 100%;
  }
}
/*=============== MISSÃO, VISÃO E VALORES - ALINHAMENTO CORRIGIDO ===============*/
.escritorio-values {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px; /* Mantém alinhado com os textos principais */
  margin-top: 3rem;
}

/* Blocos individuais (Missão, Visão e Valores) */
.escritorio-box {
  width: 100%;
  padding: 1.5rem 0; /* Ajuste no espaçamento interno */
  text-align: left;
  color: #d1d1e0;
  background: none;
  position: relative;
  padding-left: 2rem; /* Espaço para a borda lateral */
  max-width: 700px;
  border-left: 3px solid #f5c26b; /* Barras individuais */
}

/* Adicionando espaço extra entre os blocos */
.escritorio-box:not(:last-child) {
  margin-bottom: 2rem; /* Espaçamento uniforme entre Missão, Visão e Valores */
}

/* Títulos da seção */
.escritorio-box h3 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
  color: #f5c26b;
  text-transform: uppercase;
  text-align: left;
}

/* Texto dentro dos blocos */
.escritorio-box p,
.escritorio-box ul {
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: #d1d1e0;
  text-align: left;
  margin-left: 0;
  max-width: 700px;
}

/* Correção do alinhamento da lista */
.escritorio-box ul {
  padding-left: 0; /* Remove recuo excessivo */
  margin-top: 1rem; /* Dá mais espaço para a lista */
}

/* Itens da lista alinhados corretamente */
.escritorio-box ul li {
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: #d1d1e0;
  text-align: left;
  margin-left: 0; /* Remove qualquer recuo adicional */
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .escritorio-values {
    max-width: 100%;
  }

  .escritorio-box {
    max-width: 100%;
  }
}
/*=============== EFEITO DE ROLAGEM AVANÇADO ===============*/

/* Estado inicial: invisível + deslocado para baixo + pequeno */
.reveal {
  opacity: 0;
  transform: translateY(50px) scale(0.95) rotateX(10deg);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: transform, opacity;
}

/* Quando o elemento entra na tela */
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}


/*=============== ÁREA DE ATUAÇÃO - BACKGROUND E ANIMAÇÃO DE APARIÇÃO ===============*/
.atuacao-section {
  padding: 6rem 2rem;
  text-align: left;
  background: url('https://www.transparenttextures.com/patterns/crumpled-paper.png'), linear-gradient(to bottom, #ffffff, #f5f5f5);
  background-size: cover; /* Faz com que o background cubra toda a área */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #f5c26b;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  width: 100vw;
  min-height: 100vh;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0;
}

.atuacao-title {
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  color: #0c0c2c;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: left;
  opacity: 1; /* Garantir que a legenda esteja visível */
  transform: translateY(0); /* Evitar efeitos que ocultem o texto */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  max-width: 700px;
  position: relative;
}

.atuacao-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f5c26b, transparent);
  margin-top: 5px;
}

.atuacao-container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 700px;
  margin-left: 0;
  gap: 2rem;
}

.atuacao-card {
  width: 320px;
  height: 420px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.atuacao-card.show {
  opacity: 1;
  transform: translateY(0);
}

.atuacao-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.atuacao-card-inner.flipped {
  transform: rotateY(180deg);
}

.atuacao-card-front, 
.atuacao-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  text-align: center;
}

.atuacao-card-front {
  border: 2px solid #0c0c2c;
}

.atuacao-icon {
  font-size: 3rem;
  color: #f5c26b;
  margin-bottom: 1rem;
}

.atuacao-icon-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.atuacao-card-front h3 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  color: #0c0c2c;
}

.atuacao-card-back {
  background: #ffffff;
  color: #38393e;
  transform: rotateY(180deg);
  text-align: center;
  font-size: var(--normal-font-size);
  line-height: 1.5;
  font-weight: var(--font-medium);
  padding: 2rem;
}

.flip-button {
  position: absolute;
  bottom: 15px;
  right: 15px;
  padding: 8px 12px;
  background-color: #0c0c2c;
  color: #f5c26b;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.flip-button:hover {
  background-color: #e5b15b;
  color: #ffffff;
}

@media screen and (max-width: 1024px) {
  .atuacao-section {
      padding: 4rem 2rem; /* Reduz o padding para diminuir a altura */
      min-height: auto; /* Ajusta para evitar altura excessiva */
  }
  
  .atuacao-container {
      max-width: 900px; /* Mantém um tamanho adequado */
      margin: 0 auto; /* Centraliza */
      display: flex;
      flex-wrap: wrap;
      justify-content: center; /* Mantém alinhado */
  }

  .atuacao-card {
      width: calc(50% - 1rem); /* Mantém dois cartões lado a lado */
      max-width: 340px;
  }
}

@media screen and (max-width: 768px) {
  .atuacao-section {
      padding: 3rem 1.5rem; /* Reduz ainda mais em telas menores */
  }

  .atuacao-card {
      width: 100%; /* Para mobile, exibe os cartões um abaixo do outro */
  }
}


/* ========== EFEITO DE REVELAÇÃO PARA ÁREA DE ATUAÇÃO ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: transform, opacity;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}


.equipe {
  padding: 6rem 2rem;
  text-align: left;
  background: #0c0c2c;
  color: var(--white-color);
  width: 100vw;
  max-width: none;
  position: relative;
  display: flex;
  justify-content: center;
  border-top: 5px solid #f5c26b;
}

/* ===== Linha dourada de divisão para a seção da Equipe ===== */
.equipe::before {
  content: "";
  display: none;
  position: absolute;
  top: 0; /* Alinha a linha no topo da seção */
  left: 0;
  width: 100%;
  height: 4px; /* Espessura da linha */
  background: #f5c26b; /* Cor dourada */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Efeito de sombra para relevo */
}

.equipe-container {
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.equipe h2 {
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  color: #f5c26b;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: left;
}

.equipe h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f5c26b, transparent);
  margin-top: 5px;
}

.equipe-descricao {
  font-size: var(--normal-font-size);
  line-height: 1.5;
  color: #d1d1e0;
  max-width: 700px;
  margin-bottom: 2rem;
  text-align: left;
}

.filtros {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.filtro {
  background-color: #85723e;
  border: none;
  color: var(--white-color);
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 20px;
  font-size: var(--normal-font-size);
  transition: background 0.3s;
}

.filtro.ativo {
  background-color: #f5c26b;
  color: #d1d1e0;
}

.carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.equipe-lista {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  max-width: 1120px;
  white-space: normal;
}

.membro {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 3px solid #f5c26b;
  margin: 0 auto; /* Centraliza o card */
}

.membro img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
}

.membro .nome {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: #f5c26b;
  margin-bottom: 10px;
  white-space: nowrap; /* Impede que o nome quebre em várias linhas */
  overflow: hidden; /* Esconde qualquer texto que ultrapasse o contêiner */
  text-overflow: ellipsis; /* Adiciona "..." se o texto for muito longo */
  max-width: 100%; /* Mantém dentro do contêiner */
  display: block;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}


.membro .cargo {
  font-size: 14px; /* Ajuste conforme necessário */
  white-space: nowrap; /* Impede que quebre em duas linhas */
  display: flex;
  justify-content: center;
  gap: 5px; /* Pequeno espaço entre os itens */
}

.prev, .next {
  background-color: #f5c26b;
  color: var(--white-color);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: background 0.3s ease-in-out;
  z-index: 10; /* Garante que fique acima da imagem */
}

.prev:hover, .next:hover {
  background-color: #f5c26b;
  color: #0c0c2c;
}

.prev {
  left: -0px; /* Ajuste para ficar mais visível */
  z-index: 15; /* Garante que o botão da esquerda fique acima da imagem */
}

.next {
  right: -0px;
}

/* ========== EFEITO DE FADE-IN PARA FILTROS ========== */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: scale(0.95);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

/* Responsividade */
@media screen and (max-width: 1150px) {
  .equipe-container {
      max-width: 90%;
  }
  .equipe h2, .equipe-descricao {
      text-align: left;
  }
  .filtros {
      justify-content: flex-start;
  }
  .equipe-lista {
      flex-direction: row;
      overflow-x: hidden;
      justify-content: flex-start;
  }
  .prev, .next {
      display: flex;
  }
}

/* Seção de Publicações */
.publicacoes-section {
  background-color: white;
  padding: 50px 0;
  text-align: left;
  position: relative;
}

/* Linha decorativa superior (dourada) */
.publicacoes-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #f5c26b; /* Dourado */
  z-index: 5;
}

/* Título principal (azul escuro) */
.publicacoes-title {
  font-size: var(--big-font-size);
  color: #0c0c2c; /* Azul escuro */
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-left: 1.5rem;
  font-weight: bold;
}

/* Linha abaixo do título principal (efeito gradiente dourado) */
.publicacoes-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #f5c26b, transparent); /* Gradiente dourado */
  margin-top: 5px;
}

/* Estilização dos subtítulos */
.publicacoes-subtitle {
  font-size: var(--h3-font-size);
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 1.5rem;
  font-weight: bold;
  padding-left: 15px; /* Espaço entre a linha e o texto */
  position: relative;
  display: flex;
  align-items: center;
  color: #0c0c2c; /* Azul escuro */
}

/* Criando a linha ao lado esquerdo dos subtítulos (dourada) */
.publicacoes-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: #f5c26b; /* Dourado */
}

/* Diferentes cores para cada subtítulo */
.reels-title {
  color: #0c0c2c; /* Azul escuro */
}

.carrossel-title {
  color: #0c0c2c; /* Azul escuro */
  margin-top: 60px; /* Ajusta o espaço entre Reels e Carrossel */
}

/* Ajuste do container de publicações */
.publicacoes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mantém a mesma estrutura do carrossel */
  gap: 20px;
  justify-content: start;
  align-items: stretch; /* Mantém altura uniforme */
  max-width: 900px;
  margin-left: 1.5rem;
}

/* Ajuste específico para os Reels */
.reels-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mantém a estrutura de 2 colunas igual ao carrossel */
  gap: 20px;
  justify-content: start;
  align-items: stretch;
  width: 100%;
}

/* Ajuste específico para os Carrosséis */
.carrossel-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: start;
  align-items: stretch; /* Garante alinhamento na altura */
  width: 100%;
}

/* Estilização das publicações */
.publicacao {
  display: flex;
  justify-content: start;
  align-items: stretch; /* Mantém altura uniforme */
  width: 100%;
  max-width: 350px;
}

/* Ajuste de tamanho fixo para os vídeos */
.publicacao iframe {
  width: 100%;
  height: 500px; /* Mantém tamanho fixo */
  border-radius: 10px;
  overflow: hidden;
}

/* Responsividade */
@media screen and (max-width: 768px) {
  .publicacoes-container {
      grid-template-columns: 1fr;
      align-items: start;
      margin-left: 1rem;
  }
  .reels-container {
      grid-template-columns: 1fr;
      align-items: start;
  }
  .carrossel-container {
      grid-template-columns: 1fr;
  }
}

/* =================== SEÇÃO DE CONTATO =================== */
.contato-section {
  padding: 6rem 2rem;
  background-color: #0c0c2c;
  color: var(--white-color);
  text-align: left;
  position: relative;
  border-top: 5px solid #f5c26b;
}

/* ======== TÍTULO DA ÁREA DE CONTATO COM ALINHAMENTO PRECISO ======== */
.contato-title {
  font-size: var(--big-font-size);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  color: #f5c26b;
  text-align: left;
  position: relative;
  margin-bottom: 2rem;
  margin-left: 15px; /* Ajuste fino para alinhar com a borda do card */
}

/* Linha abaixo do título que desaparece suavemente */
.contato-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #f5c26b, transparent);
  margin-top: 5px;
  margin-left: 0px; /* Agora a linha começa exatamente abaixo do título */
}


/* ===== CONTEÚDO DO CONTATO ===== */
.contato-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

/* ===== FORMULÁRIO ===== */
.contato-form {
  flex: 1;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #f5c26b;
}

.contato-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #f5c26b;
  background-color: transparent;
  color: var(--white-color);
  border-radius: 5px;
  font-size: var(--normal-font-size);
}

.form-group textarea {
  height: 350px; /* Aumentei a altura */
  min-height: 350px; /* Garante que não fique menor */
  resize: none; /* Permite redimensionamento vertical pelo usuário */
  flex-grow: 1; /* Faz o textarea ocupar o espaço restante */
}

/* ===== BOTÃO DO FORMULÁRIO ===== */
.contato-form .contato-button {
  background-color: #f5c26b;
  color: #0c0c2c;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
  display: block;
  text-align: center;
}

.contato-form .contato-button:hover {
  background-color: #e5b15b;
}

/* ===== INFORMAÇÕES DE CONTATO ===== */
.contato-info {
  flex: 1;
  max-width: 450px;
  font-size: var(--normal-font-size);
  line-height: 1.8;
}

.contato-info h3 {
  font-size: 1.4rem;
  color: #f5c26b;
  margin-top: 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid #f5c26b;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.contato-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}

.contato-info i {
  font-size: 1.5rem;
  color: #f5c26b;
}

/* Links dentro da seção de contato */
.contato-info a {
  color: #d1d1e0;
  text-decoration: none;
  transition: color 0.3s;
}

.contato-info a:hover {
  color: #e5b15b;
  text-decoration: underline;
}

/* ===== BOTÃO FLUTUANTE DO WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 2rem;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* =================== RESPONSIVIDADE PARA CONTATO =================== */
@media screen and (max-width: 768px) {
  .contato-section {
      padding: 4rem 1rem;
  }

  .contato-content {
      flex-direction: column;
      align-items: center;
      text-align: left;
  }

  .contato-form {
      width: 100%;
      max-width: 100%;
      padding: 1.5rem;
  }

  .contato-info {
      width: 100%;
      text-align: left;
  }

  .contato-info h3 {
      font-size: 1.3rem;
  }

  .contato-info p {
      font-size: 1rem;
      justify-content: left;
  }

  .contato-title {
    margin-left: 1.5rem; /* Ajuste fino para alinhar exatamente com o título da seção Publicações */
    padding-left: 0; /* Remove qualquer padding adicional */
    text-align: left; /* Garante alinhamento correto */
  }

  .contato-title::after {
    margin-left: 0; /* Alinha a linha decorativa abaixo do título */
  }
  .whatsapp-float {
      bottom: 15px;
      right: 15px;
      font-size: 1.8rem;
      padding: 12px;
  }
}

