/* Importar Arquivos Básicos
================================================== */
@import url("resetar.css");        /* Reseta a Estrutura HTML */




/* ==========================================================================
Definições Básicas da Estrutura
========================================================================== */
/* Resetar Elementos da Estrutura */
/*@-webkit-keyframes bugfix { from { padding:0; } to { padding:0; } }*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, textarea, select, radio, checkbox, fieldset, form, input, button, reset, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }


/* Estrutura Geral */
html, body { height: 100%; }

html {
	background: #fff;
	overflow-x: hidden; /* barra de rolagem horizontal */
	overflow-y: auto; /* barra de rolagem vertical */
	-webkit-text-size-adjust: none;
}

body {
	color: #9b9b9b;
	font-weight: 300;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	-webkit-animation: bugfix infinite 1s;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}




/* ==========================================================================
Tipografia
========================================================================== */
/* Títulos */
h1 { font-size: 2.1em; }
h2 { font-size: 1.6em; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.0em; }
h5 { font-size: 0.8em; }
h6 { font-size: 0.6em; }

h1, h2, h3, h4, h5, h6 {
	line-height: 100%;
	clear: both;
	font-weight: 200;
	padding: 12px 2px 5px 2px;
}

h1 span, h2 span, h3 span, 
h4 span, h5 span, h6 span { color: #18a7a2; }



/* ==========================================================================
Links
========================================================================== */
a {
	text-decoration: none;
	color: #ff9522;
	outline: none;
}

a:hover, a:focus {
	color: #18a7a2;
	outline: none;
}

a, a > * {
	-webkit-transition: all 200ms cubic-bezier(0.255, 0.835, 0.645, 0.400);
	   -moz-transition: all 200ms cubic-bezier(0.255, 0.835, 0.645, 0.400);
		-ms-transition: all 200ms cubic-bezier(0.255, 0.835, 0.645, 0.400);
		 -o-transition: all 200ms cubic-bezier(0.255, 0.835, 0.645, 0.400);
			transition: all 200ms cubic-bezier(0.255, 0.835, 0.645, 0.400);
	
	-webkit-transition-timing-function: cubic-bezier(0.255, 0.835, 0.645, 0.400);
	   -moz-transition-timing-function: cubic-bezier(0.255, 0.835, 0.645, 0.400);
		-ms-transition-timing-function: cubic-bezier(0.255, 0.835, 0.645, 0.400);
		 -o-transition-timing-function: cubic-bezier(0.255, 0.835, 0.645, 0.400);
			transition-timing-function: cubic-bezier(0.255, 0.835, 0.645, 0.400);
}




/* ==========================================================================
Campos e Formulário Padrão
========================================================================== */
a.button,
button {
	background: #ff9522;
	color: #fff;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	font-size: 0.85em;
	font-weight: 200;
	letter-spacing: 1px;
	text-transform: uppercase;
	border: none;
	outline: none;
	cursor: pointer;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 15px;
	padding: 18px 20px;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	     	border-radius: 3px;	
	-webkit-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;
	   -moz-box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;
	        box-shadow: 0 -3px rgba(0, 0, 0, 0.1) inset;
}

.button:hover,
.button:active,
button:hover,
button:active { background: #f38c40; }




/* ==========================================================================
Estrutura do Layout
========================================================================== */
#corpo {
	width: 100%;
	height: auto;
	min-height: 100%;
	position: relative;
	display: block;
	top: 0;
	margin:0;
	padding: 0;
}

body .mc-cycle {
	height:100%;
	left:0;
	overflow:hidden;
	position:fixed;
	top:0;
	width:100%;
	z-index:-1;
}

div.mc-image {
	height:100%;
	width:100%;
	background-position:center right;
	background-repeat:no-repeat;
	overflow:hidden;

	-webkit-transition: opacity 1s ease-in-out; 
	   -moz-transition: opacity 1s ease-in-out; 
	     -o-transition: opacity 1s ease-in-out; 
	        transition: opacity 1s ease-in-out;
	
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}

.mc-old-browser .mc-image { overflow:hidden; }




/* Colunas do Layout
========================================================================== */
.coluna {
	float: left;
	width: 50%;
	padding: 0 3em;
	min-height: 320px;
	position: relative;
	text-align: right;
}

.coluna:nth-child(2) {
	box-shadow: -1px 0 0 rgba(0,0,0,0.1);
	text-align: left;
}

.coluna p {
	font-weight: 200;
	font-size: 2em;
	padding: 0 0 0.5em;
	margin: 0;
	line-height: 1.0;
}




/* Navegador do Layout
========================================================================== */
/* Menu Principal */
.nav {
	font-size: 1.6em;
	display: block;
	position: absolute;
	height: auto;
	
}

.nav.direita { position: relative; margin-left: 50px; }

.nav h1 {
	color: #ddd;
	margin-left: -45px;
}

.nav i {
	font-size: 1.1em;
	color: #ff9522;
	margin-top: 3px;
	margin-left: -45px;
	position: absolute;
}
.nav a {
	color: #9b9b9b;
	display: block;
	white-space: nowrap;
	font-weight: 200;
	margin: 0 0 5px 0;
}

.nav a:hover { color: #18a7a2; }

.menu { margin-top: -5px; margin-right: -10px; }
.menu i { color: #ff9522; font-size: 1.1em; }

.menu > li { 
	text-decoration: none;
	padding: 0 12px 0 10px;
	list-style-type: none;
	display: inline-block;
	cursor: pointer;
	border: 0;
	-webkit-transition: color 0.5s ease-in-out;
	   -moz-transition: color 0.5s ease-in-out;
	        transition: color 0.2s ease-in-out;
}
.menu > li.barra { border-right: 1px dotted #b7b7b7; }

.menu li a { color: #9b9b9b; }
.menu li a:hover { color: #18a7a2; }




/* Janela Modal
========================================================================== */
.modal {
	position: absolute;
	display: none;
	width: auto;
	height: auto;
	padding: 15px 30px;
}

.modal a.fechar-modal {
	position: absolute;
	top: -16px;
	right: -16px;
	display: block;
	width: 20px;
	height: 20px;
	text-indent: -9999px;
	background: url(../imagens/icn-fechar-a.png) no-repeat 0 0;
	background-size: 20px auto;
}

.modal a.fechar-modal:hover { 
	background: url(../imagens/icn-fechar-h.png) no-repeat 0 0; 
	background-size: 20px auto;
}




/* Seção Principal
========================================================================== */
#principal {
	padding-top: 10%;
	max-width: 69em;
	margin: 0 auto;
}

.espacamento { padding-top: 20px; }

/* Logo Principal */
.logo-unifil {
	margin-top: 5px;
	width: 230px;
	height: auto;
}



