

.box_botoes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn_carregar {
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: var(--cor_principal);
    font-family: var(--font-family-koho);
    font-size: 1em;
    width: 8vw;
    height: 1.5vw;
    text-align: center;
    color: var(--cor_branca);
    border: none;
    border-radius: 0.3vw;
    margin-bottom: 1.5vw;
    cursor: pointer;
}


.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.paginacao-info {
    color: var(--cor-cinza-escura);
    font-weight: 500;
    font-size: 14px;
}

.btn-paginacao {
    background-color: var(--cor_principal);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

    .btn-paginacao:disabled {
        background-color: #ccc;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .btn-paginacao:hover:not(:disabled) {
        background-color: #cc0066;
    }
@media only screen and (max-width: 1024px) {

    .btn_carregar {
        width: 15vw;
        height: 3vw;
        border-radius: 0.8vw;
        margin-bottom: 5vw;
    }
}

@media only screen and (max-width: 768px) {


    .btn_carregar {
        width: 20vw;
        height: 3.2vw;
        border-radius: 0.8vw;
        margin-bottom: 3vw;
    }
}

@media only screen and (max-width: 480px) {
    .btn_carregar {
        display:flex;
        align-items:center;
        justify-content:center;
        width: 30vw;
        height: 6vw;
        border-radius: 1.5vw;
        margin-bottom: 5vw;
    }
}
