*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
}

html,body{
    height: 100%;
}

.mobile{
	display: none !important;
}

a {
	text-decoration: none;
}

p {
	color: #303030;
}

span.destaque{
    color: #010d57;
}

.center{
	width: 80%;
	margin: 0 auto;
}

.clear{
	clear: both;
}

	::-webkit-scrollbar-track {
		background-color: #666fa6;
	}

	::-webkit-scrollbar {
		background-color: #666fa6;
		width: 10px;	

	}

	::-webkit-scrollbar-thumb {
		background-color: #010d57;
	}

	::-webkit-scrollbar-track-piece {
		background-color: #666fa6;
	}

	

div.porcentagem{
	width: 400px;
	max-width: 95%;
	height: 25px;
	background: #b4b0ab;
	margin: 15px 0;
}

div.porcentagem div{
	height: 100%;
	background: black;
	transition: 2s;
}



/* --- Menu --- */

header{
	position: fixed;
	z-index: 100;
	width: 100%;
	background-color: rgba(250,250,250,0.3);
}

header:hover{
	transition: 0.3s;
}

header nav{
	text-align: center;
}

.menu li{
	display: inline-block;
	margin: 3px 1px;
}

.menu div{
	padding: 8px 10px;
	color: black;
	font-size: 15px;
	font-family: 'Arial';
	transition: 0.1s;
}

.menu div:hover{
	background: #061e4e;
	color: white;
}

.menu img{
	height: 20px;
	vertical-align: middle;
}



/* --- Section --- */

section {
	min-height: 100%;
	width: 100%;
	background-color: #fdfdfd;
	padding: 8vw;
}

h2.titulo-pag{
	font-size: 50px;
	color: #061e4e;
	width: 300px;
	font-weight: 600;
}



/* --- Home --- */

section.home{
	display: grid;
	grid-template-columns: 1fr 1fr;
	background: #f3f3f3;
	padding: 0;
}

section.home > * {
	height: 100%;
}

section.home div.foto{
	grid-column: 1;
	background: url('../images/nicchon-lab.jpg') center;
	background-size: cover;
}

section.home article{
	grid-column: 2;
	vertical-align: middle;
	text-align: center;
	padding: 5px;
}

.home article > div{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 10px;
	width: 60%;
}

.home h2{
	font-size: 50px;
	line-height: 50px;
	color: #061e4e;
	font-weight: 600;
}

.home h3{
	margin: 15px auto 45px;
	font-size: 30px;
	line-height: 30px;
	font-weight: 400;
}

.home .button{
	background-color: #061e4e;
	color: white;
	padding: 10px;
	width: 180px;
	margin: 0 auto;
	transition: 0.3s;
}

.home .button:hover{
	background-color: #204897;
}



/* --- Experiencia --- */

section.experiencia{
	display: grid;
	grid-template-columns: 1fr 1fr;
}

section.experiencia article{
	grid-column: 2;
	margin-bottom: 50px;
}

section.experiencia h3{
	display: inline-block;
	position: relative;
	top: 0;
	left: -100px;
	margin: 7px;
	color: #061e4e;
	text-transform: uppercase;
}

section.experiencia h4{
	margin: 10px 0 30px;
	text-transform: uppercase;
	color: #303030;
}



/* --- Formacao --- */

section.formacao{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 20% 1fr;
	row-gap: 50px;
	column-gap: 20px;
}

section.formacao h2.titulo-pag{
	grid-column: 1/3;
	grid-row: 1;
}

section.formacao article h3{
	margin-bottom: 35px;
	text-transform: uppercase;
	color: #061e4e;
}

section.formacao article > div {
	margin: 25px 0;
}

section.formacao article div h4 {
	font-weight: 400;
	font-size: 22px;
	margin: 5px 0;
	color: #061e4e;
}

div.porcentagem.ingles div{
	width: 60%;
}

div.porcentagem.espanhol div{
	width: 33%;
}

div.porcentagem.excel div{
	width: 70%;
}

section.formacao .habilidades ul{
	list-style-position: inside;
	margin-left: 15px;
}

section.formacao .habilidades ul li{
	margin-bottom: 4px;
}





/* --- Sobre --- */

section.sobre{
	display: grid;
	grid-template-columns: 35fr 65fr;
	column-gap: 10vw;
	text-align: center;
}

section.sobre article{
	margin: 10px 0 30px;
}

.sobre .foto{
	max-width: 95%;
	width: 230px;
	height: 250px;
	border-radius: 50vw 50vw 0 0;
	border: black solid 1px;
	background: #303030 url('../images/nicchon.jpg') center;
	background-size: cover;
	margin: 0 auto 30px;
}

.sobre h3{
	font-size: 30px;
	font-weight: 400;
	color: #061e4e;
}

.sobre h4{
	font-size: 20px;
	font-weight: 200;
	color: #303030;
	margin: 10px 0 30px;
}

.sobre div.button, .contato div.button{
	width: 200px;
	padding: 10px;
	margin: 0 auto;
	text-align: center;
	background-color: #f3f3f3;
	color: #303030;
	border: 1px #303030 solid;
	border-radius: 5px;
	transition: 0.3s;
	display: inline-block;
}

.sobre div.button:hover, .contato div.button:hover{
	background-color: #061e4e;
	color: #f3f3f3;
	border: 1px #061e4e solid;
}

.sobre .redes-sociais{
	list-style: none;
	margin: 10px auto;
}

.sobre .redes-sociais li{
	display: inline;
	margin: 2px;
}

.sobre .redes-sociais img{
	width: 32px;
}

.sobre .redes-sociais img:hover{
	padding: 3px;
}

.sobre h2{text-align: left;}

.sobre p{
	margin: 10px 0 60px;
	text-align: left;
}
.sobre article > div{
	width: 100%;
}

.sobre article div.button:first-child{
	margin: 5px 3.5vw 5px;
}



/* --- Footer --- */

footer{
	padding: 10px;
	text-align: center;
	background: #061e4e;
}

footer p{
	color: white !important;
}



/* --- RESPONSIVO --- */

@media screen and (max-width: 768px) {
	*{
		grid-column: 1 !important;
		max-width: 100%;
	}

	body{
		overflow-x: hidden !important;
	}

	section{
		display: block;
		grid-template-columns: none !important;
		grid-template-rows: none !important;
		padding: 35px 15px;
		row-gap: initial !important;
	}

	section > *{
		width: 100%;
	}

	

	h2.titulo-pag{
		margin: 10px 0 35px;
	}



	/* Home */

	.home {
		height: 100%;
		padding: 0 !important;
		grid-template-rows: 4fr 6fr !important;
	}

	.home .foto{
		height: 100% !important;
	}

	/* Experiencia */

	section.experiencia h3{
		left: 0;
		margin: 0;
	}

	h3.data{
		display: none !important;
	}

	section.experiencia h3.data.mobile{
		display: inline-block !important;
	}

	/* Formacao */

	section.formacao article{
		margin-bottom: 35px;
	}

	section.formacao article h3{
		margin-bottom: 20px;
	}

	section.formacao article div{
		margin: 15px 0;
	}

}

