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

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) {
            padding: 0 80px;
            width: 700px;
        }
        
        & .title {
            font-family: "Arboria-Black", sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: #FFF;
            line-height: 1;
            margin-bottom: 15px;
            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;
            font-weight: 100;
        }
        
        & .text {
            margin-top: 20px;
            font-size: 18px;
            line-height: 29px;
            letter-spacing: -0.54px;
            color: #FFF;
        }
    }

    @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) {
    display: flex;
    align-items: center;
    column-gap: 50px;
    flex-wrap: nowrap;
    
    & .content {
        
        & .title {
            text-align: left;
            font-size: 45px;
            letter-spacing: -0.68px;
        }
        
        & .text {
            text-align: left;
            font-size: 18px;
            line-height: 29px;
            letter-spacing: -0.54px;
        }
    }
}

section#biodiversidade .content .text {
    text-align: left;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: -0.54px;
    color: #696158;
}

section#energia_limpa {    
    background-color: #BFB800;
    
    & .content .title, .text, .subtitle {
        color: #FFF;
        text-align: left;
    }
}

section#carbono_neutro .content {    
    
    & .title {
        color: #BFB800;
    }
    
    & .text {
        color: #696158;
    }
}

section#comunidade {    
    background-color: #EA7600;
    
    & .content {
        
        @media only screen and (min-width: 600px) {
            padding-left: 50px;
        }
        
        & .title, .text {
            color: #FFF;
        }
    }
}