* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-image: url(/img/fundo.png);
  background-size: cover;
  color: #3f3f3f;
  margin: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #4a6040;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.logo {
  font-weight: bold;
  color: #ffffff;
  font-size: 1.2rem;
}

.navbar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #c4ebb1;
}

.navbar a.active {
  color: #c4ebb1;
}

.sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: center;
  padding: 3rem;
  gap: 2rem;
}

.sobre img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.texto h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4a6040;
}
