.Toolbar{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-barra{
    position: fixed;
    left: 430px;
    top: 0;
    width:  calc(100% - 430px);
    height: 50px;
    padding: 0 5px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

.barra {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    background: linear-gradient(to right, #4cb1ec, #2d91fb, #2b53a1); /* Degradê com 3 cores */
    color: #ffffff;
    text-align: center;
}

.menu ul{
    width: auto;
    height: 50px;
    padding: 0;
    margin: 0;
}

.menu ul li{
    position: relative;
    float: left;
    width: 50px;
    margin: 10px 0px;

    display: flex;
    justify-content: center;
}

.menu ul li a{
    color: #e6e8eb;
    cursor: pointer;
}

.menu ul li a .icone{
    fill: #e6e8eb;
}

.menu ul li a:hover{
    color: #fff351;
    cursor: pointer;
}

.menu ul li.footer{
    position: absolute;
    right: 0px;
}