   .nav-mobile {
        position: relative;
    }

    .nav-mobile img {
        width: 100px;
        margin: 0;
    }

    .nav-mobile i {
        font-size: 20px;
        color: var(--azul-escuro);
    }

    .nav-mobile .dropdown-mobile {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 999;
        background-color: white;
        height: 100vh;
        width: 60vw;
        padding: 40px;
        box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease-in-out;
    }

    .dropdown-mobile.active {
        right: 0;
    }

    .dropdown-mobile ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-mobile ul li a {
        font-size: 20px;
    }

    #close-menu {
        background: none;
        border: none;
        font-size: 24px;
        color: var(--azul-escuro);
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .dropdown-produto .submenu {
        display: none;
    }

    .dropdown-produto .submenu.active {
        display: block;
    }

    /* .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 998;
        }

        .overlay.active {
            display: block;
        } */

    #menu-toggle {
        background-color: transparent;
    }