/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

[id] {
 scroll-margin-top: 100px;
}
a {
  text-decoration: none;
  color: inherit; /* ou substitua por 'color: black;' */
}
#btnTopo {
  display: none; /* oculto por padrão */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #333;
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#btnTopo:hover {
  background-color: #555;
}



.no-bold {
font-weight: normal;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* Cores principais */
:root {
  --verde: #2ecc71;
  --preto: #1e1e1e;
  --cinza: #f0f0f0;
  --gradiente: linear-gradient(135deg, #2ecc71, #1e1e1e);
}

/* Cabeçalho */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradiente);
  padding: 1rem 2rem;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  white-space: nowrap;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #aaffcc;
}

/* Hero */

img {
     max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


main h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--preto);
}
.SobreConselho {
text-align: center;
color: var(--verde);
margin-bottom: 1rem;
}
.atribuicoes {
  text-align: center;
color: var(--verde);
margin-bottom: 1rem;  
}
.resolucoes {
    text-align: center;
color: var(--verde);
margin-bottom: 1rem;
}
.acoes {
text-align: center;
color: var(--verde);
margin-bottom: 1rem;
}
.contato {
    text-align: center;
color: var(--verde);
margin-bottom: 1rem;
}

main h3, main h4 {
  text-align: center;
  text-align: center;
  color: #555;
}

/* Seções */
main div {
  padding: 2rem;
  background: white;
  margin: 1rem auto;
  max-width: 900px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

main h2 {
  color: var(--verde);
  margin-bottom: 1rem;
}

main ul {
  list-style: none;
  padding-left: 0;
}

main ul li {
  margin-bottom: 1rem;
}

/* Rodapé */
footer {
  background: var(--preto);
  color: white;
  padding: 2rem;
  text-align: center;
}

footer h2 {
  margin-bottom: 1rem;
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.resolucao-lista {
  list-style: none;
  padding-left: 0;
}

.resolucao-lista li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.resolucao-lista a {
  color: #0056b3;
  text-decoration: none;
  font-weight: bold;
}

.resolucao-lista a:hover {
  text-decoration: underline;
}

.btn-baixar {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-baixar:hover {
  background-color: #45a049;
}
.carrossel {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background-color: #f0f0f0; /* fundo neutro */
}

.slides {
  display: flex;
  width: 300%;
  animation: slide 9s infinite;
}

.slides img {
  width: 100%;
  height: 300px;           /* altura fixa */
  object-fit: contain;     /* mostra a imagem inteira */
  background-color: #f0f0f0; /* fundo para preencher área */
}
.slides img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background-color: #f0f0f0;
}
