@font-face {
  font-family: 'BreeSerif';
  src: url('fontes/BreeSerif-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: BreeSerif, sans-serif;
}

body {
background-size: cover; 
background-position: center;  
background-repeat: no-repeat; 
min-height: 100vh;            
}
main{
  flex:1;
}

header {
display: flex;
justify-content: space-between;
align-items: center;
background: #d7ede3;
padding: 20px 40px;
transition: 0.3s;
position: sticky;
font-size: 18px;
top: 0;
z-index: 1000;
}

header .logo {
display: flex;
align-items: center;
gap: 10px;
}

header .logo img {
height: 80px;
width: auto;
}

header nav {
display: flex;
align-items: center;
}

header nav a {
margin: 0 15px;
text-decoration: none;
font-weight: bold;
color: #0a4d1c;
transition: color 0.3s;
display: flex;
align-items: center;
gap: 5px;
}

header nav a:hover {
color: #1e9b50;
}



main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

main h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #196319;
}

main p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
}
@font-face {
  font-family: 'BreeSerif';
  src: url('fontes/BreeSerif-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: BreeSerif, sans-serif;
}

body {
  background-size: cover; 
  background-position: center;  
  background-repeat: no-repeat; 
  min-height: 100vh;
}

main {
  flex: 1;
}

/* HEADER PADRÃO */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d7ede3;
  padding: 20px 40px;
  font-size: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  height: 80px;
  width: auto;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  color: #0a4d1c;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

header nav a:hover {
  color: #1e9b50;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #0a4d1c;
  border-radius: 3px;
}

main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

main h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #196319;
}

main p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  color: #555;
}
@media (max-width: 768px) {
  header {
    display: flex;
    flex-wrap: wrap;        /* Permite quebrar linha se necessário */
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px;
  }

  header .logo {
    flex: 0 0 auto;         /* Mantém a logo fixa */
  }

  header .logo img {
    height: 65px;
  }

  header nav {
    display: flex;
    flex-wrap: wrap;        /* Caso os itens sejam muitos */
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  header nav a {
    font-size: 15px;
    padding: 5px 8px;       /* Dá mais área de toque */
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .menu-toggle {
    display: none !important;
  }
}
