.titulo{
    background-color: #2c3e50;
    width: 100%;
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    z-index: 9;
}
.corpo{
    width: 70%;
    margin: 0 auto;
    padding: 100px 0 40px 0;
}

.noticias{
    background-color: #bbd4ce; 
    text-align: left; 
    padding: 5px;color: #2c3e50;
    margin-top: 10px;
    display:flex;
    flex-wrap:wrap;
}
.titulos{
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}
.sub_titulos{
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}
.menu{
    background-color: #2c3e50;
    width: 100%;color: white; 
    text-align: center; 
    padding: 1px; 
    position: fixed; 
    z-index: 9; 
    top: 90px; 
    font-size: 15px;
    padding: 3px 0 3px 0;
    font-weight: bold;
}
.itens-menu{
    list-style: none;
    display: inline-flex;
}
.linkMenu{
    margin: 0 15px 0 15px;
    transition: 0.5s;
    cursor: pointer;
}
.linkMenu:hover{
    color: #bbd4ce;
    font-size: 18px;
    transition: 0.5s;
}
footer{
    width: 100%;
    z-index: 99;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 10px 10px 5px;
}
.infoLeft{
    text-align: left;
    min-width: 200px;

}
.infoCenter{
    text-align: left;
    min-width: 200px;

}
.infoRight{
    text-align: left;
    min-width: 200px;

}
.subFooter{
    width: 100%;
    margin: 10px auto 10px;
    border-top: 1px solid;
    padding-top: 10px;
}
.contentFooter{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.opc{
    cursor: pointer;
}
.opc:hover{
    font-weight: bold;
    transition: 0.5s;
}
.aside{
    width: 50%;
    padding:5px;
}

/* Estilos para tornar o menu visível em telas maiores */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
    }
    .corpo{
        width: 100%;
        margin: 0 auto;
        padding: 60px 0 40px 0;
    }
    .titulo{
        background-color: #2c3e50;
        width: 100%;
        color: white;
        text-align: center;
        padding: 20px;
    }
    .contentFooter{
        display: flex;
        justify-content: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }
    .infoCenter{
        text-align: left;
        min-width: 200px;
        margin-top: 25px;
    }
    .infoRight{
        text-align: left;
        min-width: 200px;
        margin-top: 25px;
    }
    .aside{
        width: 100%;
        padding:5px;
    }
}