.itens-header {
    padding: 20px 0;
    margin: 0 20px;
    justify-content: space-around;
    flex-direction: row-reverse;
    text-align: center;
    width: 1100px;
}

.logo-header {
    width: auto;
    height: 65px;
}

.header--nav a {
    font-family: Gunterz;
    font-size: 20px;
    letter-spacing: 1.5px;
    margin: 10px 5px;
    padding: 10px 5px;
    color: rgb(0, 0, 0);
}

.itens-click {
    margin: 50% 15%;
}

.itens-click a {
    margin: 20% 0;
}

.itens-click a:hover {
    transform: translateX(5px);
    /* Aumenta a escala e desloca para a direita */
    font-weight: bold;
    /* Adiciona o estilo em negrito */
    color: #abd263;
    transition: transform 0.3s ease;
    /* Adiciona uma transição suave */
}

.itens-click a:hover::before {
    content: "ᐅ";
    /* Código Unicode para uma seta apontando para a esquerda */
    position: absolute;
    left: -12px;
    /* Ajuste a posição conforme necessário */
    top: 50%;
    transform: translateY(-50%);
    font-weight: normal;
    /* Evita que a seta seja negrito */
    opacity: 0;
    /* Inicialmente invisível */
    transition: opacity 0.3s ease;
    /* Adiciona uma transição suave para a seta */
}

.itens-click a:hover::before {
    opacity: 1;
    /* Torna a seta visível quando o mouse passa sobre o item */
}

.menu-solid-pgs {
    height: 100px;
}

nav {
    background: #fff;
    padding: 0 2%;
    margin: 0;
    text-align: center;
    overflow: auto;
    height: 100%;
    width: 100%;
    max-width: 300px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -100%;
    opacity: .9;
    transition: right .5s ease-out;
}

a {
    display: block;
}

.active .header--nav {
    right: 0;
}

/* Estilo padrão da película escura */
.active:after {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(107, 107, 107, 0.514);
    mix-blend-mode: multiply;
    opacity: 0;
    /* Começa com opacidade zero */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Transição mais suave */

}

/* Estilo para mostrar a película escura quando o menu está aberto */
html.active:after {
    opacity: 1;
    /* Torna a opacidade 1 para mostrar a película */
}

.open-menu {
    float: right;
    position: relative;
    display: block;
    width: 43px;
    height: 1px;
    margin: 5px 0;
    transition: .5s ease-in-out;
    right: 0px;
}

.toggle {
    width: 45px;
    height: 45px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    position: relative;
}

.open-menu .toggle::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 3px;
    background-color: #abd263;
    top: 10px;
    left: 5px;
    box-shadow: 0 10px 0 0 #abd263, 0 20px 0 0 #abd263;
}

.close-menu {
    position: relative;
    margin: 5px 0;
    transition: .5s ease-in-out;
    right: 0px;
    float: right;
}

.wrapper--closed .toggle::after,
.wrapper--closed .toggle::before {
    position: absolute;
    content: '';
    width: 35px;
    height: 3px;
    background-color: #abd263;
    left: 5px;
    top: 50%;
}

.wrapper--closed .toggle::after {
    transform: rotate(45deg);
}

.wrapper--closed .toggle::before {
    transform: rotate(-45deg);
}

/* Estilo padrão dos botões */
.open-menu,
.close-menu {
    /* Defina seus estilos padrão aqui */
    opacity: 1;
    /* Inicialmente visível */
    transition: opacity 0.3s ease;
    /* Adicione uma transição suave de opacidade */
}

/* Estilo para esconder os botões */
.open-menu.hide,
.close-menu.hide {
    opacity: 0;
    /* Torna-os invisíveis */
}

.sticky {
    box-shadow: 2px 3px 50px rgb(0 0 0 / 11%);
    height: 90px;
    margin-top: -15px;
    transition: ease-in-out .2s;
    background: #ebebebee;
}