.pagamentos {
    background-color: black;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    padding: 30px 10px;
    position: relative;
    z-index: 100;
    bottom: 90px;
}
.pagamentos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
    color: #fff;
}
.pagamentos-grid div {
    display: grid;
    justify-items: center;
    gap: 10px;
}
.pagamentos-grid div h5 {
    max-width: 150px;
    text-align: center;
}

@media only screen and (min-width: 485px) and (max-width: 776px) {

    .pagamentos {
        bottom: 40px;
    }
    
}
@media only screen and (min-width: 0px) and (max-width: 484px) {

    .pagamentos {
        bottom: 30px;
    }
    .pagamentos-grid {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        align-items: center;
        color: #fff;
    }
    
}