
.cabecalho__botao {
    cursor: pointer;
    display: flex;
    justify-items: center;
    padding-left: 2rem;
}

.cabecalho__cadastrar {
    background-color: #8E2424;
    color: #ffffff;
    border-radius: 8px;
}

.cabecalho__item-link {
    color: #667085;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 1rem;
    text-decoration: none;
    
}


.cabecalho__lista-link {
    display: flex;
    align-items: center;
}


@media screen and (max-width: 425px) {
    .cabecalho {
        display: flex;
        flex-direction: column;
        padding: 1rem 3rem;
        gap: 32px;
    }

    .cabecalho__lista-link {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .cabecalho {
        display: flex;
        text-align: center;
        align-items: center;
        padding: 0.5rem;
        flex-wrap: wrap;
    }
    
}


@media screen and (max-width: 1440px) {
    .cabecalho {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 1rem;
    }
    
}