@CHARSET "ISO-8859-1";

/**** DICAS *****/
.dicas{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	margin: 105px auto 50px;
    width: 80%;
}

.dicas h1{
	font-family: 'Roboto', sans-serif;
    word-break: break-word;
    word-wrap: break-word;
    color: #59B42D;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
	line-height: 120%;
	text-align: center;
	margin: 40px 0px;
}
.dicas hr{
	border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(219,219,219,1), rgba(0,0,0,0));
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(219,219,219,1), rgba(0,0,0,0));
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(219,219,219,1), rgba(0,0,0,0));
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(219,219,219,1), rgba(0,0,0,0));
    margin: 20px 0px;
    width: 100%;
}

.dicas article{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: stretch;
	width: 100%;
	padding: 20px 0px;
	border-top: dashed 1px #6EC03C;
}
.dicas article figure{
	width: calc(100% / 2 - 40px);
	margin: 20px;
}
.dicas article figure img{
	width: 100%;
}
.dicas article .texto{
	width: calc(100% / 2 - 40px);
	margin: 20px;
}
.dicas article .texto h2{
	color: #6EC03C;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 120%;
    margin: 10px 0px 30px 0px;
    width: 100%;
}
.dicas article .texto p{
	font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 150%;
    margin: 0px 0px 15px 0px;
    color: #f1f1f1;
}
.dicas article .texto ul {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	width: calc(100% - 40px);
	list-style: none;
	margin: 0px;
    padding: 0px;
}

.dicas article .texto ul li {
	width: 100%;
	margin: 5px 0px;
	padding: 5px 0px;
	font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 150%;
    margin: 0px;
    color: #f1f1f1;
}
.dicas article .texto ul li i{
	color: #6EC03C;
	margin: 0px 15px 0px 0px;
}

@media (max-width: 969px) {
	.dicas article{
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	.dicas article figure{
		order: 1;
		width: calc(100% - 40px);
	}
	.dicas article .texto{
		order: 2;
		width: calc(100% - 40px);
	}
}

@media (max-width: 600px) {
	.dicas{
		margin: 0px;
		padding: 0px 5px;
		width: calc(100% - 10px);
	}
}