﻿#productos{
	border: 0px solid red;
	width: 100%;
	margin: 15px 0 15px 0;
	float: left;
}

.producto{
	border: 1px dotted #ddd;
	width: 24%;
	float: left;
	margin: 0 0.5% 0;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.producto:hover .titulo-producto{
	background: #964646;
	color: white;
}

.titulo-producto{
	background: #f7f7f7;
	width: 100%;
	color: #964646;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}

.imagen-producto{
	width: 100%;
}

.imagen-producto img{
	width: 100%;
}

#banner{
	width: 100%;
	text-align: center;
	color: #964646;
	font-size: 25px;
	font-weight: bold;
	font-style: italic;
	padding: 15px 0;
}

@media screen and (max-width: 800px){
	.producto{
		width: 48%;
		margin: 0 1%;
	}
}
@media screen and (max-width: 600px){
	.producto{
		width: 90%;
		margin: 0 5% 30px;
	}
}