/* ------------------------------------------------------
   RESET BÁSICO
------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #1b1815;  /* texto principal */
  background-color: #f5f5f5; /* fundo claro */
  line-height: 1.6;
}

/* ------------------------------------------------------
   CONTAINERS E SEÇÕES
------------------------------------------------------ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Alice', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #555;
}

/* ------------------------------------------------------
   HEADER
------------------------------------------------------ */
.header {
  background-color: #8a7956; /* cor primária */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 45px;
}

/* Menu */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  text-decoration: none;
  color: #ffffff; /* texto claro */
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #f5f5f5;
}

/* Botão hamburguer (mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* ------------------------------------------------------
   HERO (Fundo primário)
------------------------------------------------------ */
.hero {
  background-color: #9b8964;  /* cor primária */
  margin-top: 70px;           /* compensa header fixo */
  padding: 4rem 1rem;
  text-align: center;
  color: #ffffff;
  
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Alice', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ------------------------------------------------------
   BOTÕES
------------------------------------------------------ */
.btn-primario {
  background-color: #1b1815; /* tom escuro para contraste */
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-primario:hover {
  background-color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secundario {
  display: inline-block;
  color: #8a7956;
  background-color: #ffffff;
  border: 2px solid #8a7956;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-secundario:hover {
  background-color: #8a7956;
  color: #ffffff;
}

/* ------------------------------------------------------
   SEÇÃO SOBRE
------------------------------------------------------ */
.secao-sobre {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}

/* ------------------------------------------------------
   SEÇÃO ÁREAS DE ATUAÇÃO
------------------------------------------------------ */
.areas-atuacao {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.area-item {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.icon-wrapper {
  font-size: 2rem;
  color: #8a7956;
  margin-bottom: 1rem;
}

.area-item h3 {
  font-family: 'Alice', serif;
  font-size: 1.3rem;
  color: #1b1815;
  margin-bottom: 0.5rem;
}

.area-item p {
  color: #666;
}

/* ------------------------------------------------------
   CTA
------------------------------------------------------ */
.cta-home {
  background-color: #9b8964;;
  color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-title {
  font-family: 'Alice', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ------------------------------------------------------
   FOOTER
------------------------------------------------------ */
.footer {
  background-color: #9b8964;
  color: #ffffff;
  text-align: center;
  padding: 1.5rem 0;
}

.footer p {
  margin: 0;
}

/* ------------------------------------------------------
   RESPONSIVIDADE
------------------------------------------------------ */
@media (max-width: 768px) {
  /* Menu Responsivo */
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #8a7956;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 998;
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }
  .nav.show {
    transform: translateY(0);
  }
  .hamburger {
    display: flex;
  }

  /* Hero Image no mobile */
  .hero-image {
    max-width: 200px;
  }
}


/* Demonstração simples sem outras classes, só foca no flex */
.hero {
  /* Você pode manter cor de fundo, margens, etc. */

  padding: 4rem 1rem;
  color: #ffffff;
}

/* Contêiner flex */
.hero-content {
  display: flex;            /* lado a lado por padrão */
  flex-direction: row;      /* garante que fique em linha */
  align-items: center;      /* alinha verticalmente no centro */
  justify-content: center;  /* ou space-between, se preferir */
  gap: 2rem;                /* espaço entre imagem e texto */
}

/* Imagem */
.hero-image {
  max-width: 400px; /* Aumente ou diminua conforme preferir */
  width: 100%;
  height: auto;
  display: block;
}

/* Texto */
.hero-text {
  max-width: 600px; /* limite de largura para o texto */
  width: 100%;
}

/* Ajuste de tipografia */
.hero-headline {
  font-family: 'Alice', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  margin-bottom: 2rem;
}

/* Botão de exemplo */
.btn-primario {
  background-color: #1b1815;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-primario:hover {
  background-color: #333;
}

/* RESPONSIVIDADE: abaixo de 768px -> muda para coluna */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column; 
    text-align: center; 
  }

  .hero-image, 
  .hero-text {
    max-width: 100%;
  }

  .hero-image {
    margin-bottom: 1rem;
  }
}






/*Sobre --------------------------------------------------------------------------------------*/
/* Seção Sobre o Escritório */
.sobre-escritorio {
  background-color: #9b8964;
  padding: 4rem 1rem;
  color: #fff;
}
.page-title {
  padding-top: 80px;
  font-family: 'Alice', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.sobre-texto {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  text-align: center;
  color: #ffffffbe;
}

/* Seção Nossa Equipe */
.nossa-equipe {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}
.socio-wrapper {
  display: flex;
  align-items: flex-start; /* Alinha o texto ao topo */
  gap: 2rem;
  margin-bottom: 3rem;
}
.socio-foto img {
  max-width: 300px; /* ajuste conforme necessário */
  width: 100%;
  border-radius: 6px;
  display: block;
}
.socio-descricao {
  flex: 1;
}
.socio-descricao h3 {
  font-family: 'Alice', serif;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.socio-descricao ul {
  list-style: disc;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.socio-descricao p {
  color: #555;
  line-height: 1.5;
}
.socio-contact {
  margin-top: 1.5rem;
}

/* Seção do Mapa */
.secao-mapa {
  background-color: #ffffff;
  padding: 4rem 1rem;
}
.mapa-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden; /* para arredondar os cantos do iframe */
}

/* Responsividade */
@media (max-width: 768px) {
  .socio-wrapper {
    flex-direction: column;
  }
  .socio-foto img {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}


/* 
  --------------------------------------------
  BARRA DE ROLAGEM TOTALMENTE TRANSPARENTE
  --------------------------------------------
*/

/* Para navegadores baseados em WebKit */
::-webkit-scrollbar {
  width: 10px; /* Largura da barra */
}

::-webkit-scrollbar-track {
  background: transparent; /* Track transparente */
}

::-webkit-scrollbar-thumb {
  background-color: transparent; /* Thumb transparente */
  border-radius: 8px; /* Borda arredondada */
  border: none; /* Sem borda */
}

/* Ao passar o mouse, o thumb ganha um pouco de visibilidade */
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(138, 121, 86, 0.5); /* Thumb semi-transparente no hover */
}

/* Firefox */
html {
  scrollbar-width: none; /* Remove completamente a barra de rolagem */
  scrollbar-color: transparent transparent; /* Thumb e track transparentes */
}


/*-----------------------------------contato-------------------------------------*/


/* Seção Contato */
.contato {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}

.contato-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.contato-form,
.contato-info {
  flex: 1;
  min-width: 300px;
}

/* Formulário */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1b1815;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #8a7956;
  box-shadow: 0 0 5px rgba(138, 121, 86, 0.5);
}

textarea {
  resize: none;
}

/* Informações de Contato */
.contato-info h2 {
  font-family: 'Alice', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contato-info p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contato-info a {
  color: #8a7956;
  text-decoration: none;
}

.contato-info a:hover {
  text-decoration: underline;
}

/* Mapa */
.secao-mapa {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.mapa-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden; /* Para bordas arredondadas no iframe */
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-grid {
    flex-direction: column;
  }
}




/*ADMIN*/


/* 
  Seção hero do serviço
  (Fundo claro ou cor primária, conforme desejado)
*/
.hero-servico {
  background-color: #f5f5f5; /* Pode usar cor primária, se preferir: #8a7956 */
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 70px; /* Compensar o header fixo */
}

.page-title {
  font-family: 'Alice', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-subtitle-servico {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.5;
}

/* 
  Conteúdo do serviço
*/
.conteudo-servico {
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.conteudo-servico p {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: #555;
}

/* Título de cada bloco de serviço */
.servico-subtitle {
  font-family: 'Alice', serif;
  font-size: 1.8rem;
  color: #1b1815;
  margin: 2rem 0 1rem;
  text-align: center;
}

/* Lista com ícones (Licitações, etc.) */
.lista-icones ul {
  list-style: none;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 0;
}

.lista-icones li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lista-icones i {
  color: #8a7956;
  font-size: 1.2rem;
  margin-top: 0.25rem; /* Ajuste vertical */
}

/* Cada bloco de serviço */
.servico-bloco {
  margin-top: 2rem;
}

/* CTA do Serviço */
.cta-servico {
  text-align: center;
  margin-top: 3rem;
}

.cta-servico p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Responsividade */
@media (max-width: 768px) {
  .lista-icones li {
    flex-direction: column;
    align-items: flex-start;
  }
}


/*Recuperação de Conta*/


/* Seção hero do serviço */
.hero-servico {
  background-color: #f5f5f5; 
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 70px; /* Compensar o header fixo */
}

.page-title {
  font-family: 'Alice', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hero-subtitle-servico {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.5;
}

/* Conteúdo do serviço */
.conteudo-servico {
  padding: 3rem 1rem;
  background-color: #ffffff;
}

.conteudo-servico p {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  color: #555;
}

.servico-bloco {
  margin-top: 2rem;
}

.servico-subtitle {
  font-family: 'Alice', serif;
  font-size: 1.8rem;
  color: #1b1815;
  margin: 2rem 0 1rem;
  text-align: center;
}

/* Lista de ícones */
.lista-icones ul {
  list-style: none;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 0;
}

.lista-icones li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lista-icones i {
  color: #8a7956;
  font-size: 1.2rem;
  margin-top: 0.25rem; 
}

/* CTA final */
.cta-servico {
  text-align: center;
  margin-top: 3rem;
}

.cta-servico p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}




/* Sessão Agradecimento */

.agradecimento-container {
  min-height: 100vh; /* ocupa a tela toda, se quiser */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f5f5f5; /* fundo claro */
  padding: 2rem 1rem;
}

.agradecimento-container h1 {
  font-family: 'Alice', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1b1815;
}

.agradecimento-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.agradecimento-container .btn-primario {
  text-decoration: none;
  font-weight: 600;
  background-color: #8a7956;
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.agradecimento-container .btn-primario:hover {
  background-color: #6f6146;
}


.servico-imagem {
  display: block;
  max-width: 100%; /* Ajusta a largura da imagem ao tamanho do container */
  height: auto;    /* Mantém a proporção da imagem */
  margin: 1.5rem auto; /* Centraliza a imagem e adiciona espaçamento */
  border-radius: 8px;  /* Bordas arredondadas para um visual mais moderno */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
}
/* Ajuste específico para telas maiores */
@media (min-width: 768px) {
  .servico-imagem {
    max-width: 60%; /* Limita a largura a 60% do container */
  }
}



a.tagline{
  color: white;
  text-decoration: none;
  font-weight: bold;
}