/*Parte Inicial*/

body {
  background-color: #272623;
  /* Caminho para a imagem de fundo */
  background-size: cover;
  /* Para cobrir toda a página com a imagem */
  background-repeat: no-repeat;
  /* Para evitar a repetição da imagem */
  overflow-x: hidden;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  border-radius: 30px;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  color: white;
}

/* Estilos para os ícones de rede social */
.social-icons {
  list-style-type: none;
  padding: 0;
  display: flex;
  /* Define o layout como flexível */
  align-items: flex-start;
  /* Alinha os ícones ao topo */
  justify-content: flex-end;
  /* Alinha os ícones à direita */
  position: absolute;
  /* Define a posição absoluta */
  top: -5px;
  /* Distância da borda superior */
  right: 20px;
  /* Distância da borda direita */
}

.social-icons li {
  margin-right: 10px;
  /* Espaçamento entre os ícones */
}

.social-icons li:last-child {
  margin-right: 0;
  /* Remove o espaçamento do último ícone */
}

.social-icons li img {
  width: 40px;
  /* Largura dos ícones */
  height: auto;
  /* Altura automática para manter a proporção */
}

.dados-icons {
  list-style-type: none;
  padding: 0;
  display: flex;
  /* Define o layout como flexível */
  align-items: flex-start;
  /* Alinha os ícones ao topo */
  justify-content: flex-start;
  /* Alinha os ícones à esquerda */
  position: absolute;
  /* Define a posição absoluta */
  top: -5px;
  /* Distância da borda superior */
  left: 20px;
  /* Distância da borda esquerda */
}

.dados-icons li {
  margin-right: 10px;
  /* Espaçamento entre os ícones */
  display: flex;
  /* Configura os itens para usar flexbox */
  align-items: center;
  /* Alinha os itens verticalmente ao centro */
}

.dados-icons li:last-child {
  margin-right: 0;
  /* Remove o espaçamento do último ícone */
}

.dados-icons li img {
  width: 40px;
  /* Largura dos ícones */
  height: auto;
  /* Altura automática para manter a proporção */
}

.logo img {
  width: 40px;
  /* Defina a largura desejada */
  height: auto;
  /* Mantenha a proporção */

}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: white;
  /* Cor do texto */
  border-radius: 0px;
  height: 30px;
  background-color: #272623;
  overflow: hidden;
  /* Para limpar os floats */

}

.contaneir {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: white;
  /* Cor do texto */
  border-radius: 10px;
  height: 30px;
  background-color: black;
  background-color: #272623;
  /* Cor de fundo preto com 50% de transparência */
  margin: 0 auto;
  /* Centraliza o conteúdo horizontalmente */
  max-width: 100%;
  /* Define a largura máxima do contêiner */
}

.contaneir a:hover {
  color: #DFAD14;
  /* Cor do texto ao passar o mouse */
}

#banner {
  background-color: #272623;
  /* Cor do banner com 50% de transparência */
  background-image: url("LogoNova.jpeg");
  /* Imagem de fundo do banner */
  background-size: cover;
  background-position: center;
  height: 600px;
  width: 100%;
  border-radius: 0px;
  position: relative;

}

/* Alinhamento do texto da navegação */
nav {
  text-align: right;
  /* Alinha o texto da navegação à direita */
  margin-top: -5px;
  /* Sobe a navegação em relação ao topo do cabeçalho */
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  /* Mantenha os links em linha */
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  line-height: 30px;
  /* Centraliza verticalmente */
}

/*Parte Inicial*/

/*Missao e Valores*/

.container-box {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.box {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f2f2f2;
  /* Cor de fundo dos boxes */
  width: 300px;
  /* Largura fixa para os boxes */
  margin-bottom: 20px;
  /* Margem inferior para separar os elementos */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0px 0px 50px rgba(0, 0, 0, 0.5);
}

.box img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.box ul li {
  text-align: left;
  margin-bottom: 10px;
  /* Adiciona margem inferior para espaçamento */
}

/*Missao e Valores*/

/* Áreas de Atuação */

#areas {
  background-color: #f2f2f2;
  padding: 0px;
  border-radius: 0px 0px 20px 20px;
  margin-top: 40px;
  padding-bottom: 10px;
  /* Adiciona espaço abaixo do contêiner de depoimentos */
}

.container-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.box-areas {
  display: block;
  width: 340px;
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid black;
}

.box-areas:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.box-areas img {
  width: 100%;
  height: auto;
  border-radius: 10%;
}

.box-areas h3 {
  font-size: 20px;
  margin: 10px 0;
}

.box-areas p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.5;
}

.saiba-mais {
  display: inline-block;
  padding: 10px 20px;
  background-color: white;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: 1px solid #DFAD14;
}

.saiba-mais:hover {
  background-color: black;
  color: white;
  border: 1px solid black;
}

/* Áreas de Atuação */

/*Icone Whastapp*/

.whatsapp-chat {
  position: fixed;
  /* Fixa o ícone na tela */
  bottom: 20px;
  /* Distância do ícone em relação à parte inferior */
  right: 20px;
  /* Distância do ícone em relação à parte direita */
  z-index: 9999;
  /* Define a ordem de empilhamento */
}

.whatsapp-chat img {
  width: 40px;
  /* Largura do ícone do WhatsApp */
  height: auto;
  /* Altura automática para manter a proporção */
}

/*Icone Whastapp*/

/* Depoimentos */

#testimonials {
  background-color: #f2f2f2;
  padding: 0px;
  border-radius: 0px 0px 20px 20px;
  margin-top: 40px;
  padding-bottom: 10px;
  /* Adiciona espaço abaixo do contêiner de depoimentos */
}

.container-depoimentos {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.depoimento {
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  height: 340px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), inset 0px 0px 50px rgba(0, 0, 0, 0.5);
}

.depoimento img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
}

.depoimento h3 {
  font-size: 18px;
  margin: 10px 0;
}

.depoimento p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  /* Justifica o texto dos depoimentos */
}

.depoimento:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Estilos para o contêiner dos botões de navegação */
#navButtonsContainer {
  text-align: center;
  /* Centraliza o conteúdo horizontalmente */
  margin-top: 20px;
  /* Espaçamento superior */
}

/* Estilos para os botões de navegação */
#prevButton,
#nextButton {
  background-color: white;
  /* Cor de fundo dos botões */
  color: black;
  text-decoration: none;
  font-weight: bold;
  /* Cor do texto dos botões */
  border: 1px solid #DFAD14;
  padding: 10px 20px;
  /* Espaçamento interno dos botões */
  border-radius: 5px;
  /* Arredonda os cantos dos botões */
  cursor: pointer;
  /* Altera o cursor para indicar que os botões são clicáveis */
  margin: 0 10px;
  /* Espaçamento entre os botões */
  transition: background-color 0.3s;
  /* Efeito de transição suave na mudança de cor de fundo */
}

/* Estilos para o botão de navegação quando o cursor está sobre ele */
#prevButton:hover,
#nextButton:hover {
  background-color: black;
  color: white;
  /* Cor de fundo dos botões ao passar o mouse */
  border: 3px solid black;
}

.rectangle-container {
  width: 100%;
  background-color: #272623;
  /* Cor de fundo do retângulo */
  border: 3px solid #DFAD14;
  /* Linha de contorno em volta */
  box-sizing: border-box;
  /* Inclui a borda na largura total */
  padding: 10px;
  /* Espaçamento interno dentro do retângulo */
  margin: 20px auto;
}

.rectangle-title {
  text-align: center;
  /* Centraliza o título */
  font-size: 24px;
  /* Tamanho do texto */
  color: white;
  /* Cor do título */
  margin: 0;
  /* Remove margens padrão */
}

/* Depoimentos */

/* Artigos */

#artigos {
  background-color: #f2f2f2;
  padding: 0px;
  border-radius: 0px 0px 20px 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  height: 550px;

}

.container-artigos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
}

.artigo {
  width: 300px;
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.artigo img {
  width: 300px;
  height: 200px;
  border-radius: 10%;
  margin: 0 auto;
}

.artigo h3 {
  font-size: 18px;
  margin: 10px 0;
  color: black;
}

.artigo p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}

.artigo a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  color: black;
  border: 1px solid #DFAD14;
  /* Cor da borda */
  padding: 5px 10px;
  /* Espaço interno do botão */
  border-radius: 5px;
  /* Arredonda os cantos do botão */
  transition: 0.3s;
}

.artigo a:hover {
  background-color: black;
  /* Cor de fundo ao passar o mouse */
  color: #fff;
  /* Cor do texto ao passar o mouse */
  border: 3px solid black;
}

.artigo:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Artigos */

/* Rodapé */

footer {
  background-color: #272623;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.containe-rodape {
  display: flex;
  justify-content: space-between;
}

.logo-texto {
  display: flex;
  align-items: center;
}

.logo-texto p {
  max-width: 35%;
  font-size: 16px;
  text-align: justify;
  line-height: 1.5;
  margin-left: 20px;
}

.logo-texto img {
  max-width: 130px;
  height: auto;
  margin-left: 20px;
}

.colunas {
  display: flex;
  text-align: center;
}

.coluna {
  flex: 1;
  /* Distribui espaço igualmente entre as colunas */
  padding: 10px;
}

.coluna h2 {
  font-size: 18px;
  margin-bottom: 5px;
  text-align: left;
  margin-left: 38px;
}

.coluna ul li {
  font-size: 16px;
  line-height: 1.5;
  align-items: center;
  list-style: none;
  text-align: left;
}

/* Estilos para links*/
.coluna ul li a {
  color: #fff;
  /* Cor do texto */
  text-decoration: none;
  /* Remove sublinhado */
}

/* Estilos para links ao passar o mouse */
.coluna ul li a:hover {
  color: #DFAD14;
  /* Cor ao passar o mouse */
  text-decoration: none;
  /* Adiciona sublinhado */
}

.rodape p {
  margin-top: 40px;
  font-size: 16px;
}

.icones-redes-sociais {
  flex: 1;
  margin-left: 40px;
}

.icones-redes-sociais ul {
  list-style-type: none;
  padding: 0;
  display: flex;
}

.icones-redes-sociais ul li {
  margin-right: 10px;
}

.icones-redes-sociais ul li:last-child {
  margin-right: 0;
}

.icones-redes-sociais ul li img {
  max-width: 40px;
  /* Largura máxima do ícone */
  max-height: 40px;
  /* Altura máxima do ícone */
}

/* Rodapé */

/* Estilos responsivos */
@media (max-width: 768px) {

  /* Parte Inicial */
  
  .header {
    height: auto;
    /* Altura automática para acomodar o conteúdo */
    padding: 10px 0;
    /* Adicione um pouco de espaçamento ao redor */
  }

  .contaneir {
    padding: 10px;
    /* Espaçamento interno uniforme */
    height: auto;
    /* Altura automática para acomodar o conteúdo */
  }

  nav ul li a {
    font-size: 14px;
  }

  /* Diminui o tamanho dos ícones */
  .social-icons li img,
  .dados-icons li img {
    width: 25px;
    /* Ajusta a largura dos ícones */
  }

  .social-icons li,
  .dados-icons li {
    display: flex;
    /* Define os itens como flexíveis */
    flex-direction: column;
    /* Alinha os itens em coluna */
    justify-content: center;
    /* Centraliza os itens verticalmente */
    align-items: center;
    /* Centraliza os itens horizontalmente */
    text-align: center;
    /* Centraliza o texto */
  }

  /* Remove margem inferior do último item para evitar espaçamento extra */
  .social-icons li:last-child,
  .dados-icons li:last-child {
    margin-bottom: 0;
  }

  nav {
    text-align: center;
    /* Centralize o texto da navegação */
    margin-top: 10px;
    /* Adicione um pouco de espaço acima da navegação */
  }

  nav ul li {
    display: block;
    /* Coloque cada link em um bloco */
    margin: 10px 0;
    /* Adicione espaçamento vertical entre os links */
  }

  #banner {
    height: 300px;
    margin-top: -20px;
    margin-bottom: -20px;
  }

  .rectangle-title {
    text-align: center;
    /* Centraliza o título */
    font-size: 20px;
    /* Tamanho do texto */
    color: white;
    /* Cor do título */
    margin: 0;
    /* Remove margens padrão */
  }


  /* Missao e Valores */

  .container-box {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 70%;

  }

  .box li {
    font-size: 14px;
  }

  .box h2 {
    font-size: 18px;
  }

  /* Missao e Valores */

  /* Áreas de Atuação */

  .box-areas {
    display: inline-block;
    width: 90%;
    margin: 0 5px;
    scroll-snap-align: start;
    white-space: normal;
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .box-areas p {
    font-size: 14px;
  }

  .box-areas h3 {
    font-size: 18px;
  }

  .box-areas a {
    font-size: 14px;
  }

  /* Áreas de Atuação */

  /* Depoimentos */

  /* Estilos gerais */
  
  .rectangle-container {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .container {
    width: 90%;
    margin: auto;
  }
  
  /* Estilos específicos para depoimentos */
  .container-depoimentos {
    display: flex;
    overflow: hidden;
    position: relative;
  }
  
  .depoimento {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    display: block; /* Exibe o depoimento ativo */
  
  }
  
  .depoimento h3 {
    font-size: 18px;
  }
  
  .depoimento p {
    font-size: 14px;
  }
  
  #navButtonsContainer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
}
/* Depoimentos */

/* Artigos */

/* Estilos responsivos para dispositivos móveis */
@media (max-width: 768px) {

  #artigos {
    background-color: #f2f2f2;
    padding: 0px;
    border-radius: 0px 0px 20px 20px;
    margin-top: 40px;
    margin-bottom: 60px;
    height: 50%;
  }

  .container-artigos {
    flex-direction: column;
    align-items: center;
  }

  .artigo {
    width: 80%;
    /* Ajusta a largura para caber na tela do celular */
    margin-bottom: 20px;
    /* Espaço entre artigos */
    margin-left: -62%;
  }

  .artigo h3 {
    font-size: 18px;
  }

  .artigo p {
    font-size: 14px;
  }

  .artigo a {
    font-size: 14px;
  }

  .container-artigos {
    margin-left: -25px;
  }

  .artigo {
    width: 30%;
  }

  .artigo img {
    width: 100%;
  }

  /* Artigos */

  /* Rodapé */

  .containe-rodape {
    flex-direction: row;
    /* Alterado para linha para posicionar a logo à esquerda */
    justify-content: center;
    /* Ajustado para centralizar verticalmente */
    font-size: 14px;
  }

  .logo-texto {
    flex-direction: row;
    /* Alterado para linha para posicionar a logo à esquerda */
    align-items: center;
    margin-left: 30px;
  }

  .logo-texto p {
    max-width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .logo-texto img {
    margin: 10px 10px 10px 0;
    /* Ajustado o espaçamento para a direita para separar a logo do texto */
    margin-top: -20px;
  }

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

  .coluna {
    width: 90%;
  }

  .coluna h2 {
    font-size: 18px;
  }

  .coluna ul li a {
    font-size: 14px;
  }

  .icones-redes-sociais ul {
    justify-content: center;
    width: 100%;
  }

  .icones-redes-sociais img {
    width: 25px;
  }

  .rodape p {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
  }

  /* Rodapé */
}