#menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {

    #info-header img {
        width: 100px;
    }

    #opcoes {
        display: none; 
        flex-direction: column;
        background-color: #000; 
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 1rem;
    }

    #menu-toggle {
        display: block;
    }

    #opcoes.active {
        display: flex;
    }

    #info-header-list {
        flex-direction: column;
        gap: 1rem;
    }

    #info-header-item {
        cursor: pointer;
    }
}