:root{
	--cor-preto-pantera: #2B2B2B;
	--cor-inovacao-azul: #317DAF;
	--cor-terracota-suave: #D17A45;
	--cor-papel-novo: #F4F4F4;
	--cor-papel-novo-escuro: #ebebeb;
	--padding-esquerdo: 167px;
	--padding-direito: 167px;
  --padding-esquerdo-mobile: 40px;
}

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

html {
  scroll-behavior: smooth;
}

body{
	font-family: "Montserrat", sans-serif;
}

/*##########################*/
/*#### Elemento NAVBAR #####*/
/*##########################*/

.navbar{
	background-color: var(--cor-preto-pantera);
  position: sticky;
  top: 0;
  z-index: 1000;
	color: var(--cor-inovacao-azul);
	font-size: 1.2vw;
	height: 10vh;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-left: 80px;
	padding-right: 70px;
	justify-content: space-between;
	letter-spacing: -1px;
  transition: height 0.3s ease, font-size 0.3s ease, transform 0.3s ease;
}

.navbar.shrink {
  height: 5vh;
  font-size: 0; /* esconde o texto */
  padding-left: 80px;
  padding-right: 70px;
}

.navbar.shrink .navbar_ul{
  display: none;
}

.navbar.shrink .navbar_logo {
  width: 90px;
  height: 18px;
  transition: width 0.3s ease, height 0.3s ease;
}

.navbar:hover .navbar_logo {
  width: 140px;
  height: 28px;
}

.navbar_logo {
  transition: width 0.3s ease, height 0.3s ease;
}

.navbar.shrink .navbar_arrow {
  display: block;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

.navbar_arrow {
  display: none;
  font-size: 1.5rem;
  color: white;
  line-height: 1;
  text-align: center;
  position: absolute;
  right: 49.5%; /* mesmo padding da navbar */
  top: 50%;
  transform: translateY(-50%);
}

.navbar:hover {
  height: 10vh;
  font-size: 1.2vw;
}

.navbar:hover .navbar_logo,
.navbar:hover .navbar_ul {
  display: flex;
}

.navbar:hover .navbar_arrow {
  display: none;
}

.navbar a{
	text-decoration: none;
	color: inherit;
}

.navbar_logo{
	width: 140px;
	height: 28px;
}

.navbar_ul{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	list-style-type: none;
	gap: 6px;
	align-items: center;
}

.navbar_ul_li{
	height: fit-content;
}

/*Estilização do "HOME"*/
.navbar_ul_li:first-child{
	font-weight: bold;
	color: white;
}

/*Estilização do "BLOG"*/
.navbar_ul_li:nth-child(5){
	border: 2px solid var(--cor-inovacao-azul);
	padding: 6px 2em;
	border-radius: 40px;
}

/* Aplica o ponto somente entre os itens 1 a 4 (antes do "Blog") */
.navbar_ul_li:nth-child(-n+4)::after {
  content: "•";
  display: inline-block;
  margin: 0 1.2rem;
  color: var(--cor-inovacao-azul);
  font-weight: normal;
}

/*Aplica um recuo depois de BLOG*/
.navbar_ul_li:nth-last-child(3) {
  margin-right: 25px;
}

.navbar_ul_li_icon{
	width: 2.5vw;
	height: 2.5vw;
}

/* Hamburger base */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

@media (max-width: 999px) {
  .navbar{
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    padding: 0 50px;
  }
}

@media (max-width: 850px) {
  .navbar{
    font-size: clamp(0.9rem, 1.2vw, 1.4rem);
    padding: 0 50px;
  }
}

@media (min-width: 801px) { /* Aplica em telas maiores que 800px */
    .navbar:hover .navbar_logo,
    .navbar:hover .navbar_ul {
        display: flex;
    }
}

@media (max-width: 800px) {
  .navbar{
    font-size: clamp(0.8rem, 1.2vw, 1.4rem);
    padding: 0 40px;
  }

  .hamburger {
    display: flex;
  }

  .navbar_ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 10vh; /* abaixo da navbar */
    right: 0;
    background-color: var(--cor-preto-pantera);
    width: 100%;
    padding: 1rem;
    font-size: 1.5rem;
    align-items: flex-end;
    gap: 1.2rem;
    z-index: 999;
  }

  .navbar_ul_li_icon{
    width: 8vw;
    height: 8vw;
    margin-right: 1.4rem;
  }

  .navbar:hover .navbar_ul:not(.active) {
    display: none;
  }

  .navbar_ul.active {
    display: flex!important;
  }

  .navbar_ul_li_mobile_hidden{
    display: none;
  }
}

@media (max-width: 744px) {
  .navbar{
    font-size: clamp(0.7rem, 1.2vw, 1.4rem);
    padding: 0 40px;
  }
}


/*##########################*/
/*#### Elemento BANNER #####*/
/*##########################*/

.banner {
  position: relative;
  background-image: url('assets/img/banner.jpg');
  background-size: cover;
  background-position: center calc(50% - 9vh);
  height: clamp(350px, 32vh, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.8);
  z-index: 1;
}

.banner_content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 20px;
}

.banner_content h1 {
  font-size: clamp(2rem, 3.4vw, 5rem);
  line-height: 1;
  letter-spacing: -1px;
}

.linha1 {
  font-weight: 400;
}

.linha2 {
  font-weight: 700;
  display: block;
}

@media (max-width: 950px) {
  .banner{
    height: 30vh;
    background-position: center center;
  }
}

@media (max-width: 430px) {
  .banner{
    height: 35vh;
    background-position: center center;
  }
}

/*##########################*/
/*#### Elemento SOBRE  #####*/
/*##########################*/

.sobre {
  background-color: var(--cor-papel-novo);
}

.sobre_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--cor-papel-novo);
}

.sobre_container_texto {
  flex: 1;
  font-size: 1rem;
}

.sobre_titulo {
  font-size: clamp(1.2rem, 2.7vw, 2.5rem);
  padding-left: var(--padding-esquerdo);
  padding-top: 10%;
}

.sobre_texto {
  font-size: clamp(1rem, 1vw, 1.4rem);
  margin: 3% 0 8% 0;
  padding-left: var(--padding-esquerdo);
  padding-right: 91px;
}

.sobre_imagem {
  flex: 1;
  text-align: center;
}

.sobre_imagem img {
  max-width: 100%;
  height: auto;
  padding: 0 0 0.25rem 0;
}

@media (max-width: 999px) {
  .sobre_container {
    flex-direction: column;
    padding: 1rem var(--padding-esquerdo-mobile);
  }

  .sobre_titulo{
    padding-top: 5%;
  }

  .sobre_titulo{
    font-size: 2rem;
  }

  .sobre_texto{
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .sobre_titulo,
  .sobre_texto {
    padding-left: 0;
    padding-right: 0;
    text-align: justify;
  }

  .sobre_imagem {
    margin-top: 1rem;
  }
}


/*##########################*/
/*#### Elemento SOBRE 2#####*/
/*##########################*/

.sobre2 {
	margin-top:-4px;
  background-color: var(--cor-preto-pantera);
  color: white;
}

.sobre2_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.sobre2_container_texto {
  flex: 1;
  font-size: 12px;
}

.sobre2_container_texto a{
	text-decoration: none;
}

.sobre2_titulo {
  font-size: clamp(1.2rem, 2.7vw, 2.5rem);
  padding-left: 91px;
  padding-top: 30px;
  padding-right: var(--padding-direito);
}

.sobre2_texto {
  font-size: clamp(1rem, 1vw, 1.4rem);
  margin: 2rem 0rem;
  padding-left: 91px;
  padding-right: var(--padding-direito);
}

.sobre2_imagem {
  flex: 1;
  height: clamp(400px, 50vh, 500px);
  overflow: hidden;
}

.sobre2_imagem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /*object-position: center -13vh;*/
}

.sobre2_botao {
  background-color: var(--cor-inovacao-azul);
  width: 200px;
  font-size: 14px;
  margin: 1rem 0 1rem 91px;
  padding: 1rem;
  color: white;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 999px) {
  .sobre2 {
    background-color: white;
    color: black;
  }

  .sobre2_container {
    flex-direction: column;
    padding: 2rem var(--padding-esquerdo-mobile);
  }

  .sobre2_container_texto {
    font-size: 1rem;
  }

  .sobre2_titulo{
    padding-top:0;
    font-size: 2rem;
  }

  .sobre2_texto{
    font-size: 1.1rem;
  }

  .sobre2_titulo,
  .sobre2_texto {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .sobre2_botao {
    margin-left: 0;
    background-color: var(--cor-inovacao-azul);
    color: white;
  }

  .sobre2_imagem {
    display: none;
  }
}

@media (max-width: 430px) {
  .sobre2_titulo{
    font-size: 1.5rem;
  }
}


/*##########################*/
/*####### SERVIÇOS #########*/
/*##########################*/

.servicos {
  position: relative;
  background-image: url('assets/img/servicos.png');
  background-size: cover;
  background-position: center calc(50% - 8vh);
  height: clamp(600px, 45vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.servicos_overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(36, 36, 36, 0.8);
  z-index: 1;
}

.servicos_conteudo {
  width: 100%;
  position: relative;
  z-index: 2;
}

.servicos_titulo {
  font-size: clamp(0.5rem, 2.6vw, 3.1rem);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.servicos_cards {
  display: flex;
  padding: 0 var(--padding-esquerdo);
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.servico_card {
  background-color: var(--cor-preto-pantera);
  padding: clamp(1rem, 2vw, 2rem);
  flex: 1 1 clamp(210px, 24vw, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible;
  max-width: 300px;
}

.servico_card_superior{
  height: 30%;
  margin: auto;
  padding: auto;
}

.servico_card_inferior{
  height: 70%;
  margin-top: 30px;
  padding: auto;
}

.servico_card_titulo {
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  margin-top: clamp(1.5rem, 2vh, 1.8rem);
  margin-bottom: clamp(0.8rem, 1.5vh, 2rem);
}

.servico_texto {
  line-height: 1.4;
  margin-bottom: clamp(1.2rem, 2vh, 3rem);
  color: white;
  font-size: clamp(0.8rem, 1.2vw, 1.3rem);
  text-align: center;
}

.servico_botao {
  font-family: "Montserrat", sans-serif;
  background-color: var(--cor-inovacao-azul);
  color: white;
  font-weight: 300;
  font-size: clamp(0.7rem, 1.1vw, 1.3rem);
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1.5rem, 2vw, 2rem);
  cursor: pointer;
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 1197px) {
  .servicos {
    height: auto;
    padding: 4rem 1rem;
    background-position: center;
    background-size: cover;
  }

  .servicos_overlay {
    background-color: rgba(12, 12, 12, 0.9);
  }

  .servicos_conteudo {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .servicos_titulo {
    font-size: 2.2rem;
    margin: 0 auto 3rem auto; /* Top 0, Bottom 2rem, Horizontal auto */
    width: 50%;
    text-align: center; /* opcional: centraliza o texto dentro da div */
  }


  .servicos_cards {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 2rem;
  }

  .servico_card {
    width: 100%;
    position: relative;
    margin-bottom: 2.5rem;
  }

  .servico_card_superior,
  .servico_card_inferior {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }

  .servico_card_titulo {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .servico_texto {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .servico_botao {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
    bottom: -1rem;
  }
}

@media (max-width: 430px){
  .servicos_titulo{
    width: 85%;
    font-size: 1.8rem;
  }
}


/*##########################*/
/*####### CATÁLOGO #########*/
/*##########################*/

.catalogo {
  padding: 4rem var(--padding-esquerdo);
  background-color: var(--cor-preto-pantera);
  color: white;
}

.grid-catalogo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogo-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalogo-item h5{
  font-size: clamp(0.9rem, 1.0vw, 1.3rem);
}

.catalogo-item img {
  width: 100%;
  height: 100%;
  display: block;
  margin-bottom: 1rem;
}

.catalogo-item.grande {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.palavras-grande{
  width: 75% !important;
}

.catalogo-item.pequeno {
  grid-column: auto;
}

.imagem-quadrada {
  width: 100%;
  aspect-ratio: 2 / 1.14;
  overflow: hidden;
  padding-bottom: 1rem;
}

.imagem-quadrada img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  display: block;
}

.efeito-palavras {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  transition: opacity 1s ease, transform 1s ease;
}

.texto-mobile{
  display: none;
}

.texto-desktop {
  display: block;
}

.catalogo-item-texto{
  padding-top: 0.2rem;
  font-size: clamp(0.9rem, 1vw, 1.3rem);
  line-height: 1.3;
  color: #a6a6a6;
}

.efeito-palavras span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  margin-right: 0.3rem;
  transition: all 0.3s ease;
}

.efeito-palavras span.visivel {
  opacity: 1;
  transform: translateY(0);
}

.catalogo-botao-grande{
  background-color: var(--cor-inovacao-azul);
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  width: 22%;
  text-decoration: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.catalogo-botao {
  background-color: var(--cor-inovacao-azul);
  color: white;
  text-align: center;
  padding: 0.6rem 1rem;
  width: 47%;
  text-decoration: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

@media (max-width: 999px) {
  .catalogo{
    padding: 4rem var(--padding-esquerdo-mobile);
  }

  .grid-catalogo {
    grid-template-columns: repeat(1, 1fr); /* Duas colunas por linha */
    grid-auto-rows: auto;
    gap: 2rem;
    /*padding: 0 1rem;*/
  }

  .catalogo-item.grande {
    grid-column: auto;  /* Remove o span especial */
    grid-row: auto;     /* Remove o posicionamento especial */
  }

  .catalogo-botao,
  .catalogo-botao-grande {
    width: 52%;
  }

  .palavras-grande {
    width: 100% !important;
  }

  .catalogo-item.grande {
    grid-column: auto; /* Remove o span 2 colunas */
    grid-row: auto;    /* Remove o span 2 linhas */
  }

  .catalogo-item img{
    aspect-ratio: 2 / 1.05; /* Igual para todas */
  }

  .texto-mobile {
    display: block;
  }

  .texto-desktop {
    display: none;
  }

}

@media (max-width: 430px) {
  
  .grid-catalogo{
    grid-template-columns: repeat(1, 1fr);  
  }
}



/*##########################*/
/*#### CERTIFICAÇÕES #######*/
/*##########################*/

.certificacoes {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

.certificacoes_conteudo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.certificacoes_texto {
  background-color: var(--cor-preto-pantera);
  color: white;
  padding: 3rem 109px 3rem var(--padding-esquerdo);
}

.certificacoes_texto h3 {
  font-size: clamp(0.5rem, 2.6vw, 3.1rem);
  text-align: center;
  margin-bottom: 2rem;
}

.certificacoes_texto p {
  font-size: clamp(1rem, 1.0vw, 1.3rem);
  line-height: 1.4rem;
  margin-bottom: 1.5rem;
}

.certificacoes_icones {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.certificacoes_icones img {
  height: 90px;
  max-width: 90px;
}

.certificacoes_gif {
  background-color: var(--cor-papel-novo);
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificacoes_gif img {
  max-width: 50%;
  height: auto;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.icone-cert {
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  animation: none;
}

.texto-certificado-mobile{
  display: none;
}

@media (max-width: 999px) {
  .texto-certificado-mobile{
    display: block;
    text-align: justify;
  }

  .certificacoes_conteudo {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
  }

  .certificacoes_texto {
    background-color: var(--cor-preto-pantera);
    color: white;
    padding: 3rem 4vw 3rem var(--padding-esquerdo-mobile);
  }

  .certificacoes_texto h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .certificacoes_texto p {
    font-size: 1.1rem;
    line-height: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
  }

  .certificacoes_gif img {
    height: auto;
  }

  .certificacoes_icones img {
    height: 55px;
    max-width: 55px;
  }

}

@media (max-width: 537px){
  .certificacoes_conteudo{
    display: flex;
    flex-direction: column-reverse;
  }
}


/*##########################*/
/*####### PORTFÓLIO ########*/
/*##########################*/

.portfolio {
  margin-top: -4px;
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: var(--cor-papel-novo);
}

.portfolio-conteudo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-texto {
  width: 55%;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3% 5% 4% var(--padding-esquerdo);
  text-align: center;
}

.portfolio-texto h3{
  text-align: left;
  font-size: 2.2rem;
  color: black;
  font-family: "Montserrat";
}

.portfolio-texto p {
  text-align: justify;
  font-size: 1rem;
  margin: 1.5rem 0;
}

.botao-portfolio {
  text-decoration: none;
  background-color: var(--cor-inovacao-azul);
  color: white;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border: none;
}

.portfolio-imagem {
  flex: 1;
  width: 50%;
}

.portfolio-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 999px) {
  .portfolio-conteudo {
    width: 100%;
    flex: unset;  
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--padding-esquerdo-mobile);
    flex-direction: column;
  }

  .portfolio-texto {
    width: 100%;
    padding: 1rem 0;
    box-sizing: border-box;
    text-align: left;
  }

  .portfolio-imagem {
    width: 100%;
    overflow: hidden;
  }

  .portfolio-imagem img {
    max-height: 50vw;
  }
}

@media (max-width: 430px){
  .portfolio-texto{
    width: 100%;
    align-items: center;
    padding: 0;
    padding-bottom: 2rem;
  }

  .portfolio-texto h3{
    font-size: 1.8rem;
  }

  .portfolio-imagem{
    width: 100%;
  }

  .portfolio-imagem img{
    max-height: 38vh;
  }
}

/*##########################*/
/*###### DEPOIMENTO ########*/
/*##########################*/

.depoimentos {
  background-color: var(--cor-preto-pantera);
  padding: 4rem 0rem;
  color: white;
  text-align: center;
}

.titulo-depoimentos {
  font-size: 28px;
  margin-bottom: 3rem;
}

.depoimentos-lista {
  display: flex;
  justify-content: space-between;
  padding: 0rem var(--padding-esquerdo);
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.depoimento {
  background-color: transparent;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

.depoimento .info {
  font-size: 15px;
  margin-bottom: 1rem;
}

.estrelas {
  color: var(--cor-inovacao-azul);
  font-size: 1.5rem;
  animation: piscarEstrelas 2s ease-in-out infinite;
}

/* Animação de piscar */
@keyframes piscarEstrelas {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.depoimento-video{
  height: 333px;
  width: 216px;
}

.depoimento-conteudo {
  background-color: var(--cor-papel-novo);
  padding: 1rem;
  color: black;
  width: 216px;
  height: 333px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.depoimento-conteudo p {
  font-size: 14px;
  line-height: 1.5;
}

.depoimento-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* faz o vídeo preencher o bloco sem distorcer */
  border: none;
  outline: none;
  background: black;
}

/* Carrossel contínuo */
.carrossel-clientes {
  overflow: hidden;
  width: 100%;
  margin-top: 2rem;
}

.carrossel-faixa {
  display: flex;
  gap: 3rem;
  animation: deslizar-continuo 50s linear infinite;
  width: max-content;
}

.carrossel-faixa img {
  height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
  flex-shrink: 0;
}


@keyframes deslizar-continuo {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1197px) {
  .depoimentos {
    padding: 3rem 1rem;
  }

  .titulo-depoimentos {
    font-size: 2rem;
    margin-bottom: 2rem;
    width: 50%;
    margin: 0rem auto 2rem auto;
  }

  .depoimentos-lista {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .depoimento {
    width: calc(50% - 1rem); /* 2 cards por linha com gap */
    max-width: 320px;
    box-sizing: border-box;
  }

  .depoimento-conteudo {
    padding: 1rem;
  }

  .depoimento-conteudo p {
    font-size: 13px;
    line-height: 1.4;
  }

  .carrossel-faixa {
    gap: 2rem;
    animation-duration: 30s;
  }

  .carrossel-faixa img {
    height: 30px;
    max-width: 100px;
  }
}

@media (max-width: 999px) {
  .carrossel-faixa img {
    height: 50px;
    max-width: 145px;
  }
}

@media (max-width: 430px){
  .titulo-depoimentos{
    width: 70%;
  }

  .depoimentos{
    padding: 2rem 0;
  }

  .depoimentos-lista{
    flex-direction: column;
    align-items: center;
  }

  .depoimento-conteudo{
    height: 200px;
  }
}

/*##########################*/
/*######## CONTATO #########*/
/*##########################*/

.container {
  display: grid;
  grid-template-columns: 51.24% 48.76%;
  background-color: var(--cor-preto-pantera);
  min-height: fit-content;
}

.form-left-section {
  background-color: var(--cor-preto-pantera);
  color: var(--cor-papel-novo);
  box-sizing: border-box;
  padding: 15.52% 18.00% 5% var(--padding-esquerdo);
  display: block;
}

.form-left-section h1 {
  font-size: clamp(1rem, 3vw, 2rem);
  margin-bottom: 6%;
  line-height: 1.2;
  font-weight: bold;
  text-align: left;
}

.efeito-sequencial span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.efeito-sequencial.mostrar span {
  opacity: 1;
  transform: translateY(0);
}

.form-left-section p {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  line-height: 1.1;
  margin-bottom: 6%;
  text-align: justify;
}

.form-section {
  background-color: var(--cor-papel-novo);
}

.form-container {
  padding: 10% var(--padding-esquerdo) 10% 10%;
  height: fit-content;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  color: var(--cor-preto-pantera);
  font-size: 1rem;
}

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

.form-group-double label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  color: var(--cor-preto-pantera);
  font-size: 1rem;
}

input[type="text"],
textarea,
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 0.7rem;
  border: 2px solid #ccc;
  font-size: 0.9rem;
  font-family: "Montserrat";
  background-color: var(--cor-papel-novo);
  color: var(--cor-preto-pantera);
  box-sizing: border-box;
  border-radius: 15px;
}

.form-double-input {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-submit {
  background: var(--cor-inovacao-azul);
  color: white;
  padding: 0.8em 2em; /* Ajuste o padding do botão */
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem; /* Ajuste o tamanho da fonte do botão */
  width: 100%;
  height: 45px; /* Ajuste a altura do botão */
  max-width: 100%;
  transition: background 0.3s;
  margin-top: 1rem; /* Adicione uma margem superior ao botão */
}

.btn-loader {
  margin-left: 10px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-block;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-submit:disabled {
  background-color: #ccc !important; /* cinza */
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7; /* opcional: deixa visualmente "apagado" */
}

@media (max-width: 999px) {
  .container {
    display: block;
    background-color: var(--cor-papel-novo);
    padding: var(--padding-esquerdo-mobile);
  }

  .form-left-section {
    background-color: var(--cor-papel-novo);
    color: var(--cor-preto-pantera);
    padding: 0;
  }

  .form-left-section h1{
    font-size: 2rem !important;
  }

  .form-left-section h1,
  .form-left-section p {
    text-align: left;
    font-size: 1.1rem;
    /*padding: 0 var(--padding-esquerdo-mobile);*/
  }

  .form-section {
    background-color: var(--cor-papel-novo);
  }

  .form-container {
    padding: 0;
  }

  /* Mantém Telefone e E-mail lado a lado */
  .form-double-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-left-section p{
    margin-bottom: 5%;
  }
}



/*##########################*/
/*####### BLOG-POST ########*/
/*##########################*/

/*###### POST DESTAQUE ######## */
.post-destaque-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--cor-papel-novo-escuro);
  padding: 3rem var(--padding-esquerdo);
  color: white;
}

.post-destaque-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0 7rem;
  max-width: 1366px;
  margin: 0 auto;
}

.post-destaque-item-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-destaque-item-left h1 {
  font-size: 35px;
  margin-bottom: 1rem;
  color: #000;
}

.post-destaque-item-left p {
  font-size: 17px;
  max-height: 7.5em;
  color: #000;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 30px;
}

.btn-acessar-blog {
    display: inline-block;
    width: 235px;
    background-color: var(--cor-inovacao-azul);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Efeito ao passar o mouse (hover) */
.btn-acessar-blog:hover {
    background-color: #2a6390; /* Um tom um pouco mais escuro para o hover */
}

/* Post destaque item direito */
.post-destaque-item-right {
  background-color: #fff;
  padding: 0;
}

.post-destaque {
  display: flex;
  flex-direction: column;
  background: #fff;  
  justify-content: space-between;
  height: 100%;
}

.thumb-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.thumb-wrapper img {
  width: 100%;
  overflow: hidden;
  height : 100%;
}

.thumb-wrapper img.selo-destaque {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 47px;
  z-index: 10;
}

.post-destaque .post-content {
  padding: 1.2rem;
  /* Torna o post-content um container flexível para controlar seus itens */
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Permite que ocupe todo o espaço restante */
}

.post-destaque h2 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.post-destaque p {
  margin: 0 0 0.5rem;
  color: #555;
}

.post-destaque .meta {
  font-size: 0.85rem;
  color: #999;
  text-decoration: none;
  text-align: left;
}

/*#### POST 3 ultimos post ######## */
.post-container {
  padding: 0 var(--padding-esquerdo);
  background-color: var(--cor-papel-novo-escuro);
  color: white;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1366px;
  margin: 0 auto;
  /* ADICIONE ESTA PROPRIEDADE */
  align-items: stretch; /* Garante que os itens do grid se estiquem para a mesma altura na linha */
  padding-bottom: 3rem;
}

.post-content {
  height: 225px;
  padding: 1rem 2.1rem;  
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex-grow: 1;
}

.comentarios {
  height: auto;
}

.post-title {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #000;
  text-align: left; /* título alinhado à esquerda */
}

.post-title a {
  text-decoration: none;
  color: #000;
}

.post-item {
  width: 100%;
  height: auto;
  background-color: #fff;
  color: black;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  /* ALINHAMENTO NO FINAL: Usamos space-between para empurrar o conteúdo inferior para baixo */
  justify-content: space-between;
}

.post-item:hover {
  transform: scale(1.02);
}

.post-item .meta {
  font-size: 0.85rem;
  color: #999;
  text-align: left;
}

.post-thumbnail {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-excerpt {
    font-size: 1rem;
    color: #000;
    max-height: 4.9em;
    text-align: justify;
    overflow: hidden;
}

.post-divider {
  border-top: 1px solid #bdbdbd; /* tom de cinza similar ao da imagem */
  margin: 5px 0;
}

.read-more {
  /* Empurra o "Leia mais" para o final do .post-content */
  margin-top: auto;
  color: #000;
  text-align: left;
}

.read-more:hover {
  text-decoration: underline;
}

.first-comment {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #444;
  background-color: #f1f1f1;
  padding: 0.6rem;
  border-radius: 6px;
}

@media (max-width: 880px){
  .post-destaque-container{
    padding: 4rem var(--padding-esquerdo-mobile);
  }
  .post-grid{
    display: flex;
    flex-wrap: wrap;
  }
  .post-container{
    padding: 1rem var(--padding-esquerdo-mobile);
  }
  .post-content{
    height: fit-content;
  }
  .post-destaque-item-left p{
    max-height: fit-content;
  }
}

@media (max-width: 580px){
  .post-destaque-grid {
    display: block;
    margin: 0;
  }

  .post-destaque-item-left{
    align-items: center;
    padding-bottom: 2rem;
  }

  .post-destaque-item-left h1{
    font-size:  1.3rem;
    margin-bottom: 1.8rem;  
  }
}

@media (max-width: 430px) {
  .post-destaque-container{
    padding: 2rem var(--padding-esquerdo-mobile);
  }

  .post-destaque-item-left p{
    max-height: fit-content;
    padding-bottom: 1rem;
  }

  .post-container{
    padding: 0;
  }

  .post-grid{
    display: flex;
    flex-direction: column;
    max-width: 80%;
    padding-bottom: 2.3rem;
  }

}


/*##########################*/

/*##### FOOTER-1 ##### -->*/
.footer-1 {
    background-color: var(--cor-papel-novo-escuro);
    padding: 3rem var(--padding-esquerdo);
    color: var(--text-color);
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;  /* Três colunas do mesmo tamanho */
    justify-content: space-between;
    align-items: flex-start;
}
.footer-section {
    flex: 1;
    min-width: 280px;
}
.footer-logo {
    width: 160px;
    margin-bottom: 20px;
}
.footer-section.about-us p {
    font-size: 16px;
    line-height: 1.2;
    text-align: justify;
    margin-bottom: 10px;
    padding-right: 60px;
}
.footer-section.menus{
  display: block;
}

.footer-section.menus h3,
.footer-section.contact h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section-title{
  text-align: center;
}

.footer-section.menus ul {
    list-style: none;
    flex-direction: flex-start;
    /*text-align: center;*/
}
.footer-section.menus li {
    margin-bottom: 8px;
    text-align: center;
}
.footer-section.menus a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}
.footer-section.contact p {
    margin: 10px 0;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.social-icons{
  display: flex;
  justify-content: flex-start; /* Alinhe à esquerda */
  gap: 14px;
}

.social-icons ul{
  list-style: none; /* Remove os marcadores padrão da lista */
  padding: 0; /* Remove o preenchimento padrão da lista */
  margin: 0; /* Remove a margem padrão da lista */
  display: flex; /* Habilita o Flexbox para alinhar os itens */
  gap: 0px; /* Espaçamento entre os ícones. Ajuste conforme necessário. */
  flex-wrap: wrap; /* Permite que os ícones quebrem para a próxima linha em telas menores */
  list-style: none;   /* Remove marcadores */    padding: 0;
}

.social-icons li{
  display: inline-block;
}

.social-icons li img {
  width: 35px;  /* Largura */
  height: auto; /* Altura */
}

.social-icons li img:hover {
  transform: scale(1.1); /* Aumenta 10% ao passar o mouse */
}

.footer-section.contact .icon {
    width: 30px;
    height: auto;
    margin-right: 10px; /* espaçamento entre o ícone e o texto */
    object-fit: contain; /* garante que o ícone se ajuste sem distorcer */
}
.contact-link {
    color: #333;
    text-decoration: none;
}
.contact-link:hover {
    text-decoration: underline;
}
.map-container {
    width: 100%; /* Largura fixa para o container do mapa */
    margin-top: 15px;
}
.map-container iframe {
    width: 100%;            /* Ocupa toda a largura possível do container */
    max-width: 100%;        /* Garante que não passe do limite do container */
    height: 200px;          /* Pode ajustar se quiser mais alto também */
    border: 0;
    border-radius: 4px;
}

@media (max-width: 1064px) {
  .footer-1 {
    padding: 3rem var(--padding-esquerdo-mobile);
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "about about menus"
      "contact contact menus";
    gap: 2rem;
  }

  .footer-section {
    min-width: 0;
  }

  .footer-section.about-us {
    grid-area: about;
    text-align: left;
  }

  .footer-section.contact {
    grid-area: contact;
    text-align: left;
  }

  .footer-section.menus {
    grid-area: menus;
    text-align: center;
  }

  .footer-section.about-us p {
    padding-right: 0;
    text-align: justify;
  }

  .footer-section.menus ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-section.menus li {
    text-align: center;
  }

  .footer-section.contact p {
    justify-content: flex-start;
    font-size: 18px;
  }

  .footer-section.contact .icon {
    margin-right: 8px;
  }

  .map-container iframe {
    height: 180px;
  }
}

@media (max-width: 430px) {
  
  .footer-content {
    display: flex;
    flex-direction: column;
  }

  .footer-section.menus{
    display: none;
  }
}


/*##########################*/
/*##### FOOTER-2 ##### -->*/
.footer-2 {
    background-color: var(--cor-preto-pantera);
    color:var(--cor-papel-novo);
    padding: 20px;
    display: flex;
    justify-content: center; /* Centraliza o conteúdo horizontalmente */
    align-items: center; /* Centraliza o conteúdo verticalmente */
    min-height: 60px; /* Altura mínima para o rodapé, ajuste se necessário */
    font-size: 0.9em; /* Tamanho da fonte */
}
.footer-2-content {
    max-width: 1200px; /* Largura máxima para o conteúdo, para não esticar muito em telas grandes */
    font-size: 16px;
    width: 100%;
    display: flex;
    justify-content: space-around; /* Distribui os itens para as extremidades */
    align-items: center; /* Alinha os itens verticalmente no centro */
    padding: 0; /* Pequeno padding lateral para não colar nas bordas em telas menores */
}
.copyright-text {
    margin: 0; /* Remove margem padrão de parágrafo */
}
.privacy-link {
    color: #ffffff; /* Cor do link branca */
    text-decoration: none; /* Remove sublinhado */
    transition: color 0.3s ease; /* Suaviza a transição de cor ao passar o mouse */
}
.privacy-link:hover {
    color: #007bff; /* Cor ao passar o mouse, ou outra cor de sua preferência */
}
/* Responsividade para telas menores: empilhar os elementos */
@media (max-width: 768px) {
    .footer-2-content {
        flex-direction: column; /* Empilha o copyright e o link */
        text-align: center;
    }
    .copyright-text {
        margin-bottom: 10px; /* Espaço entre o copyright e o link */
    }
}
/*##########################*/