nav {
    width: 100%;
    height: 96px;
    top: 0px;
    left: 0px;
    display: grid;
    position: fixed;
    background-color: var(--theme-light);
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 1px 4px #b0929226;
    z-index: 9999;
}
/* LOGO DIV */
nav .logo-div {
    grid-column: 1;
    display: flex;
    align-items: center;
    padding: 0 5px 0 20px;
}
nav .logo-div img {
    width: 202px;
    height: 49px;
}
/* BOTOES */
nav .buttons {
    padding: 0 20px 0 5px;
    grid-column: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    /* width: 100%; */
}
nav .buttons button, nav .buttons li {    
    font-size: 16px;
}
nav .buttons button:first-child, nav .buttons li:first-child {
    margin-left: auto;
}
nav .buttons button:last-child, nav .buttons li:last-child {
    margin-right: auto;
}
.sustentabilidade:hover {
    color: var(--text-main);
}
/* MENU */
nav .menu {
    display: none;
    grid-column: 2;
    margin: 0 40px 0 0;
}
nav .menu img {
    cursor: pointer;
}
/* MENU ITENS */
nav .menu-items {
    display: none;
}
.nav-container {
    display: none;
    grid-column: 2;
    position: relative;
    height: 50px;
    top: 15px;
    margin: 0 40px 0 0;
}
.nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 40px;
    margin: 0;
    right: 0;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
    margin-top: -4px;
}
.nav-container .hamburger-lines {
    display: block;
    height: 20px;
    width: 30px;
    position: absolute;
    /* top: 17px;
    left: 20px; */
    right: 0;
    margin: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: -4px;
}
.nav-container .hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}
.nav-container .hamburger-lines .line1 {
  transform-origin: 12% 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;
}
nav .nav-container a {
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
}
.nav-container li {
    list-style: none;
    height: 30px;
    width: fit-content;
}
.nav-container li>a {
    padding: 0;
}
nav .menu-items {
    box-shadow: 1px 1px 1px #92a1b026;
    background-color: var(--theme-light);
    border-top: none;
    border-radius: 0 0 0 10px;
    /* height: 100vh; */
    /* width: 100vw; */
    transform: translate(0%);
    display: flex;
    flex-direction: column;
    align-items:center;
    margin: 62.5px 0 0 40px;
    padding: 30px 50px;
    transition: transform 0.5s ease-in-out;
    text-align: end;
    top: 0;
    position: absolute;
    gap: 1rem;
    width: 230px;
}
.nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translate(-94%);
}
.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;
}