@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;
    margin-bottom: -190px;
    
    @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;
        }
        
        & .highlight {
            font-size: 18px;
            line-height: 29px;
            margin-top: 10px;
            color: #FFFFFF96;
            text-align: left;
            letter-spacing: -0.54px;
            font-weight: 100;
        }
        
        & .text {
            margin-top: 20px;
            font-size: 18px;
            line-height: 29px;
            letter-spacing: -0.54px;
            color: #FFF;
            font-weight: bold;
        }
    }
    
    @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#releases {
    margin-top: 250px;
    
    @media only screen and (max-width: 600px) {
    	padding: 0 10px;
    }
    
    & .title {
        text-align: left;
        font-size: 38px;
        letter-spacing: -0.57px;
        color: #BFB800;
        
        @media only screen and (max-width: 600px) {
            text-align: center;
        }
    }
}

section#information {
    & .title {
        text-align: left;
        font-size: 38px;
        letter-spacing: -0.57px;
        color: #728046;
        
        @media only screen and (max-width: 600px) {
            text-align: center;
        }
    }
}

section {
    & .item {
        display: flex;
        justify-content: space-between;
        height: 50px;
        
        @media only screen and (max-width: 600px) {
            flex-direction: column;
            align-items: center;
            margin-bottom: 50px;
            gap: 5px;
        }
        
        & .name {
            color: #696158;
            font-size: 18px;
            letter-spacing: -0.54px;
        }
        
        & .space {
            border-bottom: 1px solid #696158;
            flex: 1;
            height: 17px;
            margin: 0 25px;
        }
        
        & a {
            color: #BFB800;
            font-family: "Arboria-Black", sans-serif;
            font-size: 16px;
            font-weight: 900;
            margin-right: 10px;
            
            &::after {
                content: url('../svg/baixar.svg');
                margin-left: 10px;
                transition: margin 0.3s ease-in-out;
            }
            
            &:hover {
                color: #EA7600;
                
                &::after {
                    margin-left: 20px;
                    margin-right: -10px;
                    transition: margin 0.3s ease-in-out;
                    filter: hue-rotate(320deg);
                }
            }
        }
    }
}