.mcopo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.mcimgems {
    width: 100%;
}

.mcimgems img {
    width: 100%;
}

.mctexto {
    width: 80%;
    /*
    height: 600px;
    */
    background-color: #fff;
    margin-top: -60px;    
    margin-bottom: 60px;
    z-index: 999;
}

.mctitulo {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    align-items: center;
    flex-wrap: wrap;
}

.mctfrA {
    color: #000;
    font-weight: 700;
    margin-right: 30px;
    font-size: 2.4em;
}

.mctfrC {
    color: #000;
    font-weight: 700;
    font-size: 2.4em;
    border-bottom: 1px solid gray;
    padding: 15px 0;
}

.mctfrB {
    color: #8b8b8b;
    font-size: 1.3em;
}

/* ARTIGOS */
#artcap {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0.5em;
    /*
    background-color: lightgray;
    */
}

.arttopin {
    width: 99%;
    font-size: 2em;
    padding-bottom: 5px;
}

.artcapin {
    /*
    width: 24.2%;
    */
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 3px;
    margin-bottom: 5px;
}

.artcapin p {
    width: 100%;
    height: 80px;
    font-size: 1.4em;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 5px;
}

.artimg {
    width: 100%;    
    height: 180px;
    overflow: hidden;
    
}

.artimg img{
    width: 100%;
}

.arttexto {
    width: 95%;    
    height: 140px;
    padding-top: 10px;
    color: #566276;
    box-sizing: border-box;
    margin: 0 auto;
}

.artlink {
    width: 100%;    
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artlink a {
    color: #116896;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 8px 20px;
    border-radius: 6px;
}

.artlink a:hover {
    border: 1px solid #287904;
}

.mdpromst {
    width: 100%;
    font-size: 1.2em;
}

.mdpromst {
    text-align: justify;
}

.mdpromst img {
    float: right;
    margin:0 0 10px 20px;
}

/* FINAL ARTIGOS */

@media screen and (max-width: 1200px){
    #artcap {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1000px){
    .mdpromst img {
        clear: both;
        margin:0 0 10px 0;
        width: 100%;
    }
}

@media screen and (max-width: 990px){
    #artcap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 660px){
    .mctfrA,
    .mctfrC {
        width: 100%;
        font-size: 1.6em;
    }
    
    #artcap {
        grid-template-columns: 1fr;
    }
    
}

