﻿body{
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	height: 100%;
	float: left;
}

#fondo{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	background: url(../images/fondo.jpg) no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
	width: 100%;
	height: 100%;
}


#wrapP{
	position: relative;
	z-index: 2;
	width: 1200px;
	margin: 0 auto;
}

#pagina{
	width: 100%;
	float: left;
}

#cabecera{
	width: 100%;
	float: left;
	padding: 12px 0;
}

#logotipo{
	width: 100%;
	text-align: center;
	float: left;
}

#logotipo img{
	width: 30%;
}


#contenido{
	width: 100%;
	float: left;
	padding: 50px 20px;

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

.parte{
	width: 100%;
	float: left;
}

.seccion{
	width: 62%;
	font-size: 25px;
	line-height: 35px;
	float: left;
}

.seccion strong{
	color: blue;
}

.seccion strong{
	font-size: 30px;
}

.imagen-seccion{
	width: 37%;
	float: right;
}

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

.cuadrito{
	background: white;
	width: 100%;
	color: red;
	font-size: 20px;
	text-align: center;
	float: left;
	padding: 12px 0;
}


#formulario{
	background: rgba(256,256,256,0.8);
	width: 100%;
	float: left;
	padding: 12px 10px;
	margin: 0 0 40px 0;

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

#formulario form{
	width: 100%;
	float: left;
}

input[type=text]{
	border: 1px solid #ddd;
	width: 37%;
	font-family: 'Open Sans', sans-serif;
	font-weight: lighter;
	font-size: 17px;
	float: left;
	padding: 12px 10px;
	margin: 0 1% 0 0;

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

input[type=submit]{
	border: 0;
	background: #f9b510;
	width: 20%;
	color: white;
	font-size: 23px;	
	font-family: 'Open Sans', sans-serif;
	font-weight: lighter;
	float: right;
	padding: 8px 0;
	cursor: pointer;

	border-radius: 7px;
}

input[type=submit]:hover{
	font-weight: bold;
}


@media screen and (max-width: 1200px){
	#wrapP{
		width: 100%;
		padding: 0 10px;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	input[type=text]{
		width: 48%;
		float: left;
	}
	input[type=submit]{
		width: 40%;
		float: left;
		margin: 20px 0 0 0;
	}
}
@media screen and (max-width: 700px){
	.seccion{
		width: 100%;
	}
	.imagen-seccion{
		width: 100%;
		margin: 30px 0 0 0;
	}
	#logotipo img{
		width: 50%;
	}
}
@media screen and (max-width: 600px){
	input[type=text]{
		width: 100%;
		margin: 0 0 10px 0;
	}
	input[type=submit]{
		width: 70%;
		margin: 0 15%;
	}
}
@media screen and (max-width: 500px){
	#logotipo img{
		width: 70%;
	}
}














