 /* IMPORTANDO FONTES */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab');
/* RESET CSS */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* CLASSES GERAIS */
.overlay{
	height: 100%;
	width: 100%;
	background: #FFFFFF70;
	display: flex;
	justify-content: center;
	align-items: center;
}
.overlay--green{
	background: #69B284E6;
	justify-content: space-between;
	align-items: flex-end;
}
/* NAVBAR */
.navbar{
	height: 15vh;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
.navbar__link{
	margin: 0 1.5vw;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 3vh;
	color: #69B284;
	text-decoration: none;
	text-transform: uppercase;
}
.navbar__logo{
	width: 12vh;
}
@media (max-width: 768px){
	.navbar{
		height: 12vh;
	}
	.navbar__link{
		margin: 0 2.5vw;
		font-size: 3.5vw;
	}
	.navbar__logo{
		width: 8vh;
	}
}
/* HOME */
.home{
	height: 85vh; 
	background: url(PROA-Assets/home.jpg) top no-repeat;
	background-size: cover;
}
.home__title{
	width: 37vw;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 4vw;
	color: #FFF;
	text-transform: uppercase;
}
@media (max-width: 768px){
	.home{
		height: 88vh; 
	}
	.home__title{
		width: 75vw;
		margin-left: 10vw;
		font-size: 6.5vw;
	}
}
/* HISTORIA */
.history{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
.history__logo{
	width: 20vw;
	margin-left: 5vw; 
}
.history__text{
	width: 38vw;
	font-family: 'Roboto Slab', serif;
	font-size: 1.2vw;
	margin: 1vw 0;	
}
.history__gallery{
	padding: 1px 0;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: center;
}
.history__image{
	width: 26vw;
	opacity: 0.6;
}
.history__image:first-child{
	margin-bottom: 1vh;
}
.history__image:last-child{
	margin-top: 1vh;
}
@media (max-width: 768px){
	.history{
		padding-bottom: 10vh;
		flex-direction: column;
	}
	.history__logo{
		width: 60vw;
		margin: 10vh 0 5vh;
	}
	.history__text{
		width: 80vw;
		margin: 2vh 0;
		font-size: 3vw;
		line-height: 5vw;
	}
	.history__gallery{
		display: none;
	}
}
/* PAINEL */
.panel{
	padding: 6vh 0;
	background:#64B486;
	box-shadow: 0px 10px 10px #00000010;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
}
.button{
	height: 7vw;
	width: 7vw;
	margin: 0.8vw;
	padding: 0.9vw;
	border: 1px #707070;
	border-radius: 50%;
	background: #FD837E;
	box-shadow: 1px 1px 5px #00000033;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.1vw;
	color:#FFF;
	text-transform: uppercase;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 1s;
}
.button:hover{
	transform: translateY(-20px);
	box-shadow: 4px 8px 5px #00000033;
}
.button:active{
	transform: rotate(90deg);
}
@media (max-width: 768px){
	.panel{
		height: auto;
		flex-wrap: wrap;
	}
	.button{
		height: 25vw;
		width: 25vw;
		margin: 3vw 2vw;
		font-size: 3.9vw;
	}
	.panel-display{
		position: relative;
	}
}
/* DISPLAY */
.close{
	display: none;
}
.display__container{
	background: #FFF9BF;
	display: none;
	position: relative;
}
.display__title{
	width: 20vw;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 3.2vw;
	text-transform: uppercase;
}
.display__text{
	width: 30vw;
	font-family: 'Roboto Slab', serif;
	font-size: 1.2vw;
	margin: 1vw 0;	
}
.display__text--list{
	margin: 2vw 0 0.5vw;
}
.display__list{
	list-style: none;
}
.display__list-item{
	font-family: 'Roboto Slab', serif;
	font-size: 1.2vw;
}
.display__image{
	width: 30vw;
}
.active{
	padding: 8vh 0 8vh 5vw;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
@media (max-width: 768px){
	.display{
        height: 100%;
		position: absolute;
		z-index: 100;
		top: 0;
	}
	.close{
		font-size: 4vh;
		display: block;
		position: absolute;
		z-index: 200;
		top: 3vh;
		right: 3vh;
        cursor: pointer;
	}
	.display__container{
		height: 100%;
		width: 100vw;
	}
	.display__title{
		width: 80vw;
		margin: 8vh 0 0;
		font-size: 11vw;
	}
	.display__text{
		width: 80vw;
		margin: 1vh 0 0;
		font-size: 3vw;
	}
	.display__text--list{
		margin: 2vh 0 1vh;
	}
	.display__list-item{
		font-size: 3vw;
	}
	.display__image{
		width: 100%;
	}
	.active{
		padding: 0;
		flex-direction: column;
	}
}
/* MÍDIA */
.midia{
	padding: 8vh 5vw 12vh;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}
.midia__title{
	margin-bottom: 5vh;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 3vw;
	text-transform: uppercase;
}
.midia__row{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-start;
}
.midia__video{
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
}
.midia__iframe{
	height: 25vw;
	width: 45vw;
}
.midia__column{
	height: 25vw;
	width: 15vw;
	margin-left: 5vw;
	text-decoration: none;
	color: #000;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.midia__image{
	width: 100%;
}
.midia__subtitle{
	margin-top: 1vw;
	font-family: 'filson-soft', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 1vw;
}
@media (max-width: 768px){
	.midia{
		padding: 4vh 5vw 10vh;
	}
	.midia__title{
		font-size: 9vw;
	}
	.midia__iframe{
		height: 56vw;
		width: 90vw;
	}
	.midia__subtitle{
		margin-top: 2vh;
		font-size: 4vw;
	}
	.midia__row{
		flex-wrap: wrap;
	}
	.midia__column{
		height: auto;
		width: 42vw;
		margin: 6vh 0 0;
	}
}
/* FOOTER */
.footer{
	background: url(PROA-Assets/footer.jpg) top no-repeat;
	background-size: cover;
	position: relative;
	color: #FFF;
}
.footer__column{
	width: 35vw;
	margin: 10vh 5vw 15vh;
}
.contribute__title{
	margin-bottom: 3vh;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 2.5vw;
	text-transform: uppercase;
}
.contribute__text{
	margin-bottom: 8vh;
	font-family: 'Roboto Slab', serif;
	font-size: 1.2vw;
}
.contact__title{
	margin-bottom: 2vh;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.8vw;
	text-transform: uppercase;
}
.contact__list{
	list-style: none;
}
.contact__list-item{
	margin-bottom: 1vh;
	font-family: 'Roboto Slab', serif;
	font-size: 1.5vw;
}
.social{
    margin-top: 2.5vh;
}
.social-midia{
    margin: 0 1vw;
    font-family: 'Roboto Slab', serif;
    font-size: 2vw;
    color: #FFF;
    text-decoration: none;
    transition: all 0.5s;
}
.facebook:hover{
    color: #3b5998;
}
.contact__text{
	margin: 4vh 0 0;
	font-family: 'Roboto Slab', serif;
	font-size: 1.5vw;
}
.footer__image{
	width: 26vw;
	position: absolute;
	left: calc(50% - 13vw);
	bottom: 40px;
}
.footer__info{
	width: 30vw;
	margin:0 3vw 15vh 0;
}
.footer__title{
	margin-bottom: 2vh;
	font-family: 'balboa-plus-fill', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.8vw;
	text-transform: uppercase;
}
.footer__text{
	font-family: 'Roboto Slab', serif;
	font-size: 1.2vw;
}
.vnw{ 
    height: 40px;
	background: #f16337;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
}
.vnw__text{
    font-family: 'filson-soft', sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
    color: #30368c;
}
.vnw__link{
    color: #30368c;
}
@media (max-width: 768px){	
	.overlay--green{
		flex-direction: column;
	}
	.footer__column{
		width: 90%;
		margin-bottom: 5vh; 
		padding: : 5vh 5vw 0 0;
		align-self: flex-start;
	}
	.contribute__title{
		font-size: 6.5vw;
	}
	.contribute__text{
		font-size: 5vw;
	}
	.contact__title{
		font-size: 5.5vw;
	}
	.contact__list-item{
		font-size: 4.5vw;
	}
    .social-midia{
        margin: 0 3vw;
        font-size: 8vw;
    }
	.contact__text{
		font-size: 4.5vw;
	}
	.footer__box{
		width: 100vw;
		display: flex;
		flex-flow: row nowrap;
		justify-content: space-between;
		align-items: center;
		align-self: flex-start;
	}
	.footer__image{
		width: 30vw;
		position: relative;
		left: 10vw;
        bottom: 0;
	}
	.footer__info{
		width: 50vw;
		margin: 0 5vw 0;
	}
	.footer__title{
		font-size: 4vw;
	}
	.footer__text{
		font-size: 4vw;	
	}
    .vnw__text{
        font-size: 12px;
    }
}



