/* Banner */
.banner{
	margin: auto;
	width:100%;
	max-width: 1600px;
	position: relative;
	overflow:hidden;
}

.banner .textoBanner{
	position:absolute;
	font-family: 'Ubuntu', sans-serif;
}

.banner .textoDer{
	top:10px; 
	right:50px; 
	text-align:right;
}

.banner .textoIzq{
	top:90px;
	text-align:left;
	background-color: rgba(0,0,0,0.8);
	border-radius: 0px 10px 10px 0;
}

.banner .textoIzq h1{
	padding:5px 40px 10px 120px;
}

.banner .textoCentro{
	top:50px; 
	left:50%;
	width:800px; 
	margin-left: -400px;
	text-align:center;
}

.textoDer h1{
	font-size:35px;
	line-height:25px;
}

.textoDer h2{
	font-size:30px;
	line-height:25px;
	font-weight: 400;
}

.textoDer h3{
	font-size:24px;
	line-height:25px;
}

/* Barra productos */
.capsula {
	padding: 10px;
}

.producto {
	padding: 10px 10px 70px 10px;
	border: 0.5px solid rgba(0,0,0,0.1);
	background: rgb(255,255,255);
}

.barraProductos {
	margin-top: 15px;
}

.barraProductos .organizarProductos span {
	margin-left: 5px;
}

/* Vitrina productos */
.titulosModulos {
	margin-top: -5px;
	font-size: 20px;
}

.tituloDestacado h1 {
	margin-top: -5px;
}

.tituloDestacado button span {
	margin-left: 5px;
}

.productos ul li figure {
	overflow:hidden;
	transition: 0.3 all ease;
}

.productos ul li figure:hover {
	background-color: #668C34;
}

.productos ul li a img:hover {
	transition: 0.3 all ease;
	opacity: 0.8;
	transform: scale(1.1,1.1);
}

.productos ul li h4 small {
	color: #777;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
}

.productos ul li h4 small a {
	color: #777;
}

.productos ul li div.precio {
	padding: 0;
	margin-top: -30px;
	padding-bottom: 20px;
}

.productos ul li div.enlaces {
	padding: 0;
	padding-bottom: 20px; 
}

.productos ul li div.enlaces button {
	margin: 2px;
}

.productos ul li div.enlaces button i {
	color: #999;
	font-size: 12px;
}

.productos ul li h1 {
	margin-top: -10px;
}

.productos ul li h1 small {
	font-size: 20px;
	font-weight: 700;
}

.productos ul li h1 small a {
	color: #777;
}

.oferta {
	text-decoration: line-through;
	color: #ccc;
	font-size: 15px;
}

.fontSize {
	font-size: 11px;
}

/*==================================================================*/
/* Medida de LG 													*/
/*==================================================================*/
@media (min-width:1200px){
	.banner{
		height:260px;
	}

	.productos ul li figure {
		width: 100%;
		margin: auto;
	}
}


/*==================================================================*/
/* Medida de MD 													*/
/*==================================================================*/
@media (max-width:1199px) and (min-width:992px){
	.banner{
		height:260px;
	}

	.productos ul li figure {
		width: 100%;
		margin: auto;
	}
}
/*==================================================================*/
/* Medida de SM 													*/
/*==================================================================*/
@media (max-width:991px) and (min-width:768px){
	.banner{
		height:180px;
	}

	.textoBanner h1{
		font-size:30px;
		line-height:15px;
	}

	.textoBanner h2{
		font-size:25px;
		line-height:15px;
	}

	.textoBanner h3{
		font-size:25px;
		line-height:15px;
	}

	.banner .textoDer, .banner .textoIzq, .banner .textoCentro{
		top:35px; 
	}

}

/*==================================================================*/
/* Medida de XS 													*/
/*==================================================================*/
@media (max-width:767px) {
	.banner{
		display: none;
	}
	
	.tituloDestacado h1 {
		text-align: center;
	}

	.tituloDestacado button {
		position: absolute;
		left: 50%;
		width: 40%;
		margin-left: -20%;
	}

	.productos ul li h1 small {
		font-size: 14px;
	}

	.productos ul li figure {
		width: 80%;
		margin: auto;
	}
}

