.cabecalho {
    width: 100%;
    position: fixed;
    background-color: #ededed;
    vertical-align: middle;
    z-index: 9;
    margin: 0 0;
}

.cabecalho-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px;
    vertical-align: middle;
}

.cabecalho-imagem {
    width: 80px;
    height: 80px;
}

.cabecalho-menu { 
    text-decoration: none;
    display: flex;
    gap: 30px;
    font-family: 'Righteous', cursive;
    color: #337ab7;
    font-weight: 400;
    font-size: 16px;
    padding: 20px;
    
}

@media (max-width :1024px) {
    .cabecalho-div {
        display: box;
        flex-direction: row;
    } 
}

@media (max-width :1024px) {
    .cabecalho-menu {
        display: none;
        flex-direction: column;
        align-items: center;
    } 
}

.cabecalho-menu-item {
    align-items: flex-end;
    text-align: center;
    padding: 10px;
    width: 150px;
    box-shadow: 5px 4px 5px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px 20px 20px 20px;
}

.cabecalho-menu-item-email {
    vertical-align: middle;
    align-items: left;
    width: 210px;
}

.cabecalho-menu-item-imagem {
    vertical-align: middle;
    align-items: center;
    width: 210px;
}