/*
ELABORADO POR RAFAEL AVELAR
VERSÃO 2.0
ATUALIZADO DIA: 06/01/2017
*/

@charset "utf-8";


.conteudo {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: strech;
	align-content: strech;
	padding: 2% 3% 0% 3%;
	flex-grow: 1;
}
.conteudo p {
	text-align: left;
	margin: 1% 1% 0.5% 0%;
	font-size: 1.1em;
}
.projetos {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
	line-height: 1.5em;
	padding: 7% 4%;
	background-color: #f5f5f5;
	text-align: center;
	border-radius: 7px;
	margin: 0% 1% 3% 1%;
}
h2, span{
	font-weight: 600;
    font-size: 1em;
	text-align: center;
    margin: 7% 0;
}
span{
	color: red;
}
img{
	max-width: 400px;
}

/*================ MOBILE FIRST ================*/
/* SMALL DEVICES - SMARTPHONES */

@media screen and (min-width: 480px){
.projetos{
	max-width: 400px;
	margin: 0% auto 3% auto;
}
}

/* SMALL DEVICES - TABLETS */

@media screen and (min-width: 768px){
.conteudo {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-grow: 1;
	flex-wrap: wrap;
}
.projetos {
	max-width: 45%;
}
}

/* MEDIUM DEVICES - TABLETS & DESKTOPS */
@media screen and (min-width: 1200px){
.projetos {
	max-width: 30%;
    padding: 4% 2% 4% 2%;
}
}

/* 
ELABORADO POR RAFAEL AVELAR
VERSÃO 2.0
ATUALIZADO DIA: 06/01/2017
*/