﻿.parte{
	width: 100%;
	float: left;
	margin: 0 0 20px 0;
	padding: 10px 0;
}

.gris{
	background: #f7f7f7;
}

.seccion{
	width: 57%;
	font-size: 18px;
	float: left;
	padding: 10px;

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

.titulo-seccion{
	font-size: 20px;
	font-weight: bold;
	color: #005fbe;
}

.desarrollo-seccion{
	line-height: 20px;
	text-align: justify;
	padding: 10px 0;
}

.marginBottom{
	margin-bottom: 30px;
}

.imagen-seccion{
	border: 0px solid red;
	width: 40%;
	text-align: center;
	float: left;
}

.imagen-seccion img{
	width: 85%;

	box-shadow:6px 6px 20px #005fbe;
}



.imagen-seccion-contacto{
	line-height: 26px;
	text-align: center !important;
}

.imagen-seccion-contacto img{
	width: 15%;
	margin: 0 30px;

	box-shadow:6px 6px 20px transparent;
}

.imagen-seccion-contacto b{
	font-size: 27px;
}




.producto{
	border: 1px solid #ddd;
	width: 23%;
	height: 300px;
	margin-right: 1.5%;
	float: left;
	cursor: pointer;

	border-radius: 3px;
}

.producto:hover{
	border: 1px solid gray;
}

.titulo-producto{
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	float: left;
	padding: 10px 0;
}

.imagen-producto{
	width: 100%;
}

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




#oscuro{
	background: rgba(256,256,256,0.9);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	display: none;
}


#pantalla{
	border: 1px solid #ddd;
	background: white;
	position: relative;
	width: 800px;
	height: auto;
	margin: 20px auto;
	padding: 0 0 30px 0;

	border-radius: 10px;

	box-shadow: 15px 15px 10px #000;
}

#cerrar{
	background: black;
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 101;
	color: white;
	font-size: 20px;
	font-weight: bold;
	padding: 6px 10px;
	cursor: pointer;

	border-radius: 50%;
}

#cerrar:hover{
	background: red;
}



.titulo-pantalla{
	width: 100%;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	float: left;
	padding: 12px 0;
}

.imagen-pantalla{
	width: 100%;
	text-align: center;
}

.imagen-pantalla img{
	width: 45%;
}

.texto-pantalla{
	width: 100%;
	line-height: 25px;
	padding: 0 20px;

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

@media screen and (max-width: 900px){
	#pantalla{
		width: 100%;
	}

	#cerrar{
		right: 10px;
	}
}


@media screen and (max-width: 800px){
	.producto{
		width: 92%;
		height: auto;
		margin-right: 0;
		margin-left: 4%;
	}
}


@media screen and (max-width: 700px){
	.seccion{
		width: 100%;
	}

	.imagen-seccion{
		width: 100%;
		margin-left: 0 !important;
	}

	.imagen-seccion img{
		width: 55%;
	}

	.imagen-seccion-contacto img{
		width: 20%;
	}
}