body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#menuToggle {
    display: block;
    position: fixed;
    top: 10px; /* Ajuste a posição vertical conforme necessário */
    left: 10px; /* Ajuste a posição horizontal conforme necessário */
    z-index: 1000;
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */
    -webkit-touch-callout: none;
}

#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: #232323;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323 /*#232323*/;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    margin: 0px;
    padding: 25px;
    padding-top: 70px;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
   
}

#menu li a.menu-link {
    display: inline-block;
    width: 250px; /* Defina a largura desejada para os botões */
    padding: 5px 10px;
    background-color: #606C38;
    color: #ededed /*#fff*/ ;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0;
    transition: background-color 0.3s;
    text-align: center; /* Centraliza o texto horizontalmente */
}

/* Novo estilo para o ícone de menu */
#menuToggle {
    width: 48px; /* Ajuste conforme necessário */
    height: 36px; /* Ajuste conforme necessário */
    /*background-color: #D8B560;*/ /* Cor de fundo */
    /*border: 2px solid #232323; *//* Cor da borda */
    border-radius: 5px; /* Borda arredondada */
    padding: 5px;
    box-sizing: border-box; /* Inclui padding e borda no tamanho total */
}

#menuToggle span {
    background: #D8B560; /* Cor das linhas do ícone */
}


#menu li a.menu-link:hover {
    background-color: #758050; /* Cor de fundo do botão ao passar o mouse */
}

#menuToggle input:checked ~ ul {
    transform: none;
}

#menu a {
    text-decoration: none;
    color: #232323;
}

#menu a img {
    vertical-align: middle;
    margin-right: 20px;
}

#menu li a.home-link {
    display: flex; /* Usando flexbox para alinhar itens verticalmente */
    align-items: center; /* Alinhar os itens verticalmente */
    color: #fff; /* Cor do texto */
    text-decoration: none; /* Remover sublinhado */
    padding: 10px; /* Adicionar espaçamento interno */
    background-color: #606C38; /* Cor de fundo */
    border-radius: 5px; /* Borda arredondada */
    transition: background-color 0.3s; /* Transição suave */
}

#menu li a.home-link:hover {
    background-color: #758050; /* Cor de fundo ao passar o mouse */
}

#menu li a.home-link img {
    width: 50px; /* Largura da imagem */
    height: 50px; /* Altura da imagem */
    margin-right: 10px; /* Espaçamento à direita da imagem */
}
