.organograma h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}

.organograma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-bottom: 2rem;
}

.cargo {
  background-color: #165493;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.cargo h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #ffcc00;
}

.cargo p {
  margin: 0;
  font-size: 1rem;
}

.conselho-fiscal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-items: center;
}

.observacoes {
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
  font-size: 0.95rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.observacoes h3 {
  margin-bottom: 10px;
  color: #004080;
}

.organograma-header {
  display: flex;
  align-items: center; /* centraliza verticalmente */
  justify-content: center; /* centraliza horizontalmente */
  gap: 16px; /* espaço entre imagem e texto */
  margin-bottom: 20px;
  flex-wrap: wrap; /* garante quebra no mobile */
}

.organograma-img {
  width: 100px; /* ou o tamanho desejado */
  height: auto;
  padding-bottom: 1rem;
}

.titulo-h1 {
  margin: 0;
  font-size: 1.8rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}
