@charset "utf-8";

.home .banner img{
	background-color: #dfdfdf;
	width: 100%;
	box-shadow: 0px 10px 20px -10px #999999;
}










.home .destaques{
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
	max-width: 1200px;
	margin: auto;
	margin-top: 90px;
	margin-bottom: 45px;
	flex-wrap: wrap;
}

.home .destaques .item{
	background-color: #bbe06b;
	width: 85%;
	margin-bottom: 45px;
	transition: background .5s;
	box-shadow: 0px 0px 20px -2px #999999;
	border-radius: 15px;
}

@media screen and (min-width: 550px) {
    .home .destaques .item{
	width: 42%;
	}
}

@media screen and (min-width: 900px) {
    .home .destaques .item{
	width: 28%;
	}
}


.home .destaques .item:hover{
	background-color: #FFF;
	cursor: pointer;
}

.home .destaques .item div{
	padding: 20px;
	padding-top: 10px;
	color: #26390c;
}

.home .destaques .item img{
	width: 100%;
}

.home .destaques .item p{
	
	margin: 0;
	margin-bottom: 10px;
font-family: 'Bree Serif', serif;
	font-size: 20px;
	text-transform: uppercase;
}

.home .destaques .item a{
	text-decoration: none;
}

















