Quando seleciono a classe .opcao__botao e coloco display: none, a caixinha do checked some, mas não consigo clicar para ver a lista. Alguma coisa está errada no código? CSS:
.cabecalho__menu-hamburguer{
width: 24px;
height: 24px;
background-image: url("../img/Menu.svg");
display:inline-block;
background-repeat: no-repeat;
background-position: center;
}
.cabecalho{
background-color: var(--cor-branco);
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.container{
display: flex;
align-items: center;
}
.container__img{
padding: 1em;
}
.lista__menu{
display: none;
position: absolute;
top: 100%;
width: 60vw;
}
.container__botao:checked~.lista__menu{
display: block;
}
.lista__menu__titulo, .lista__menu__item{
padding: 1em;
background-color: var(--cor-branco);
}
.lista__menu__link{
text-decoration: none;
color: var(--cor-azul);
background-clip: text;
text-transform: uppercase;
}
.lista__menu__titulo{
color: var(--cor-laranja);
font-weight: 700;
}
.container__botao{
display: none;
}
.container__titulo{
display: none;
}
.opcoes{
display: none;
}
@media screen and (min-width: 1024px){
.container__titulo, .container__titulo-negrito{
font-family: var(--fonte-logo);
font-size: 30px;
}
.container__titulo{
font-weight: 400;
display: block;
}
.container__titulo-negrito{
font-weight: 700;
}
.opcoes{
display: flex;
}
.opcoes__item{
padding: 0 1em;
text-transform: uppercase;
}
.opcoes__link{
text-decoration: none;
color: black;
}
.container__img-none{
display: none;
}
.cabecalho__menu-hamburguer{
display: none;
}
.opcoes__botao:checked~.lista__menu{
display: block;
width: auto;
}
.opcoes__botao{
display: none;
}
}`