/* ================================
   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: #000000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 10px solid #000000;
}

.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: #000000;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #e6b800;
}

/* ================================
   HERO
===================================*/
.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;
}

.hero-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.hero-texto p {
  font-family: "Libre Baskerville", serif;
  font-size: 1.7rem;
  padding: 10px 20px;
}

/* ÍCONES DA HERO */
.hero-image {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.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;
}

.hero-image img:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

/* ================================
   CONTEÚDO — ÁREAS DE ATUAÇÃO
===================================*/
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ÇÃO INDIVIDUAL DAS ÁREAS */
.area {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e6b800; /* divisão elegante */
}

.area h2 {
  font-size: 2rem;
  color: #e6b800;
  margin-bottom: 15px;
}

.area p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.area ul {
  list-style: disc inside;
  padding-left: 0;
}

.area li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* ================================
   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;
  }
}
