/* Importando fonte elegante compatível */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

/* Logo */
.logo img {
  width: 180px;
  height: auto;
}

/* Cabeçalho com fonte estilizada */
.cabecalho h1,
.cabecalho h2 {
  font-family: 'Dancing Script', cursive;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding: 5px 0;
}

/* Missão */
.missao {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* Menu principal */
.menu-principal {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.menu-principal li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.menu-principal li a.ativo {
  color: #f2c94c;
}

/* Contato */
.contato {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Lista de tópicos */
main ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

main ul li {
  margin-bottom: 10px;
}

main ul li a {
  text-decoration: none;
  color: #0077cc;
}

/* Seções */
section {
  margin-bottom: 40px;
}

section h3 {
  font-size: 20px;
  color: #444;
  margin-bottom: 10px;
}

section p {
  font-size: 16px;
  color: #555;
}

/* Botão voltar */
.voltar {
  margin-top: 10px;
}

.voltar a {
  font-size: 14px;
  color: #888;
  text-decoration: underline;
}

/* Rodapé */
footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #f2c94c;
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

/* Responsivo */
@media screen and (max-width: 600px) {
  header h1 {
    font-size: 28px;
  }

  .missao {
    font-size: 16px;
  }

  .menu-principal {
    flex-direction: column;
    gap: 10px;
  }

  .cabecalho h1,
  .cabecalho h2 {
    font-size: 24px;
  }
}
