@media only screen and (max-width: 600px) {
    section, 
    .content {
        flex-direction: column;
    }
    
    img {
        max-width: 100%;
    }
    
    .content {
        padding: 0 10px 30px;
    }
    
    .btn-padrao-laranja {
        width: 100%;
        display: block;
    }
}

section#banner{
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    
    @media only screen and (max-width: 600px) {
        flex-direction: column-reverse;
        
        & img {
            height: 450px;
            object-fit: cover;
        }
        
        & img.overlay {
            position: absolute;
            width: 100%;
            top: 93px;
            object-position: -600px;
        }
    }
  
    @media only screen and (min-width: 600px) {
        width: 1260px;
        height: 510px;
    }
    
    & .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        @media only screen and (min-width: 600px) {
            width: 700px;
            padding: 0 80px;
        }
        
        & .title {
            font-family: "Arboria-Black", sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: #FFF;
            line-height: 45px;
            text-align: left;
            letter-spacing: -0.72px;
        }
        
        & .subtitle {
            font-size: 15px;
            line-height: 23px;
            margin-top: 10px;
            margin-bottom: 35px;
            color: #FFFFFF96;
            text-align: left;
        }
        
        & .text {
            color: #FFF;
            font-size:18px;
            line-height: 28px;
            letter-spacing: -0.54px;
            text-align: left;
        }
    }
    
    @media only screen and (min-width: 600px) {
        & img:not(.overlay) {
            max-width: 560px;
            height: 510px;
            object-fit: cover;
        }
        
        & img.overlay {
            max-width: 1260px;
            height: 510px;
            object-fit: cover;
            object-position: -74px;
        }
    }
}

section:not(#banner) {
    @media only screen and (min-width: 600px) {
        width: 1280px;
        margin-top: 250px;
    }
}

section.compliance {
    display: flex;
    padding: 0 10px;
    
    @media only screen and (max-width: 600px) {
        text-align: center;
    }
    
    @media only screen and (min-width: 600px) {
        height: 150px;
        
        & div {
            width: 50%;
        }
    }
    
    & .content .title {
        font-size: 38px;
        letter-spacing: -0.57px;
        color: #BFB800;
        margin-bottom: 35px;
        line-height: 1;
        
        @media only screen and (min-width: 600px) {
            text-align: left;
        }
    }
    
    & .text {
        font-size:18px;
        line-height: 28px;
        letter-spacing: -0.54px;
        color: #696158;
        text-align: left;
    }
}