/*reset*/
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,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
a{
	text-decoration:none;
	color:none;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*FIM DO RESET*/
/*fonts*/
@font-face {
     font-family:dms;
     src: url('../fonts/dms.otf');
}
@font-face {
     font-family:arial;
     src: url('../fonts/Arial Narrow.ttf');
}
@font-face {
     font-family:arial-negrito;
     src: url('../fonts/Arial Narrow Negrito.ttf');
}
@font-face {
     font-family:arial-black;
     src: url('../fonts/arial-black.ttf');
}
@font-face {
     font-family:social;
     src: url('../fonts/social.ttf');
}
@font-face {
     font-family:chopsic;
     src: url('../fonts/Chopsic.ttf');
}

#main{
	width:100%;
	height:5000px;	
	background-color:#fff;	
	top:0;
}
.header{
	width:100%;
	height:6rem;	
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	align-items:center;
	background:transparent;
	/*box-shadow:0px 2px 3px rgba(0,0,0,0.2);*/	
	position:fixed;
	z-index:100;
}
.header-visivel{
	width:100%;
	height:6rem;	
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	align-items:center;
	background:rgba(0,0,0,0.8);	
	position:fixed;
	z-index:100;
}
.header > .logo{
	width:10%;
	height:5rem;
	margin-left:2rem;
	padding-top:1rem;
	background:transparent;
	text-align:center;
}
.header > .logo img{
	height:4rem;
}
.header > .nav{
	width:70%;
	height:5rem;
	background:transparent;
	line-height:5rem;
	margin-right:4rem;
	
}
.header > .nav ul{
	display:block;
}
.header > .nav li{
	display:inline;
	padding:1.4rem;
	font-family:arial;
	font-size:1.5rem;
}

.header > .nav li a{
	color:rgba(250,250,250,1);
	text-shadow:0px 1px 1px rgba(0,0,0,0.2);
	padding:1rem;
	text-decoration:none;
	transition:0.5s;
	
}
.header > .nav li a:hover{	
	color:rgba(255,120,0,1);	
	
}
.header > .menu{
	width:10%;
	height:5rem;
	margin-right:2rem;
	padding-top:1.5rem;
	background:transparent;
	text-align:center;
	display:none;
}

.header > .menu img{	
	height:3rem;
	opacity:0.6;
}

@media (max-width:500px){
	.header > .nav {
		display:none;
	}
	.header > .menu{
		display:block;
	}	
}
.section-01{
	width:100%;
	height:41rem;
	padding-top:6rem;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;	
	position:relative;
	overflow:hidden;
}
.section-01 .slide {
  z-index:0;
  position:absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  transition:opacity 1.5s ease-in-out; 
  background-position:center;
  background-repeat: no-repeat;
  background-attachment:fixed;
  background-size: cover;
  opacity: 0;
  
}
.section-01 .slide.show{
  opacity: 1; 
  animation:slide-out 10s;
}
@keyframes slide-out{	
	33%{
		transform:scale(1);
	}
	66%{
		transform:scale(1.2);
	}
	100%{
		transform:scale(1);
	}
}
.section-01--titulo{
	width:90%;
	height:10rem;
	margin:0 auto;
	background:transparent;	
	line-height:10rem;
	text-align:center;
	z-index:10;
}
.section-01--titulo h1{
	font-family:arial-black;
	font-size:7rem;
	color:rgba(250,250,250,1);
	text-shadow:0px 3px 5px rgba(0,0,0,0.6);	
	z-index:10;	
}

.section-01--texto{
	width:90%;
	height:10rem;
	margin:0px auto;
	background:transparent;		
	text-align:center;
	margin-top:0px;
	z-index:10;
}
.section-01--texto p{
	font-family:arial-negrito;
	font-size:1.8rem;
	color:rgba(250,250,250,1);
	text-shadow:0px 3px 5px rgba(0,0,0,0.6);
	z-index:10;
}
.section-01--footer{
	width:70%;
	height:5rem;	
	margin:6rem auto;
	background:transparent;		
	display:flex;
	flex-direction:rows;
	justify-content:space-between;
	z-index:10;
}
.section-01--footer-btn1{
	width:48%;
	height:4rem;
	line-height:4rem;
	text-align:center;
	background-image:linear-gradient(to right,rgba(0,0,139,0.6),rgba(100,149,237,1));
	font-family:arial-negrito;
	font-size:2rem;
	color:rgba(250,250,250,1);
	border:2px solid rgba(0,0,0,0.8);
	border-radius:2rem;
	text-shadow:0px 2px 2px rgba(0,0,0,0.8);
	box-shadow:0px 3px 3px rgba(0,0,0,0.8);
	cursor:pointer;
	z-index:10;
}
.section-01--footer-btn1:hover{
	background:transparent;
	color:rgba(255,120,0,1);
	border:2px solid rgba(250,250,250,1);
}
.section-01--footer-btn2{
	width:48%;
	height:4rem;
	line-height:4rem;
	text-align:center;
	background-image:linear-gradient(to right,rgba(100,149,237,1),rgba(0,0,139,0.6));
	font-family:arial-negrito;
	font-size:2rem;
	color:rgba(250,250,250,1);
	border:2px solid rgba(0,0,0,0.8);
	border-radius:2rem;
	text-shadow:0px 2px 2px rgba(0,0,0,0.8);
	box-shadow:0px 3px 3px rgba(0,0,0,0.8);
	cursor:pointer;
	z-index:10;
}
.section-01--footer-btn2:hover{
	background:transparent;
	color:rgba(255,120,0,1);
	border:2px solid rgba(250,250,250,1);
}
.section-02{
	margin:2rem auto;
	width:100%;
	height:82rem;	
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;	
	
}
.section-02 .article-top{
	width:90%;
	height:20rem;
}


.section-02 .article-med{
	width:90%;
}








