.cabecalho{
    align-items: center;
    background-color: #15191C;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16);
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

.cabecalho  .icone{
    font-size: 1.5rem;
}

.cabecalho__menu > .icone::before{
    content: '\e904';
}

.cabecalho__notificacao > .icone::before{
    content: '\e906';
}

.cabecalho__logo{
    width: 3rem;
}

.cabecalho__perfil{
    display: none;  
}

@media screen and (min-width: 1024px){
   .cabecalho{
       background-color: #1D232A;
       column-gap: 32px;
       display: grid;
       grid-template-columns: 1fr auto;
       padding: 16px 60px;
       height: 80px;
       box-sizing: border-box;
   }
   
   .cabecalho__menu{
       display: none;
   }

   .cabecalho__logo{
       display: none;
   }

    .cabecalho__perfil{
        display: grid;
        grid-template-columns: repeat(3, auto);
        column-gap: 8px;
        align-items: center;
        justify-self: flex-end;
        color: #95999C;
        padding: 8px 32px;
        border-right: 1px solid #95999C;
    }

    .cabecalho__perfil::before{
        content: "";
        display: block;
        width: 32px;
        height: 32px;
        background-image: url(https://avatars.githubusercontent.com/u/16769458?v=4);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 100%;
    }

    .cabecalho__perfil::after{
        content: "\e90d";
        color: white;
        font-size: 1.5rem;

    }
}