* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.navbar {
  background-color: #21531c;
  padding: 10px 0;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

.navbar li a:hover {
  color: #ffdd57;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #21531c;
}

#programa ul {
  list-style: none;
  padding: 0;
}

#programa li {
  font-size: 1.2em;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

#sobre p {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

#parceiros .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#parceiros img {
  max-width: 90%;
  border-radius: 10px;
  margin-top: 20px;
}

footer {
  background-color: #222;
  color: #eee;
  text-align: center;
  padding: 15px 10px;
  margin-top: 40px;
}