*{
    padding: 0px;
    margin: 0px;
    border: 0 solid;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img{
    max-width: 100%;
}

header{
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.barra-verde{ 
   background-color: rgb(0 137 56); 
   width: 100%; 
   height: .5rem; 
}

.menu{ 
    display: flex; 
    justify-content: space-between; 
    padding: 8px 309px 0 309px;
    align-items: center;
}

.logo{ /*Definindo o tamanho da logo*/
    width: 240.872px;
    height: 60px;
}

.nav{
    display: flex; 
    font-size: 1.05rem;
    letter-spacing: -0.5px;
    font-stretch: condensed;
    line-height: 1.75rem; /*Aumentando em 1.75x o espaçamento padrão entre as linhas*/
    gap: .25rem; /**/  
    align-items: center;  
    
}

.nav-a{
    color: black;
    margin-right: 1rem;
    margin-left: 1rem;
    text-decoration: none;
    letter-spacing: -0.5px;
    transform: scaleY(1.3);
    display: inline-block;
    font-weight: 600;
    height: 88px;
    display: flex;
    align-items: center;   
    cursor: pointer; 
}



.nav-aa{
    color: rgb(0 73 30);
    font-weight: 800;
}

.nav-a span {
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.nav-a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0; 
    height: 1px;
    width: 0;
    background-color: black;
    transition: width 0.25s ease;
}

.nav-a:hover span::after {
    width: 100%;
}

/* Barra verde para item ativo */
.nav-a.active {
    position: relative;
    z-index: 10;
}

.nav-a.active::before {
    content: "";
    position: absolute;
    top: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background-color: rgb(0 137 56);
    border-radius: 0 0 6px 6px;
}

/* Manter o hover effect mesmo no item ativo */
.nav-a.active:hover span::after {
    width: 100%;
}

main{
    padding-top: 100px;
    min-height: calc(100vh - 300px);
}

.carrosselSuper{
    position: relative;
    overflow: hidden;
    width: 100%;
  } 

  .carrossel {
    position: relative;
    height: 700px; 
  }
  
  .carrossel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    object-fit: cover;
    z-index: 0;
  }
  
  .carrossel img.ativa {
    opacity: 1;
    z-index: 1;
  }
  .carrossel-botao {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F3B60D;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 22px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carrossel-botao.esquerda {
    left: 60px;
  }
  
  .carrossel-botao.direita {
    right: 60px;
  }
  
  .bolinhas {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  
  .bolinha {
    width: 12px;
    height: 12px;
    background-color: #E5E5E5;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.1s ease;
  }
  
  .bolinha.ativa {
    background-color: #F3B60D;
}

.mouse {
    display: block;
    margin: 40px auto 0 auto;
    height: auto;
}

.container-fundoVerde {
    position: relative;
    width: 1240px;
    height: 540px;
    margin: 40px auto 0;
}
  
.fundoVerde {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1240px;
    height: 540px;
    border-radius: 40px;
}
  
.mao {
    position: absolute;   
    bottom: 25px;
    left: -333px;
    z-index: 2;
    width: 1000px; 
    height: auto;
}
  
.lado-direito {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    z-index: 3;
}

.carrossel2 {
    position: relative;
    width: 100%; 
    margin: 100px auto 0 auto; 
    overflow: hidden;
  }
  
  .carrossel2 img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .carrossel2 img.ativa {
    opacity: 1;
    position: relative;
  }
  
  .carrossel-botao {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F3B60D;
    color: black;
    border: none;
    cursor: pointer;
    font-size: 22px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carrossel2 .esquerda {
    left: 10px;
  }
  
  .carrossel2 .direita {
    right: 10px;
  }
  
  .bolinhas2 {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .bolinha2 {
    width: 12px;
    height: 12px;
    background: #E5E5E5;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .bolinha2.ativa {
    background: #F3B60D;
  }  
  
.footer{
    background-color: rgb(0 73 30);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.texto{
    margin: 36px 0 16px 0;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.5px;
    font-stretch: condensed;
    font-weight: 700;
}

.destaque{
    color: rgb(252 227 0);
}

.link, .link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: white; 
    transition: color 0.3s;
    font-size: 44px;
    text-decoration: none;
}
  
.link a:hover i {
    color: rgb(252, 227, 0);  
}

.opcoes, .opcoes2{
    display: flex;
    gap: 2rem;
}

.opcoes{
    margin-top: 3.5rem;
}

.opcoes2{
    margin-top: .5rem;
}

.opcoes a{
    color: white;
    letter-spacing: -0.5px;
    font-stretch: condensed;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.opcoes2 a{
    color: white;
    letter-spacing: -0.5px;
    font-stretch: condensed;
    font-weight: 500;
    text-decoration: none;
}

.opcoes a:hover{
    color: rgb(252, 227, 0); 
}

.opcoes2 a:hover{
    color: rgb(252, 227, 0); 
}

.final{
    color: rgb(189 189 189);
    letter-spacing: .05em;
    font-size: .75rem;
    line-height: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.tudao {
    background-image: url(imagens/fundo/textura.webp);
    background-repeat: no-repeat;
    background-size: contain;  
}

.tudo{
    max-width: 46rem;
    padding-top: 5rem;
    margin-left: 309px;
    margin-right: auto;
}

.titulo{
    color: rgb(0, 137, 56);
    letter-spacing: -1px;
    font-stretch: condensed;
    font-weight: 900;
    text-decoration: none;
    font-size: 3.75rem;
    line-height: 1rem;
}

.linha{
    background-color: rgb(0, 137, 56);
    width: 5rem;
    border-radius:9999px ;
    height: .25rem;
    display: block;
    margin-top: 2rem;
}

.textoC{
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1rem;
}

.textoC2{
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.dados{
    max-width: 36rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.text2{
    color: rgb(0 73 30);
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin-bottom: .75rem;
    display: block;
}

.input{
    box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 9px 0px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: rgb(245 245 245);
    border-color: rgb(226 226 226);
    border-width: 1px;
    border-radius: .5rem;
    width: 100%;
}

.caixas{
    margin-bottom: 1rem;
}

textarea.input{
    resize: none;
    min-height: 13rem;
}

.enviar{
    color: rgb(0 73 30);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-top: 4.5px;
    padding-bottom: 8.5px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: rgb(255 255 255);
    border-color: rgb(0 73 30);
    border-width: 2px;
    border-radius: 9999px;
    margin-top: 1.5rem;
    cursor: pointer;
}

.titulo2{
    color: rgb(0 137 56);
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    margin-top: 2rem;
}

.linha2{
    background-color: rgb(0, 137, 56);
    width: 5rem;
    border-radius:9999px ;
    height: .25rem;
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.principal{
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 6px 9px 0px #00000017;
    padding: 1rem 1.5rem;
    background-color: rgb(245 245 245);
    border-color: rgb(226 226 226);
    border-width: 1px;
    border-radius: .5rem;
    width: 100%;
    margin-bottom: -10px;
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.h6{
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: none;
    font-weight: 600;
}

.button{
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border: 2px solid rgb(0, 73, 30); /* borda verde escura */
    border-radius: 50%; /* forma circular */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bolder;
    font-size: 2rem;
    color: rgb(0, 73, 30); /* cor do + */
    box-sizing: border-box;
}

.conteudo {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
    padding: 0px 1.5rem;
    margin-bottom: 0;
    background-color: rgb(255 255 255);
    border-radius: .5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    font-size: 1rem;
    color: #333;
    border: none;
}

.conteudo.ativo {
    max-height: 500px; 
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgb(226 226 226);
    border-top: none;
}

.box{
    margin-bottom: 2rem;
}  

.max{
    width: 100%;
    min-height: 100vh;
}

.cont{
    padding-top: 2.75rem;
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
}
.conteudo2{
    max-width: 48rem;
}

.texto3{
    font-size: 3.5rem;
    line-height: 1;
    color: rgb(0 137 56);
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
}

.block{
    background-color: rgb(0 137 56);
    border-radius: 9999px;
    width: 5rem;
    height: .25rem;
    display: block;
    margin-top: .5rem;
}

.part{
    margin-bottom: 3rem;
}

.part h5{
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: rgb(0 73 30);
    font-weight: 700;
    margin-top: 2rem;
}

.part p{
    color: rgb(33 33 33);
    font-size: 1.1rem;
    line-height: 1.5rem;
    text-align: justify;
    margin-top: .5rem;
}

.part img{
    border-radius: 40px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    height: auto;
    display: block;
}

.carrossel4{
    margin-top: 0;
}

.max{
    width: 100%;
    min-height: 100vh;
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
}

.minn a{
    color: rgb(0 137 56);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding-top: 2rem;
    gap: .25rem;
    align-items: center;
    margin-left: 1rem;
}

.cont2{
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 56rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}


.textCenter{
    text-align: center;
}

.textCenter h2{
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}

.textCenter h5{
    color: rgb(35 31 32);
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: left;
    margin-bottom: 1rem;
}

.cont2 p{
    margin-bottom: 2rem;
}

.cont2 li{
    padding-left: 1rem;
    margin-bottom: 1rem;
    list-style-position: inside;
}

.text1{
    font-weight: 600;
}

.menuCardapio { 
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: sticky;
    top: 95px;
    background: white; 
    z-index: 95; 
    padding: 10px 0;
}

.itemMenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: rgb(189, 189, 189);
    transition: color 0.3s;
    cursor: pointer;
    min-width: 149.75px;
    max-width: 149.75px;
}

.itemMenu:hover {
    color: green;
}

.itemMenu img {
    width: 40px;
    height: 40px;
    filter: grayscale(100%) brightness(0.75); /* cinza */
    transition: filter 0.3s;
}

.itemMenu:hover img {
    filter: none; /* cor original */
}

.itemMenu span {
    margin-top: .75rem;
    font-size: 14px;
    font-weight: 600;
}

.pagina {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1288px;
    margin-top: 6rem;
    margin-left: auto;
    margin-right: auto;
}
  
.menuLateral {
    grid-column: span 2;
    max-width: 14rem;
}
  
.menuLateral ol {
    list-style: none;
}
  
.menuLateral li {
    background-color: #ddd;
    margin-bottom: 10px;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 1rem;
    padding-right: .5rem;
    cursor: pointer;
    border-radius: 99px;
    display: flex;            /* coloca o texto e a seta na mesma linha */
    align-items: center;      /* alinha verticalmente */
    justify-content: space-between;
}
  
.menuLateral li.active {
    background-color: rgb(0 137 56);
    color: white;
    font-weight: 700;
}
  
.produtosMenu {
    grid-column: span 10;
    margin-left: 30px;
}
  
.produtosMenu h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: rgb(0 137 56);
}
  
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 2.75rem;
    cursor: pointer;
}
  
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgb(226 226 226 );
    border-radius: 32px;
    text-align: center;
    padding: 10px;
    max-width: 18rem;
    transition:background-color 0.1s ease;
}

.card:hover {
    background-color: rgb(0 137 56);
}

.card .lupa {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    opacity: 0;
    transition: opacity 0.1s ease;
    pointer-events: none;
}
.card:hover .lupa {
    opacity: 1;
}


.card .lupa svg {
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.card img {
    max-height: 304px;
    border-radius: 8px;
    border-radius: 32px;    
}
  
.card p {
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
    font-size: 1.2rem;
    padding: 10px;
} 

.setas {
    justify-content: space-between;
    display: flex;           
    align-items: center; 
    gap: 10px;
    margin-bottom: 2.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.setas h1 {
    margin: 0;
    font-size: 3rem;
}   
.tamanho1 {
    font-size: 17px;
    text-align: center;
    font-weight: 500;
}

.def1 {
    text-decoration: underline;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
  }
  
  th, td {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
    vertical-align: top;
  }
  
  th {
    background-color: #f2f2f2;
    font-weight: bold;
    
  }

  .info-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
  }
  
  .info-col {
    flex: 1;
    min-width: 200px;
    list-style-type: disc;
    padding-left: 16px;
    margin: 0;
  }
  
  .info-col li {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
  }
  
  .sensiveis {
    list-style-type: disc;
    padding-left: 16px;
    margin-top: 5px;
  }
  
  .sensiveis li {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
  }

  .center {
    text-align: center;
  }

.mx{
    max-width: 1288px;
    margin-left: auto;
    margin-right: auto;
}

.mx a{
    color: rgb(0 137 56);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-top: 2rem;
    gap: .25rem;
    align-items: center;
    display: flex;
}


.princ{
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 56rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.princ h2{
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
}

.princ h4{
    color: rgba(64, 64, 64, 0.62);
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: left;
    margin-bottom: 1rem;
}

.princ strong{
    margin-top: .75rem;
    margin-bottom: 1.75rem;
    font-weight: bolder;
}

.center2{
    text-align: center;
    display: block;
}

.princ ul{
    margin-top: 1rem;
    list-style-position: inside;
    padding-left: 1rem;
}

.botton{
    padding-top: 3rem;
    padding-bottom: 3rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
}

.botton button{
    color: rgb(255 255 255);
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    padding: 1rem 9rem;
    background-color: rgb(0 137 56);
    border-radius: .5rem;
    cursor: pointer;
}