@media (max-width: 450px) {
    .home__container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home__cards{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .home__fat {
        border: 1px solid rgb(248, 248, 248);
        border-radius: 10px;
        background-color: orangered;

        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        align-items: center;
        justify-items: center;

        margin: 10px;

        width: 80vw;
    }
    
    .fat__button {
        display: block;
    }
    
    .fat__dados {
        display: block;
        margin: 10px;
    }

    .faturamento {
        display: flex;
        flex-direction: column;
    }

    .aovivo {
        margin-bottom: 20px;
        margin-left: 0px;
    }
}

@media (min-width: 450px) {

    .home__cards{
        margin-top: 50px;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }   
}
