:root {
    --color1: #664639;
    --color2: #D9B08C;
    --color3: #EEE6E3;

    --color4: #f5f5f5;

}

header {
    font-family: Roboto;
    padding: 0 60px;
    height: fit-content;
    color: #d08d53;
    margin: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    #logo {
        padding: 8px;
        width: 50px;
        margin-right: 15px;
        border-radius: 50%;
        >a img {
            width: 100%;
            border-radius: 50%;
        }
    }
    
    #logo-img {
        width: 90px;
        margin-right: 15px;
        > img {
            width: 100%;
        }
    }
    #click {
        font-family: "Playwrite MX", cursive;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 1.8rem;
    }
    h1 {
        a {
            text-decoration: none;
            color: inherit;
            font-family: "Roboto", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 3rem;
        }
    }
    nav {
        flex: 1;
        ul {
            display: flex;

            justify-content: space-evenly;
            gap: 0px;
            list-style: none;
            font-weight: bold;
            
            li {
                a{
                    text-decoration: none;
                    color: #000;
                    
                }
                > a:hover {
                    color: #c98d71;
                    transition: 0.3s;
                    
                }
            }
        }
    }
    .li-header:hover {
        transform: scale(1.1);
    }
    aside {
        background-color: #c98d71;
        padding: 5px;
        border-radius: 15px;
        box-shadow: 1px 1px 1px 1px;
        a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
    }
}
#menu {
    display: none;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor de fundo semitransparente */
    z-index: 0; /* Coloque-o acima do menu */
    display: none; /* Inicialmente oculto */
}

@media screen and (max-width: 600px) {
    header {
        margin: auto;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        > nav {
            display: none;
            z-index: 2;
        }
        
    }
    div#logo {
        /* margin-left: 0px; */
        margin-right: 0px;
    }
    div#logo-img {
        /* margin-left: 0px; */
        margin-right: 0px;
    }
    aside {
        display: none;
    }
    .aside {
        display: block;
        position: absolute;
        top: 190px;
        right: 30px;
        z-index: 1;
        /* background-color: rgba(0, 0, 0, 0.735); */
        padding: 0px;
        border-radius: 10px;
        width: 30%;
        text-align: center;
    }
    #menu {
        width: 20%;
        align-items: center;
        display: flex;
        justify-content: center;
        img {
            width: 50%;
        }
    }
    .active {
        display: block;
        position: absolute;
        top: 65px;
        right: 30px;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.735);
        padding: 0px;
        border-radius: 10px;
        width: 30%;
        > ul {
            width: 100%;
            padding: 0;
            /* margin: auto; */
            display: flex;
            flex-direction: column;
            align-items: start;
            > li {
                width: 90%;
                padding: 5px;
                border-bottom: 1px solid white;
                > a {
                    color: white;

                }

            }

        }
    }
    
}