/* CSS destinado as alterações passas em 2024 para melhor replicação*/

.d-flex{
    display: flex;
}

.centralize{
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-buttons__mob:hover *{
    text-decoration: none;
}

.header-buttons__mob{
    margin-top: 10px;
    display: flex!important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header-buttons__mob a{
    padding: 5px;
}

.header-buttons__mob--button{
    border: 1px solid #333;
    width: 100px;
    border-radius: 8px;
    padding: 5px 10px;
}

.header-buttons__mob--button:hover, .header-buttons__mob--button:hover *{
    background-color: var(--azul-padrao);
    color: white;
}

.tabelas:hover *, .cotar:hover *{
    text-decoration: none;
}

.tabelas p, .cotar p{
    margin: 0;
    width: 100%;
    font-weight: 700;
}

.d-mob-none{
    display: none;
}
.d-desk-none{
    display: block;
}

@media(min-width:700px){
    .tabelas p, .cotar p{
        font-size: 16px;
    }

    .d-mob-none{
        display: block;
    }
    .d-desk-none{
        display: none;
    }
}