/* Reset e estilos globais */
* {
    margin: 0;
    box-sizing: border-box;
    transition: 0.6s;
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}

body {
    display: grid;
    height: 120vh;
    grid-template-columns: 90px 1fr;
}

.naveg {
    display: grid;
    grid-template-rows: 90px 1fr;
}

.barras {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #ffffff;
    height: 35%;
}

a {
    text-decoration: none;
}

svg {
    background-color: white;
}

.svg1 {
    background-color: black;
}

.menu {
    position: fixed;
    width: 11.5vh;
    height: 100vh;
    background-color: white;
    display: inline-grid;
    grid-template-rows: 39.5vh 10vh 10vh 10vh;
    justify-items: center;
}

.openMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 11vh;
    width: 11.5vh;
    cursor: pointer;
}

.menuAberto {
    position: fixed;
    top: 0;
    width: 0vh;
    height: 100%;
    transition: 0.6s;
    background-color: white;
    overflow: hidden;
    z-index: 99;
}

.menu00 {
    position: fixed;
    left: 0;
    z-index: 100;
    height: 11.5vh;
    width: 11vh;
    position: absolute;
    cursor: pointer;
    opacity: 0;
}

.menu00:checked~.menuAberto {
    position: fixed;
    top: 0;
    width: 35vh;
    height: 100%;
    transition: 0.6s;
}

.sairMenu {
    width: 11.2vh;
    height: 11vh;
    background-color: black;
}

.tulenMenu {
    position: absolute;
    top: 0;
    right: 0;
    background-color: blue;
    width: 24vh;
    height: 11vh;
    font-family: "Montserrat", sans-serif;
    color: white;
    font-size: 30px;
    font-weight: 700;
    padding-top: 3vh;
    padding-left: 6vh;
}

.listaMenu {
    display: flex;
    flex-direction: column;
    list-style: none;
    background-color: white;
    margin-top: 20vh;
    margin-right: 6vh;
}

.listaMenu li {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    background-color: white;
    margin: 0;
    padding-top: 5vh;
    font-size: 35px;
    font-weight: 600;
    color: #b2b2b2;
}

.li1:hover{
    color: blue;
    transition: 0.4s;
}

.li2:hover{
    color: blue;
    transition: 0.4s;
}

.li3:hover{
    color: blue;
    transition: 0.4s;
}

.li4:hover{
    color: blue;
    transition: 0.4s;
}

.li5:hover {
    color: blue;
    transition: 0.4s;
}

li {
    cursor: pointer;
}



section {
    background-color: white;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 90px 1fr 1fr 1fr 1fr;
}

section img {
    height: 100%;
    width: 100%;
    border: #ffffff 5px solid;
}

.texto {
    background-color: transparent;
    position: absolute;
    text-wrap: nowrap;
    color: rgb(218, 218, 218);
    bottom: 25%;
    left: 5%;
    opacity: 0;
}

#item-img {
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#item-img:hover .texto {
    opacity: 1;
    bottom: 5%;
}

.author img {
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    border: 0;
}

.author h4 {
    background-color: transparent;
    font-size: 1.5rem;
    margin-left: 4%;
    display: flex;
    align-items: center;
}

.author {
    background-color: transparent;
    border-radius: 50%;
    display: flex;
}

.titulo {
    grid-column: 1/3;
    grid-row: 1/2;
    display: flex;
    background-color: white;
}

.titulo h1 {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 30%;
    background-color: white;
}

.opcao {
    background-color: white;
    grid-column: 4/6;
    grid-row: 1/2;
    display: flex;
    margin-right: 10%;
    font-size: 18px;
    font-weight: 500;
}

.opcao p {
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.opcao p:hover {
    background-color: white;
    color: .2916e0;
}

.opcao .principal {
    background-color: white;
    color: .2916e0;
    font-size: 18px;
    font-weight: 500;
}

.mulher {
    grid-column: 1/3;
    grid-row: 2/4;
}

.carro {
    grid-column: 3/4;
    grid-row: 2/3;
}

.fone {
    grid-column: 4/5;
    grid-row: 2/3;
}

.pimentao {
    grid-row: 2/4;
    grid-column: 5/6;
}

.calango {
    grid-row: 4/5;
    grid-column: 1/3;
}

.mar {
    grid-row: 3/5;
    grid-column: 3/5;
}

.doce {
    grid-row: 4/5;
    grid-column: 5/6;
}

.laranja {
    grid-row: 5/6;
    grid-column: 1/2;
}

.cesta {
    grid-row: 5/6;
    grid-column: 2/3;
}

.praia {
    grid-row: 5/6;
    grid-column: 3/5;
}

.mao {
    grid-row: 5/6;
    grid-column: 5/6;
}

header.grid {
    background-color: white;
    z-index: 200;
}