@charset "utf-8";
/* CSS Document */

html, body{
	width:100%;
	height:100%;
	margin:0;
	font-family: 'Open Sans', sans-serif;
}

a{
	text-decoration:inherit;
	color:inherit;
}

a:focus{
	outline:none;
}

body{
	background:url(../icones/bg.jpg) no-repeat;
	background-position:center;
	background-size:cover;
}

#base{
	position:relative;
	
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
	
	-webkit-box-flex-direction: column;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex-direction: column;         /* OLD - Firefox 19- */
	-webkit-flex-direction: column;          /* Chrome */
	-ms-flex-direction: column;
	flex-direction: column;
	
	-webkit-box-justify-content: space-around;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-justify-content: space-around;         /* OLD - Firefox 19- */
	-webkit-justify-content: space-around;          /* Chrome */
	-ms-justify-content: space-around;
	justify-content: space-around;
	
	-webkit-box-align-items: center;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-align-items: center;         /* OLD - Firefox 19- */
	-webkit-align-items: center;          /* Chrome */
	-ms-align-items: center;
	align-items: center;
	
	background:#FFF;
	width:680px;
	height:100%;
	margin:0 auto;
	box-shadow:0 0 20px rgba(0,0,0,.5);
}

#logo{
	position:relative;
	width:400px;
	height:300px;
	min-height:300px;
	background:url(../logotipo.png) no-repeat;
	background-position:center;
	background-size:contain;
	padding:40px;
}

#infos{
	position:relative;
	color:#999;
	padding:40px;
}

#infos span{
	position:relative;
	display:table;
	margin:10px;
	font-size:18px;
	padding-left:40px;
	background-position:left center;
	background-repeat:no-repeat;
	background-size:contain;
}

span.mail{
	background-image:url(../icones/mail.png);
}

span.fone{
	background-image:url(../icones/fone.png);
}

span.insta{
	background-image:url(../icones/insta.png);
}

span.endereco{
	background-image:url(../icones/endereco.png);
}