#paginaCongressos {
    float: left;
    width: 100%;
    padding: 0 0 50px 0;
}

/* Bloco Inicial */

.blocoInicial {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.blocoInicial h1 {
    float: left;
    width: 100%;
    color: #000;
    font-weight: 300;
    font-size: 32px;
    line-height: 46px;
    text-align: center;
    position: relative;
    margin: 0 0 25px 0;
}

.blocoInicial .boxBaixo {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
}

.blocoInicial .boxBaixo .texto .subtitulo {
    float: left;
    width: 100%;
    margin: 0 0 20px 0;
    line-height: 28px;
    font-size: 18px;
}

/* Lista Posts */

.listaPosts {
    float: left;
    width: 100%;
    padding: 50px 0;
}

.listaPosts .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.listaPosts ul {
    float: left;
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0;
}

.listaPosts ul li {
	list-style: none;
	margin: 0 0 40px 0;
	width: 100%;
	display: inline-block;
}

.listaPosts ul li .col-sm-3 {
	padding: 0!important;
}

.listaPosts ul li figure {
	overflow: hidden;
	border: solid 1px #dfdfdf;
	border-radius: 40px;
}

.listaPosts ul li figure img {
	width: 100%;
	transition: all 0.2s linear 0s!important;
}

.listaPosts ul li figure img:hover {
	transform: scale(1.1);
}

.listaPosts ul li h2 {
	font-size: 18px;
    margin: 0;
    color: #000000;
    font-weight: 300;
    line-height: 30px;
	float: left;
}

.listaPosts ul li .categorias {
	float: left;
	width: 100%;
	margin: 10px 0;
	color: #EA6C00;
	text-align: left;
}

.listaPosts ul li .categorias a {
	color: #EA6C00;
	font-size: 13px;
}

.listaPosts ul li p {
	color: #726F8E;
	width: 100%;
	margin: 5px 0 30px 0;
	line-height: 26px;
	text-align: left;
	line-height: 22px;
	font-size: 13px;
}

.listaPosts ul li a.linkPost {
	background: #EA6C00;
	padding: 10px 30px;
	display: flex;
	align-items: center;
	float: left;
	border-radius: 40px;
}

.listaPosts ul li a.linkPost i {
	color: #fff;
	font-size: 16px;
}

.listaPosts ul li a.linkPost span {
	color: #fff;
	margin-right: 10px;
	font-weight: bold;
}

@media (max-width: 1000px) {

    /* lista */

    .listaPosts .container > .col-sm-9 {
        float: left;
        width: 100%;
        max-width: 100%;
    }

}

@media (max-width: 768px) {

    /* Bloco Inicial */

    .blocoInicial {
        padding: 30px 0 0 0;
    }

    .blocoInicial h1 {
        font-size: 24px;
        line-height: 34px;
    }

    .blocoInicial .boxBaixo {
        flex-direction: column-reverse;
    }

    .blocoInicial .boxBaixo .col-sm-6 {
        padding: 0;
    }

    /* Lista */

    .listaPosts .container > .col-sm-9 {
        padding: 0;
    }

    .listaPosts ul li figure {
        margin-bottom: 20px;
    }

}