@charset "utf-8";

/*
CSS Base 
Estilos de textos, títulos, links para cada projeto de layout
*/

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    tap-highlight-color: transparent;
	-o-tap-highlight-color: transparent;
	-moz-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent;
	
	-webkit-text-size-adjust: none;
	-webkit-appearance: none;
}

*:focus {
	outline: none;
}

/*
**********************************
TAGs HTML base
*/

body, div, footer, section, nav, aside, 
form, fieldset, input, select, textarea, 
h1, h2, h3, h4, h5, h6, 
embed, iframe, table, img, ul, 
p, span, a, li {
	border: 0;
	margin: 0;
	padding: 0;
}

body {
	background-color: #FFF;
	color: #222222;
	font-family: 'SourceSansPro-Regular', "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 15px;
	line-height: 1.2em;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

h1 {
	color: #222222;
	font-family: 'SourceSansPro-Bold';
	font-size: 2.8em;
	line-height: 1.2em;
	margin-bottom: 0.75em;
	text-transform: uppercase;
}

h2 {
	color: #222222;
	font-family: 'SourceSansPro-Bold';
	font-size: 2em;
	line-height: 1.2em;
	margin-bottom: 0.9em;
}

h3 {
	color: #222222;
	font-size: 1.6em;
	line-height: 1.2em;
	margin-bottom: 1.1em;
}

h4 {
	color: #222222;
	font-family: 'SourceSansPro-Bold';
	font-size: 1.4em;
	line-height: 1.2em;
	margin-bottom: 1.5em;
}

h5, .titulo-h5 {
	color: #222222;
	font-family: 'SourceSansPro-Bold';
	font-size: 1.2em;
	line-height: 1.4em;
	margin-bottom: 0.2em;
}

p, li, .paragrafo  {
	font-family: 'SourceSansPro-Light';
	font-size: 1.2em;
	line-height: 1.4em;
	margin-bottom: 1.5em;
}

a {
	color:#8a9bb4;
	display: inline-block;
	outline: none !important;
	text-decoration: underline;
}

a:hover, a:active {
	color:#555c7b;
	text-decoration: none;
}

strong {
	font-family: 'SourceSansPro-Semibold';
}

.lista li p {
	font-size:1em;
}

.lista li h4 {
	font-size:1.16em;
}