/*
*
* IMAGEM
*
*/


#cover-materia .title{
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 45px;
    z-index: 1;
}

#cover-materia>div{
    position: relative;
    height: 100%;
}

/*
*
* FIM IMAGEM
*
*/

/*
*
* TEXTO
*
*/

#materia{
    width: 100%;
    padding-top: 15px;
}

#materia strong{
    color: #4d4c4c;
}
#materia > article > p{
    margin-top: 15px;
    font-size: 18px;
    line-height: 28px;
}
#materia > article > span{
    display: block;
    font-style: italic;
}
#materia p a{
    color: #d45c1d;
}

@media only screen and (min-width: 1025px){
    #materia{
        display: flex;
        display: -webkit-flex;
        display: -moz-flex;
        margin-top: 10px;
    }
    #materia > article{
        flex: 3;
        -webkit-flex: 3;
        -moz-flex: 3;
    }
}
@media only screen and (min-width: 641px) and (max-width: 1024px){
    #materia > article > div:last-child{
        padding: 0;
    }
    #materia > article > h2{
        padding-top: 15px;
    }
}
@media only screen and (min-width: 320px) and (max-width: 640px){
    #materia > article > div:last-child{
        padding: 0;
    }
    #materia > article > h2{
        padding-top: 15px;
    }
    #materia > article > p{
        text-align: justify;
    }
}
/*
*
* FIM TEXTO
*
*/

/*
*
* OTHER-NEWS
*
*/
.more-news{
    position: relative;
    height: 500px;
    margin: 20px 0;
    margin-bottom: 80px;
    padding: 5px;
    z-index: 0;
}
.more-news > article{
    position: relative;
    height: 100%;
    padding: 10px;
    border: solid 1px #d45c1d;
}
.more-news .imagem{
    display: block;
    max-height: 200px;
    overflow: hidden;
}
.more-news .imagem img{
    width: 100%;
    cursor: pointer;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
}
.more-news .imagem:hover img{
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.more-news h2{
    font-size: 25px;
    font-weight: 600;
    color: #4d4c4c;
    padding: 15px 0;

    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
}
.more-news h2:hover{
    color: #d45c1d
}
.more-news p{
    padding-bottom: 15px; 
    line-height: 25px;
    font-size: 17px;
}
.more-news .button-more{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    line-height: 50px;
    background-color: #d45c1d;
    color: #fff;
    transition: all .2s ease-out;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
}
.more-news .button-more:hover{
    background: #4d4c4c;
}
@media only screen and (max-width: 980px){
    .more-news{
        width: 100%;
        height: 470px;
        margin-bottom: 15px;
        margin-top: 0;
    }
    .more-news .imagem{
        height: 150px;
    }
    .more-news .imagem img{
        width: 120%;
    }
}
/*
*
* FIM OTHER-NEWS
*
*/