@font-face {
  font-family: Regular;
  src: url(/assets/fonts/corbel.ttf) format('truetype');
  font-display: swap;
}

:root {
    --verde-purigilo: #55b800;
    --branco: #ffffff;
    --cinza-escuro: #444;
    --preto: #000000;
}


* {
  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;
}

/* efeito leve de sombra opcional */

.container {
  max-width: 65.625rem;
  width: 90%;
  margin: auto;
}
div.linha-copy{
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: center; 
    justify-content: center;
}
.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;
}

.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 0rem 0rem 125rem 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);
}
div.modo p.paragrafo{
    padding: 0rem 12.5rem;
    color: var(--preto);
      font-size: 1.563rem;
}

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;
}

div.botoes-prods{
  display: flex;
  gap: 1.25rem;
}

.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;
}

.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;
}

section.apresentacao-detalhes-section{
 background: linear-gradient(90deg, #e8f5e9 60%, #f4f4f4 100%); 
 padding: 3rem 0rem;
}


button.btn-tamanho, button.btn-fragrancia {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
       
.superficie-img, .caracteristica-img {
  transition: none;
}

.superficies-imagens .superficie-item:nth-child(-n+4) .superficie-img {
  transition: transform 0.25s cubic-bezier(.4,2,.6,1);
}

.superficies-imagens .superficie-item:nth-child(-n+4):hover .superficie-img {
  transform: scale(1.08);
  z-index: 2;
}
       
.superficies-aplicaveis-section {
  margin: 1.25rem 0rem;
  padding: 0rem 0.625rem;
}
    
.superficies-titulo, .caracteristicas-titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.125rem;
  color: #55b800;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-style: italic;
}
    
.superficies-imagens, .caracteristicas-imagens {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
    
.superficie-item, .caracteristica-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 15.625rem;
}

.superficie-img, .caracteristica-img {
  width: 15.625rem;
  height: 15.625rem;
  object-fit: contain;
  margin-bottom: 0.625rem;
}

div.modo{
  display: flex; 
  justify-content: center; 
  align-items: center; 
  flex-direction: column; 
  text-align: center; 
  margin-bottom: 2rem;
}

iframe{
  border:none;
  width:100%;
  height:62.5rem;
}

.modal-fds {
  display:none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.5);
}

.modal-fds-content {
  background: #fff;
  margin: 5% auto;
  padding: 1.25rem;
  border-radius: 0.5rem;
  width: 90%;
  position: relative;
}

.modal-fds-close-btn {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}

.modal-fds-close-btn:hover {
  background: #c0392b;
}

div.apresentacao-flex{
  display: flex;  
  flex-wrap: wrap; 
  align-items: center; 
  justify-content: center; 
  gap: 3rem;
  width: 100%;
}

div.apresentacao-flex div.apresentacao-galeria{
  width: 50%;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;   
}



div.apresentacao-galeria div{
    width:100%;
  padding: 2rem 1.5rem; 
  display: flex;
  flex-direction: row; 
  align-items: center; 
  position: relative;
}

div.apresentacao-detalhes h1{
  color: var(--verde-purigilo); 
  font-size: 2.1rem; 
  margin-bottom: 0rem;
}

div.apresentacao-detalhes p{
  font-size: 1.563rem;
  color: var(--preto);
}

div.apresentacao-sustentabilidade-icones{
  display: flex; 
  gap: 6.25rem; 
  margin: 1.125rem 0rem;
  justify-content: center;
  align-items: center;
}

div.apresentacao-sustentabilidade-icones div{
  display: flex; 
  flex-direction: column; 
  align-items: center;
}

form#opcoes-produto div.apresentacao-opcoes div.opcao-grupo span{
  font-weight:bold; 
  margin-right:0.5rem;
}

ul.apresentacao-lista{
  margin-bottom: 1.125rem;
}
