@CHARSET "ISO-8859-1";

body{
	font-family: "Open Sans",Arial,Helvetica,sans-serif;
	width: 80%;
	margin: 0 auto;
	background-color: #fff;
    background-image: url(img/bg.png);
    background-repeat: repeat;
    background-position: center;
}

h1.titulo{
	font-size: 55px;
    text-align: center;
    color: #333;
	text-transform: uppercase;
    font-weight: 500;
}

.modulo-controller{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	padding: 30px 15px;
	margin-bottom: 30px;
	background-color: #fff;
}

.modulo-controller h2{
	font-size: 45px;
	text-transform: uppercase;
    text-align: left;
    color: #444;
	width: 100%;
	font-weight: 500;
	margin: 0px;
}

.modulo-controller h3{
	font-size: 25px;
	text-transform: uppercase;
    text-align: left;
    color: #d86838;
	width: 100%;
	font-weight: 500;
}
.modulo-controller h4{
	width: 100%;
    line-height: 200%;
    font-weight: 500;
}

.funcao-controller{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

.funcao-controller p{
	width: 45%;
	line-height: 200%;
}

.funcao-controller img{
	width: 45%;
	padding: 20px;
	border: 0px;
	box-shadow: 0 1px 3px 0 rgba(0,0,0,.2), 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12);
	margin-top: 15px;
}

.funcao-controller span{
	width: 100%;
	line-height: 200%;
}


@media (max-width: 969px) {
	.funcao-controller{
		flex-direction: column;
	}
	.funcao-controller img{
		order: 1;
		width: 90%;
	}
	.funcao-controller p{
		order: 2;
		width: 100%;
	}
}
