/* Estilos do calendário */
.calendario {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: Arial, sans-serif;
}

.calendario h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.calendario sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.meses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.mes {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1rem;
  background: #f9fafc;
}

.mes h3 {
  margin-top: 0;
  color: #003366;
}

.mes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mes li {
  margin-bottom: 0.5rem;
}

.plano {
  display: inline-block;
  margin-top: 2rem;
  color: #0056cc;
  text-decoration: none;
  font-weight: bold;
}

.plano:hover {
  text-decoration: underline;
}

.lista-conselheiros {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

/* Card do conselheiro  */
.conselheiro {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.2rem;
  border-left: 5px solid #038c73;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

/* Efeito ao passar mouse */
.conselheiro:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Nome */
.conselheiro h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #025949;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

/* Estilização da Lista de Definição */
.dados-lista {
  margin: 0;
  padding: 0;
}

/* O container de cada par Rótulo/Valor */
.dado-item {
  margin-bottom: 0.8rem;
}

/* O Rótulo (ex: REMUNERAÇÃO) */
.dado-item dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #888;
  font-weight: bold;
  margin-bottom: 2px;
}

/* O Valor (ex: R$ 3.000,00) */
.dado-item dd {
  margin: 0;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}
