@charset "utf-8";
/* CSS Document */


.contenedor__productos{
	
	display: flex;
	width: 100%;
	position: relative;
	justify-content: space-around;
	flex-wrap: wrap;
	/*max-width: 1000px;*/
}

.conte__img{
	width: 300px;
	height: 200px;
	margin-bottom: 35px;
	object-fit: cover;
	cursor: pointer;
	filter: brightness(55%);
	-webkit-filter: brightness(55%);
	animation: escalar 2.2s infinite;
	border-radius: 10px;
		
}

@keyframes escalar{
	to{
		transform: scale(1)
	}
	from{
		transform: scale(1.028);
	}
}

.conte__img:hover{
	filter: brightness(100%);
	-webkit-filter: brightness(100%);
	box-shadow: 5px -5px 12px white;
}

.conte__titulo{
	color: white;
	font-size: 20px;
}


