/* CATÁLOGOS */
.listaCatalogos {
	display: block;
	margin: 40px 0 0 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	text-align: center;
}

.listaCatalogos li {
	display: inline-block;
	box-sizing: border-box;
	margin: 0 0 80px 0;
	padding: 0;
	width: 20%;
	font-size: 1rem;
	line-height: 1em;
	text-align: center;
	vertical-align: top;
}

.listaCatalogos li .image {
	display: block;
	width: 100%;
}

.listaCatalogos li .image img {
	display: inline-block;
	width: auto;
	height: 270px;
	border: 1px solid #686868;
	box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.listaCatalogos li .title {
	display: block;
	margin: 20px 0 30px 0;
	font-size: 1.2rem;
	line-height: 1.4em;
	font-weight: 600;
}

.listaCatalogos li .buttons {
	font-size: 0;
	line-height: 0;
	text-align: center;
}

.listaCatalogos li .buttons a {
	display: inline-block;
	margin: 0 10px;
	width: 73px;
	height: 73px;
	opacity: 0.75;
	transition: opacity 0.15s ease-out;
}

.listaCatalogos li .buttons a:hover {
	opacity: 1;
}

.listaCatalogos li .buttons .download {
	background-image: url(../img/icons/icon-download-pdf.png);
}

.listaCatalogos li .buttons .view {
	background-image: url(../img/icons/icon-view-pdf.png);
}






/* ########## */
/* RESPONSIVE */
/* ########## */


/* 1440 */
@media screen and (max-width: 1440px) {

}


/* 1300px */
@media screen and (max-width: 1300px) {
	.listaCatalogos li {
		width: 25%;
	}
}


/* 1024px */
@media screen and (max-width: 1024px) {
	.listaCatalogos li {
		width: 33%;
	}

	.listaCatalogos li .title {
		font-size: 1.1rem;
	}
}


/* 960px */
@media screen and (max-width: 960px) {

}


/* 768px */
@media screen and (max-width: 768px) {
	.listaCatalogos li {
		width: 50%;
	}
}


/* 640px */
@media screen and (max-width: 640px) {

}


/* 480px */
@media screen and (max-width: 480px) {
	.listaCatalogos li {
		width: 100%;
	}
}


/* 320px */
@media screen and (max-width: 320px) {

}