@font-face {
  font-family: Regular;
  src: url(/assets/fonts/corbel.ttf);
  font-display: swap;
}

:root {
  --verde-purigilo: #55b800;
  --branco: #ffffff;
  --preto: #000000;
  --laranja-forte: #FE7900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Regular;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

div.mobile-menu{
  position: fixed; 
  top: 0; 
  left: 0;
  height: auto;
  width: 100%; 
  z-index: 1000;
}

.container {
  max-width: 65.625rem;
  width: 90%;
  margin: auto;
}

.footer-link {
    color: #55b800;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    color: #1f5c36;
}
h2.titulos{
  color: var(--laranja-forte);
  font-size: 2.5rem;
}
.navbar {
  width: 100%;
  box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.875rem;
}

.navbar .menu-items {
  display: flex;
}

.navbar .nav-container li {
  list-style: none;
}

.navbar .nav-container a {
  text-decoration: none;
  color: #0e2431;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.7rem;
}

.navbar .nav-container a:hover{
  font-weight: bolder;
}

.nav-container {
  display: block;
  position: relative;
  height: 3.75rem;
}

.nav-container .checkbox {
  position: absolute;
  display: block;
  height: 2rem;
  width: 2rem;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}

.nav-container .hamburger-lines {
  display: block;
  height: 1.625rem  ;
  width: 2rem;
  position: absolute;
  top: 1.063rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-container .hamburger-lines .line {
  display: block;
  height: 0.25rem;
  width: 100%;
  border-radius: 0.625rem;
  background: #0e2431;
}

.nav-container .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.nav-container .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-container .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

.navbar .menu-items {
  padding-top: 0.625rem;
  box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
  background-color: var(--branco);
  height: 100vh;
  width: 100%;
  transform: translate(-150%);
  display: flex;
  flex-direction: column;
  margin-left: -2.5rem;
  padding-left: 3.125rem;
  transition: transform 0.5s ease-in-out;
  text-align: center;
}
.navbar .menu-items img{
  width: 6.25rem;
  align-self: center;
  justify-self: center;
  height: 6.25rem;
  margin-bottom: 1.25rem;
}

.navbar .menu-items li {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  top: 0.313rem;
  right: 0.938rem;
  font-size: 1.2rem;
  color: #0e2431;
}

.nav-container input[type="checkbox"]:checked ~ .menu-items {
  transform: translateX(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}

.nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}

.nav-container input[type="checkbox"]:checked ~ .logo{
  display: none;
}

nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  background: var(--branco);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

nav div.navbar{
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 5rem;
  background: var(--branco);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

nav div.wrapper {
  position: relative;
  max-width: 100%;
  padding: 0rem 0%;
  height: 7.5rem;
  line-height: 4.375rem;
  padding: 0rem 3.125rem 0rem 3.125rem;
  margin: auto;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 6.25rem;
  justify-content: space-between ;
}

.logo {
  display: flex;
  align-items: center;
  gap: 6.25rem;
  justify-content: center;
}

.wrapper .nav-links {
  display: inline-flex;
}

.nav-links li {
  list-style: none;
}

.nav-links li a {
  color: var(--verde-purigilo);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.563rem 0.938rem;
  border-radius: 0.313rem;
  transition: all 0.3s ease;
} 

.nav-links li a:hover {
  background: rgba(3, 3, 3, 0.123);
}

.nav-links .mobile-item {
  display: none;
}

.nav-links .drop-menu {
  position: absolute;
  background: var(--branco);
  width: 15.625rem;
  line-height: 2.813rem;
  top: 5.313rem;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 4.375rem;
  opacity: 1;
  visibility: visible;
}

.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0rem 0rem 0rem 0.938rem;
  font-weight: 400;
  border-radius: 0rem;
}

.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0rem 2.188rem;
  top: 5.313rem;
  opacity: 0;
  visibility: hidden;
}

.mega-box .content {
  background: var(--preto);
  padding: 1.563rem 1.25rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
  width: calc(25% - 1.875rem);
  line-height: 2.813rem;
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content .row header {
  color: var(--branco);
  font-size: 1.25rem;
  font-weight: 500;
}

.content .row .mega-links {
  margin-left: -2.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
  padding: 0rem 1.25rem;
}

.row .mega-links li a {
  padding: 0rem;
  padding: 0rem 1.25rem;
  color: var(--branco);
  font-size: 1.125rem;
  display: block;
}

.row .mega-links li a:hover {
  color: var(--branco);
}

.wrapper .btn {
  color: var(--branco);
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
}

.wrapper .btn.close-btn {
  position: absolute;
  right: 1.875rem;
  top: 0.625rem;
}

nav input {
  display: none;
}

div.row-div-quem-somos{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.125rem;
}

div.descricao-quem-somos{
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5% 2%;
  text-align: justify;
}

section.materia-prima{
  text-align: center;
  background-image: url('/assets/nova/Texturadefundo.jpg'); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.materia-prima {
  position: relative;
}

.containerprima {
  position: relative;
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 80vh; 
}

.tabela-materias {
  position: absolute;
  top: 40%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  z-index: 2;
  background-color: rgb(255, 255, 255);
  padding: 0.938rem;
  color: var(--preto);
  border-collapse: separate;
  border-spacing: 0.125rem;
  min-width: 46.875rem; 
  background: #f8fcfb;
  border-radius: 1.125rem;
  overflow: hidden;
  margin: 4.375rem 0rem;
}

.background-image {
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;   
}


section.materia-prima p.sub-titulo-materia-prima {
  font-size: 2.5rem;
  color: var(--preto);
  margin-bottom: -6.25rem;
}


section.introducao-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-image: url('/assets/nova/Texturadefundo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;  
  position: relative  
}

section.introducao-section img.esquerda{
  position: absolute; 
  top: -7.5rem; 
  left: -7.5rem; 
  height: 31.25rem; 
  object-fit: cover
}

section.introducao-section img.direita{
 position: absolute; 
 top: 30%; 
 right: -12.5rem;  
 height: 31.25rem; 
 object-fit: cover;
}

div.introducao-desc{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  height: 80vh;
  overflow: hidden;
}
 
div#introducao{  
  border-radius: 0.938rem;
  padding: 1% 1%;   
  width: 80%; 
  font-size: 1.875rem;
  text-align: center;
  color: var(--preto);
}


div.div-introducao-caracts{
  background-image: url(/assets/nova/BannerFolhas.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;     
  height: 20vh;
  color: var(--branco);
  width: 100%;
  font-size: 2.5rem;
  justify-self: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

div.div-introducao-caracts p{
  width: 80%;
  text-align: center;
  align-self: center;
  justify-self: center;
}

section.quem-somos{
  width: 100%;
  height: 50vh;
  background-image: url('/assets/nova/Texturadefundo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;    
  position:relative; 
}

section.quem-somos div.row-quem img.esquerda{
  position: absolute; 
  top: -9.375rem; 
  left: -6.875rem; 
  height: 31.25rem; 
  object-fit: cover;
}

section.quem-somos div.row-quem img.direita{
  position: absolute; 
  bottom: -6.25rem; 
  right: -8.125rem;  
  height: 31.25rem; 
  object-fit: cover;
}

section.futuro-limpo{
  width:100%; 
  padding:0; 
  margin:0;
}

div.row-futuro-limpo{
 display:flex; 
 flex-wrap:wrap; 
 width:100%; 
 padding:0; 
 margin:0;
}

div.row-futuro-limpo div.img-futuro-limpo{
  flex:0 0 40%; 
  max-width:40%; 
  min-width: 15rem; 
  height:auto; 
  margin:0; 
  padding:0;
}

section.categorias-produtos{
  width: 100%; 
  padding: 4rem 0rem; 
  background-image: url('/assets/nova/Texturadefundo.jpg'); 
  background-repeat: no-repeat; 
  background-size: cover; 
  background-position: center;
}

div.row-futuro-limpo div.img-futuro-limpo img{
  width:100%; 
  height:100%; 
  object-fit:cover; 
  display:block; 
  border-radius:0;
}

div.desc-futuro-limpo{
  flex:1 1 60%; 
  max-width:60%; 
  min-width: 16.25rem; 
  display:flex; 
  flex-direction:column; 
  justify-content:center; 
  background: var(--branco); 
  margin:0; 
  padding:2.5rem 10% 2.5rem 2.5rem;
}

div.desc-futuro-limpo p{
  font-size: 1.875rem; 
  color: var(--preto);
}

div.row-quem{
  padding: 3% 10%;
  display: flex; 
  align-items: center; 
  text-align: center;
  justify-content: center; 
  flex-wrap: wrap;
  position: relative;
}

div.row-quem p{
font-size: 1.875rem; 
color: var(--preto); 
margin-bottom: 1.125rem;
}

div.div-produtos{
  background-image: url(/assets/arvoreJPEG.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;     
  height: 20vh;
  color: var(--branco);
  width: 100%;
  font-size: 2.5rem;
  margin-top: -3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

div.div-produtos p{
  width: 60%;
  padding-left: 5%;
  font-weight: 300;
}

section.caracteristicas-puri-nova{
  height: 60vh;
  padding: 4rem 0rem; 
  background-image: url('/assets/nova/Texturadefundo.jpg'); 
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

div.div-caracteristias{
  max-width: 81.25rem; 
  margin: 0 auto; 
  text-align: center; 
  margin-top: -4.375rem;
}


div.div-caracteristias p{
  font-size: 2.5rem; 
  color: var(--preto); 
  margin-bottom: 2.5rem;   
  margin-left: auto; 
  margin-right: auto;
}

div.div-icones-puri{
  display: flex; 
  justify-content: center; 
  gap: 2.25rem;
}

div.caracteristica-card{
  padding: 2rem 1.25rem 1.5rem 1.25rem; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  transition: transform 0.2s;
}
div.caracteristica-card img{
  height: 100%;
  width: 100%;
}

div.linha-copy{
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: center; 
    justify-content: center;
}

.rodape {
  position: relative; 
  z-index: 2;
  padding: 2% 5%;
  display: flex;
  background-color: var(--branco);
  color: var(--preto);
  align-items: center;
  justify-content: space-between;
}

footer.rodape img.img-rodape{
  position: absolute;
  z-index: 1; 
  bottom: 0rem; 
  right: -7.5rem;  
  height: 18.75rem; 
  object-fit: cover;
}

.div-rodape {
  width: 12.5rem;
  position: relative; 
  z-index: 2;
}

.icon-fixed {
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
}

.desktop-menu {
  display: none;
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1000;
}

.tabela-materias th,
.tabela-materias td {
  text-align: center; /* centraliza todo o conteúdo */
}

.tabela-materias th {
  background-color: var(--verde-purigilo);
  color: var(--branco);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.25rem;
  border: none;
  letter-spacing: 0.063rem;
}

.tabela-materias td {
  background: #b9ec8d;
  color: #242526;
  font-size: 1.05rem;
  padding: 1.125rem 1.25rem;
  transition: background 0.2s;
}

.tabela-materias tr:last-child td {
  border-bottom: none;
}

.tabela-materias tr:hover td {
  background: var(--verde-purigilo);
}

div.row-produtos{
  margin-top: 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}

div.row-produtos img{ 
  position: relative;
  z-index: 9;  
  width: 100%;
  height: auto;
  max-width: 12.5rem;
  border-radius: 0.625rem;
  transition: transform 0.3s ease;
}

a img.produto-animado {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1);
}

a img.produto-animado:hover {
  transform: scale(1.08);
  z-index: 9;
}

.animar-entrada {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 1s cubic-bezier(.4,0,.2,1), transform 1s cubic-bezier(.4,0,.2,1);
}
.animar-entrada.animada {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.icone-animado {
  opacity: 0;
  transform: translateX(-60px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.icone-animado.animada {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.produto-animado {
  opacity: 0;
  transform: translateX(-80px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.produto-animado.animada {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.mobile-menu {
  display: block;
}

.menu-spacer {
  height: 5rem;
}
