/* ======================================
   RESET
=========================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #333;
}

/* ======================================
   HEADER
=========================================*/
header {
  background-color: #ffffff;
  color: #000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 10px solid #000;
}

.logo img {
  max-height: 130px;
  width: auto;
  cursor: pointer;
}

#logoTexto {
  font-family: "Codec Pro", sans-serif;
  font-size: 50px;
  cursor: pointer;
  text-align: center;
}

/* MENU */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #e6b800;
}

/* ======================================
   HERO (com ícones WhatsApp / Instagram)
=========================================*/
.hero {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #302b17;
  position: relative;
  z-index: 5;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Caso queira imagem de fundo, descomente e personalize:
// .hero {
//   background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), url('/src/imagens/hero-bg.jpg') center/cover no-repeat;
// }
*/

.hero-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-texto p {
  font-family: "Libre Baskerville", serif;
  font-size: 1.7rem;
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 5px;
}

/* Container dos ícones */
.hero-image {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  z-index: 10; /* garante que os ícones fiquem acima do conteúdo */
}

/* Estilo dos ícones */
.hero-image a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 30%;
}

.hero-image img {
  width: 90px;
  height: auto;
  border-radius: 30%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px #e6b800;
  position: relative;
  z-index: 10;
}

/* Hover e destaque */
.hero-image img:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* Para exibir os ícones verticalmente (um abaixo do outro), adicione a classe `.vertical` ao container .hero-image
   <div class="hero-image vertical"> ... </div>
*/
.hero-image.vertical {
  flex-direction: column;
}

/* ======================================
   CONTEÚDO — ÁREAS / SOBRE
=========================================*/
main.sobre-nos,
main.atuacao-page {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro h1 {
  font-size: 2.5rem;
  color: #000;
}

.intro p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
}

/* SEÇÕES */
section {
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 2px solid #e6b800;
}

section:last-of-type {
  border-bottom: none;
  padding-bottom: 20;
}

section h2 {
  font-size: 2rem;
  color: #e6b800;
  margin-bottom: 15px;
}

section p,
section ul {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

section ul {
  list-style: disc inside;
  padding-left: 0;
}

/* ======================================
   RODAPÉ
=========================================*/
footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  margin-top: 40px;
}

/* ======================================
   RESPONSIVIDADE
=========================================*/
@media (max-width: 900px) {
  #logoTexto {
    font-size: 38px;
  }

  .logo img {
    max-height: 110px;
  }

  .hero-image img {
    width: 75px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  #logoTexto {
    font-size: 32px;
  }

  .hero {
    padding: 30px 20px;
  }

  .hero-image img {
    width: 65px;
  }

  .intro {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    width: 55px;
  }

  #logoTexto {
    font-size: 26px;
  }
}
