.contenedor {
	max-width: 1200px;
	margin:50px auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.contenedor_tarjeta {
	margin: 20px;
}

.contenedor_tarjeta a {
	display: inline-block;
}

.contenedor_tarjeta:hover figure {
	transform: perspective(600px) rotateY(180deg);
	-webkit-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
	box-shadow: 0px 2px 10px 2px rgba(0,0,0,0.25);
}

.contenedor_tarjeta:hover figure img {

	filter:blur(1px);
}

figure {
	width: 300px;
	height: 350px;
	margin:0;
	position: relative;
	transition: all ease .5s;
	transform-style: preserve-3d;
	transform: perspective(600px) rotateY(0deg); /*para iniciar*/
}

figure .frontal,
figure .trasera {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	transition: all ease .5s;
}

figure .frontal {
	display: block;
	background: #000;
	backface-visibility: hidden;
}

figure .trasera {
	position: absolute;
	top: 0;
	padding: 20px;
	color: #fff;
	transform: perspective(600px) rotateY(180deg);
	backface-visibility: hidden;
	overflow: auto;
	text-align: center;
	padding-top: 30px;
}

.contenedor_tarjeta:nth-child(1) figure .trasera{
	background: #2050DC;
	background: -moz-linear-gradient(top, #2050DC 0%, #1740bd 100%);
	background: gradient(left top, left bottom, color-stop(0%, #2050DC), color-stop(100%, #1740bd));
	background: -webkit-linear-gradient(top, #2050DC 0%, #1740bd 100%);
	background: -o-linear-gradient(top, #2050DC 0%, #1740bd 100%);
	background: -ms-linear-gradient(top, #2050DC 0%, #1740bd 100%);
	background: linear-gradient(to bottom, #2050DC 0%, #1740bd 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfeaf1', endColorstr='#0f6390', GradientType=0 );
}

.contenedor_tarjeta:nth-child(2) figure .trasera{
	background: #F7C44B;
	background: -moz-linear-gradient(top, #F7C44B 0%, #e7ad26 100%);
	background: gradient(left top, left bottom, color-stop(0%, #F7C44B), color-stop(100%, #e7ad26));
	background: -webkit-linear-gradient(top, #F7C44B 0%, #e7ad26 100%);
	background: -o-linear-gradient(top, #F7C44B 0%, #e7ad26 100%);
	background: -ms-linear-gradient(top, #F7C44B 0%, #e7ad26 100%);
	background: linear-gradient(to bottom, #F7C44B 0%, #e7ad26 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f3a35', endColorstr='#dd202f', GradientType=0 );	
}

.contenedor_tarjeta:nth-child(3) figure .trasera{
	background: #EE284A;
	background: -moz-linear-gradient(top, #EE284A 0%, #d11a38 100%);
	background: gradient(left top, left bottom, color-stop(0%, #EE284A), color-stop(100%, #d11a38));
	background: -webkit-linear-gradient(top, #EE284A 0%, #d11a38 100%);
	background: -o-linear-gradient(top, #EE284A 0%, #d11a38 100%);
	background: -ms-linear-gradient(top, #EE284A 0%, #d11a38 100%);
	background: linear-gradient(to bottom, #EE284A 0%, #d11a38 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fbe8ca', endColorstr='#192c48', GradientType=0 );
}

figure .trasera .titulo {
	color: #fff;
	font-weight: normal;
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
}

figure .trasera hr {
	height: 2px;
	background: #fff;
	border: none;
	margin-bottom: 20px;
	opacity: .5;
}

figure .trasera p {
	font-family: 'Open Sans', sans-serif;
	line-height: 22px;
	font-size: 14px;
}

@media screen and (max-width: 992px) { 
	figure .trasera {
		/*position: relative;*/
		backface-visibility: hidden;
		transform: perspective(600px) rotateY(180deg);
	}

	.contenedor_tarjeta:hover figure {
		transform: perspective(600px) rotateY(180deg);	
	}

}