:root {
  --laranja: #ff7b00; /* Laranja vivo, remete à polpa do mamão */
  --verde: #2e8b57;   /* Verde médio, remete à casca */
  --branco: #ffffff;
  --cinza-claro: #f9f9f9;
}





.navbar {
  position: fixed;       /* fixa no topo */
  top: 0;                /* posição no topo */
  left: 0;
  width: 100%;           /* ocupa toda a largura */
  background-color: var(--laranja); /* ou a cor que você definiu */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;         /* garante que fique acima dos outros elementos */
}






body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--verde);
  background-color: var(--cinza-claro);
   padding-top: 80px; /* altura aproximada do menu */
}

/* Barra superior */
.top-bar {
  background-color: var(--verde);
  color: var(--branco);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  font-size: 0.9em;
}

.translate-btn {
  background-color: var(--laranja);
  border: none;
  padding: 6px 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  color: var(--branco);
}

/* Navbar principal */
.navbar {
  background-color: var(--laranja);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo img {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.menu li a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s;
}

.menu li a:hover {
  color: var(--verde);
}

.menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--verde);
}




/* Banner Mamão */




.banner {
  position: relative;
  background: url('img/banner.webp') center/cover no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Degradê sobre a imagem */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 120, 0, 0.9), rgba(255, 120, 0, 0.6), rgba(46, 139, 87, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.2em;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #ffcc00;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #2e8b57;
  color: #fff;
}










/* Parte dois */


.referencia-nv {
  background-color: #fdf8ee;
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
}

.referencia-nv .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.referencia-nv .texto {
  flex: 1;
}

.referencia-nv h3 {
  color: #102B08;
  font-style: italic;
  margin-bottom: 10px;
}

.referencia-nv h2 {
  color: #102B08;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.referencia-nv p {
  color: #333;
  margin-bottom: 20px;
}

.referencia-nv ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.referencia-nv li {
  margin-bottom: 10px;
}

.referencia-nv .botao {
  background-color: #136906;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.referencia-nv .imagem img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}














.produtos {
  background: #f9f9f9;
  padding: 40px;
  font-family: Arial, sans-serif;
}

.conteudo {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.produtos h2 {
  color: #333;
  font-size: 28px;
  margin-bottom: 10px;
}

.produtos h3 {
  color: #ff6600;
  font-size: 22px;
  margin-bottom: 20px;
}

.grid-frutas {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.fruta {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 280px; /* padroniza largura */
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.fruta img {
  width: 100%;
  height: 180px; /* padroniza altura */
  object-fit: cover; /* garante proporção sem distorcer */
  border-radius: 6px;
  margin-bottom: 15px;
}

.fruta h4 {
  color: #006600;
  margin-bottom: 10px;
}

.fruta ul {
  list-style: disc;
  padding-left: 20px;
}

.cta {
  margin-top: 40px;
}

.botao {
  background: #ff6600;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.botao:hover {
  background: #cc5200;
}









.banner-onda {
  position: relative;
  background: url('img/0001.webp') center/cover no-repeat fixed;
  /* 'fixed' mantém a imagem contínua ao rolar */
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Degradê sobre a imagem 
.banner-onda::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 120, 0, 0.8), rgba(46, 139, 87, 0.6));
  z-index: 1;
}*/

.banner-texto {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.banner-texto h2 {
  font-size: 2.5em;
  font-weight: 700;
}

.banner-texto p {
  font-size: 1.2em;
}

/* Ondas */
.onda {
  position: absolute;
  width: 100vw;
  height: 150px;
  display: block;
  z-index: 3;
}

.onda-top {
  top: 0;
}

.onda-bottom {
  bottom: 0;
}










.secao-producao {
  background-color: #fffaf0;
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Bloco lado a lado */
.bloco {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

/* Imagem */
.imagem img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Texto */
.texto {
  flex: 1; /* ocupa espaço proporcional */
  max-width: 500px;
  text-align: left; /* alinhado à esquerda */
}

.texto h5 {
  color: #2e8b57;
  font-size: 0.9em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.texto h2 {
  color: #bd5d04;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
}

.texto p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Botão */
.botao {
  display: inline-block;
  background-color: #bd5d04;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.botao:hover {
  background-color: #2e8b57;
}

/* Responsividade */
@media (max-width: 768px) {
  .bloco {
    flex-direction: column;
    text-align: center;
  }

  .texto {
    text-align: center;
  }
}












.secao-responsabilidade {
  background: url('img/fundo.png') center/cover no-repeat;
  /* 'center/cover' mantém a imagem proporcional e centralizada */
height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.container {
  width: 60%;
  max-width: 1200px;
  margin: 0 auto;
}

.bloco {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Imagem e legenda */
.imagem {
  flex: 1;
  max-width: 1000px;
  text-align: left;
}

.imagem img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.legenda {
  font-size: 0.9em;
  color: #333;
  margin-top: 10px;
  line-height: 1.4;
}

/* Texto */
.texto {
  flex: 1.5;
  max-width: 600px;
  text-align: left;
}

.texto h5 {
  color: #ca6100;
  font-size: 0.9em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.texto h2 {
  color: #ca6100;
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
}

.texto p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.texto h3 {
  color: #ca6100;
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.texto ul {
  list-style: disc;
  margin-left: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Botão */
.botao {
  display: inline-block;
  background-color: #ca6100;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.botao:hover {
  background-color: #2e8b57;
}

/* Responsividade */
@media (max-width: 768px) {
  .bloco {
    flex-direction: column;
    text-align: center;
  }

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

  .texto ul {
    list-style: none;
    padding: 0;
  }
}











.rodape {
  position: relative;
  background-color: #136906;
  color: #fff;
  padding: 80px 0 40px;
  overflow: hidden;
}

/* Onda superior */
.onda-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120px;
  display: block;
  z-index: 2;
}

/* Container principal */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

/* Coluna esquerda */
.coluna-esquerda {
  flex: 1;
  max-width: 400px;
}

.coluna-esquerda h2 span {
  color: #ffcc00;
  font-weight: 700;
  font-size: 1.8em;
}

.coluna-esquerda h3 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
}

.coluna-esquerda p {
  font-size: 0.9em;
  color: #fff;
  line-height: 1.5;
}

/* Coluna direita */
.coluna-direita {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.grupo-contatos {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato h4 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.contato p {
  font-size: 0.9em;
  color: #fff;
}

.contato a {
  color: #fff;
  text-decoration: none;
}

.contato a:hover {
  color: #ffcc00;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .coluna-direita {
    flex-direction: column;
    align-items: center;
  }
}


