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

    body {
      font-family: Arial, sans-serif;
    }

    nav {
      background-color: #7abe69;
      padding: 10px 20px;
      position: relative;
    }

    .menu-toggle {
      display: none;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 25px;
      justify-content: space-between;
    }

    .hamburger span {
      height: 4px;
      background: #026415;
      border-radius: 2px;
    }

    ul.menu {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    ul.menu li a {
      color: #000;
      text-decoration: none;
    }

    h1 {
      align-items: center;
      text-align: center;
      color: #032210;
    }

    /* Responsivo */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      ul.menu {
        display: none;
        flex-direction: column;
        background: #ebcaf1;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
      }

      .menu-toggle:checked + .hamburger + ul.menu {
        display: flex;
      }
    }

    .cabecalho {
    background-image: url('img/planta.jpeg'); /* caminho da imagem */
    background-size: cover; /* cobre todo o espaço do header */
    background-position: center;
    height: 250px; /* ou o valor que desejar */
    display: flex;
    align-items: center;
    justify-content: center;
}

.titulo {
    color:white;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* sombra para destacar */
}

.conteudo-duplo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap; /* para funcionar bem no celular */
}

.imagem-lado img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 400px;
}

.texto-lado {
  flex: 1;
  min-width: 280px;
}

.texto-lado h2 {
  font-size: 32px;
  color: #2c5f2d;
  margin-bottom: 20px;
  text-align: left;
}

.texto-lado p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}


.bloco-alimentos {
  background-color: #ffffff;
  padding: 50px 30px;
  max-width: 1000px;
  margin: 40px auto;
  border-left: 8px solid #4caf50; /* destaque com verde */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bloco-alimentos h2 {
  font-size: 30px;
  color: #2e7d32;
  margin-bottom: 25px;
  font-weight: bold;
  text-align: left;
}

.bloco-alimentos p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
  margin-bottom: 20px;
}

.paragrafo-com-imagem {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.paragrafo-com-imagem img {
  width: 300px;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.paragrafo-com-imagem p {
  flex: 1;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}

.secao-saude {
  background-color: #bce9bc;
  padding: 40px 20px;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.384);
}

.secao-saude h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 30px;
  font-size: 26px;
}

.conteudo-saude {
  background-color: #e9fff0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(41, 40, 40, 0.247);
  display: flex;
  gap: 20px;
  align-items: center;
}

.imagem-saude {
  flex: 1 1 300px; /* Cresce e encolhe com mínimo de 300px */
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 2px 2px 8px  #eaf5ea;
}

.texto-saude {
  flex: 2 1 400px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.cultivo-section {
  background-color: #f0fdf4;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
}

.cultivo-section h2 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 20px;
}

.cultivo-container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cultivo-imagens {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.cultivo-imagens img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.cultivo-lista {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cultivo-lista li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
}

.nav-botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  background-color: #eaf5ea;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-botoes button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.nav-botoes button:hover {
  background-color: #388e3c;
}

.rodape {
  background-color: #2e7d32; /* Verde escuro suave */
  color: white;
  text-align: center;
  padding: 20px 0;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  margin-top: 40px;
  border-top: 3px solid #81c784; /* Verde claro */
}

.rodape a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}
.rodape a:hover {
  color: #c8e6c9;
}

@media (max-width: 768px) {
  .conteudo-saude {
    flex-direction: column;
    align-items: center;
  }

  .imagem-saude, .texto-saude {
    max-width: 100%;
  }
}