@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;800&display=swap');
body{
    margin:0;
    padding: 0;
    font-family: 'Baloo 2', cursive;
}
.banner_loja{
    width: 100%;
    height: 350px;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;

}
.section_loja{
    width: 60%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo_loja{
    display: flex;
    align-items: center;
}
.logo_loja img{
    height: 40px;
}
.logo_loja p{
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;
    text-wrap: nowrap;
}
.left_loja{
    padding-left: 20px;
}
.link{
    padding-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}
.desc_loja{
    padding-right: 20px;
    margin-left: 20px;
    font-size: 13px;
}
@media only screen and (max-width: 600px){
    .section_loja{
        flex-direction: column;
    }
    .desc_loja{
        text-align: center;
        padding-bottom: 10px;
    }
    .left_loja{
        padding-left: 0px;
    }
}