.banner__inferior {
    background-image: url("../../imagens/solicite-orçamento.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5rem;
}

.caixa {
    display: block;
    width: fit-content;
    height: fit-content;
    margin: auto;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3rem;
}

.caixa:hover {
    color: wheat;
}

@media screen and (max-width: 680px) {
    .caixa {
        padding: 0;
        font-size: 1.2rem;
        line-height: 1rem;
    }

    .banner__inferior {
        padding: 5rem .5rem;
    }
    
}