@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(footer.css);
@import url(contacto.css);

	*{
		padding: 0;
		margin: 0;
		box-sizing: border-box;
	}
	body{
		font-family: verdana, "Open Sans";
	}
	header{
		width: 100%;
		height: 50px;
		background: #333;
		color: #fff;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
	}
	.contenedor{
		width: 98%;
		margin: auto;
		/*border: 1px solid red;*/
	}

	h1{
		/*font-size: 40px;*/
		float: left;
	}

	header .contenedor{
		display: table;
	}

	section{
		width: 100%;
		margin-bottom: 40px;
	}

	#bienvenidos{
		text-align: center;
	}

@media (min-width: 768px){
	.sociales {
		width: auto;
	}

	footer .contenedor{
		justify-content: space-between;
	}
}

@media (min-width: 1024px){
	.contenedor{
		width: 1000px;
	}
}