/* 
 * Autor: DlteC do Brasil
 *
 */

/* Reset CSS */
* {margin: 0; padding: 0; box-sizing: border-box; font: 100%/1.5em "Trebuchet MS", Helvetica, Arial, sans-serif; }
a {
	text-decoration: none;
	color: #666;
}
a:visited {
	color: #666;
}
a:hover {
	color: #39F;
}
li {list-style: none;}
h1 { font-size: 2em; font-weight: bold;}
h2 { font-size: 1.75em; font-weight: bold;}
h3 { font-size: 1.3em;}
textarea {height: 200px;}
article { display: table; word-wrap: break-word;}
/* Reset CSS */

/* Corpo do documento */
body {
	background-color: #F2F2F2;
	color:#333;
}

#container {
	width: 1200px;
	margin: 0 auto;
	box-shadow: -1px -1px 5px #2C2C2C;
	-moz-box-shadow: -1px -1px 5px #2C2C2C;
	-o-box-shadow: -1px -1px 5px #2C2C2C;
	-webkit-box-shadow: -1px -1px 5px #2C2C2C;
}

/* Cabeçalho do documento */

#container header {
	display: table;
	width: 100%;
	padding-bottom: 10px;
	background-color: #BFBFBF;
	border-bottom: 10px solid #39f;
}

/* Menu */


#container header nav[role='menu'] {
	width: 100%;
	display: table;
	background-color: #868686;
	padding: 40px 0;
	border-bottom: 8px solid #39f;
	margin-bottom: 10px;
}

#container header nav[role='menu'] ul {
	float: right;
}

#container header nav[role='menu'] ul li{
	display: inline;
}

#container header nav[role='menu'] ul li a{
	height: 100%;
	padding: 42px 20px;
	font-weight: bold;
	color: #FFF;
}

#container header nav[role='menu'] ul li a:hover {
	color: #FFF;
	background-color: #39F;
}

/* Perfil */

.perfil {
	float: left
}

/* Avatar */
.avatar {
	width: 200px;
	height: 200px;
	border: 5px solid #CCC;
	background-image: url(../imagem/avatar.jpg);
	float: left;
	margin: 30px 10px 10px 50px;	/*
	Poderiamos utilizar da forma abaixo também
	margin-top: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 50px;
	*/
}

/* Nome e profissão do profissional */
.nome_profissao {
	background-color: #39F;
	color: #FFF;
	width: 575px;
	text-align: right;
	padding-right: 15px;	
}


.redesSociais {
	margin: 10px 0 0 5px;
	float: left;
}

.redesSociais ul li{
	margin-right: 5px;
	float: left;
}

/* SPRITES */
.sociais {
	background: url('../imagem/sprite.png');
}
.facebook {
	background-position: -125px -43px;
	width: 44px;
	height: 44px;
}

.facebook:hover {
	background-position: -62px -43px;
	width: 44px;
	height: 44px;
}

.flickr {
	background-position: -382px -43px;
	width: 44px;
	height: 44px;
}

.flickr:hover {
	background-position: -316px -43px;
	width: 44px;
	height: 44px;
}

.linkedin {
	background-position: -252px -43px;
	width: 44px;
	height: 44px;
}

.linkedin:hover {
	background-position: -188px -43px;
	width: 44px;
	height: 44px;
}

.instagram {
	background-position: -124px -100px;
	width: 44px;
	height: 44px;
}

.instagram:hover {
	background-position: -61px -100px;
	width: 44px;
	height: 44px;
}

/* /SPRITES */

#container header .contato {
	color: #E9E9E9;
	float: left;
	padding-left: 1em;
	font-size: 1.5em;
}

#container header .contato p a:hover {
		border-bottom: 5px solid #45a7e6;
}

/* Parte de experiências profissionais */

.subtitulos { /* define os estilos para cada subtitulo (h2) */
	font-weight: bold;
	background-color: #CCC;
	padding: 50px 20px;
	border-bottom: 2px dashed #999;
	color:#39f;
}

.box {
	background-color: #D8D8D8;
	font-size: 1.3em;
	padding: 10px 10px;
	border-bottom: 1px dashed #000;
}

.box:nth-last-child(1) {
	border-bottom: 10px solid #39f;
}

.box-side {
	float: left;
	text-align: right;
	padding-right: 20px;
	width: 25%;
	min-height: 100%;
}

.box-content {
	width: 65%;
	padding-left: 20px; 
	float: left;
}

/* Habilidades */

.barraProgress {
	border-radius: 2px;
	-o-border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border: 1px solid #9C9C9C;
	background-color: #F0F0F0;
	width: 800px;
	height: 20px;
	margin: 2px 0 9px 30px;
	float: left;	
}
.progress {
	height: 100%;
	box-shadow: inset 0px -15px 10px #0085DB; /* cria sombra interna com um azul mais escuro, dando o efeito do gradiente */
}

.color {
	background-color: #45A7E6;
}



/* Portfolio */

.portfolio {
	display: table;
	background-color: #CCC;
	padding: 20px;
	width: 30%;
	float: left;
	text-align: center;
	border-bottom: 10px solid #39f;
}

.portfolio img {
	margin: 0 auto;
	width: 360px;
	height: 250px;
}


/* Formulário de contato */

.formContato {
	width: 100%;
	background-color: #2C2C2C;
}

.informacao {
	width: 35%;
	float: left;
	text-align: right;
	padding: 10px 10px 0 10px;
	color: #CCC;
}

.formContato form {
	color: #39F;
	background: #2C2C2C;
	float: left;
	padding: 20px 0 20px 150px;
	font-size: 1.2em;
}
.formContato form label {
	width: 180px;
	float: left;
}
.formContato form p{
	margin-bottom: 10px;
}

.formContato form input[type='text'], input[type='tel'], input[type='email'], textarea {
	width: 300px;
	resize: none;
	border-radius: 5px;
	-o-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px solid #666;
	color: #333
}


.formContato form input[type='submit'] {
	padding: 5px 10px 5px 10px;
	border-radius: 5px;
	-o-border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 0;
	color: #FFFFFF;
	background-image: linear-gradient(#3399ff, #3300FF);
	-o-background-image: linear-gradient(#3399ff, #3300FF);
	-moz-background-image: linear-gradient(#3399ff, #3300FF);
	-webkit-background-image: linear-gradient(#3399ff, #3300FF);
	margin-left: 7.5em;
	cursor: pointer;
}

.formContato form input[type='submit']:hover {
	background-image: linear-gradient(#3300FF, #3399ff);
	-o-background-image: linear-gradient(#3300FF, #3399ff);
	-moz-background-image: linear-gradient(#3300FF, #3399ff);
	-webkit-background-image: linear-gradient(#3300FF, #3399ff);
}

/* Rodapé */
footer {
	text-align: center;
	background-color: #999;
	padding: 1em 0;	/*clear: both;*/
}

/* Botão de voltar para o topo 
 * ele vai acompanhar o scroll da tela 
 */
.voltar-topo {
	padding: 10px;
	position: fixed; /* Fixamos ele na tela */
	bottom: 0; /* Ordenamos que ele se mantenha colado na base */
	right: 00px; /* se posicionará da 50px em relação a direita */
	background-color: #39F;
	
}

.voltar-topo a {
	color: #FFF;
}