@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&family=Noto+Sans:wght@400;700&display=swap');

:root{
	--azul_maldonado: #100f21;
	--vermelho_maldonado: #ED1C24;
	--social_grey: rgba(255,255,255,0.3); 
	--light_grey: rgba(255,255,255,0.7);
	--chumbo: rgb(30,30,30);
	--overlay_margin: 0.6rem;
	--negative-offset: -9.5rem;
}

body {
	box-sizing: border-box;
    background-color: white;
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	overflow: hidden !important;
	font-family: 'Noto Sans', sans-serif;
}

.sidebar{
	display: flex;
	flex-flow: column;
	background-color: var(--azul_maldonado);
	width: 17rem;
	height: inherit;
	flex-shrink: 0;
}

.logoHolder{
	box-sizing: border-box;
	background-color: rgba(0,255,0, 0);
	height: 8rem;
	padding-top: 0.8rem;
}

.hamburger{
	display: none;
}

.hamburger:hover{
	opacity: 25%;
	cursor: pointer;
}

.underLogo{
	border-bottom: solid 0.1px rgba(255,255,255,0.3);
	width: 90%;
	margin: 0.5rem auto;
}

.logoHolder > img{
	display: block;
	height: 90%;
	margin: auto;
}

.painel{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: rgba(0,255,0, 0);
	padding: 1rem;
	flex: 0 1 50%;
}

.painel > h5{
	text-transform: uppercase;
}

.painel > * {
	margin: 0;
	text-align: center;
	padding: 1rem;
	font-weight: 100;
}

.social{
	margin: auto;
	padding: 1rem;
}

.social > *{
	box-sizing: border-box;
	display: inline-block;
	width: 1.7rem;
	height: 1.7rem;
	border: solid 1px var(--social_grey);
	margin: 0.2rem;
}

.fa{
	color: var(--social_grey);
}

.fa:hover{
	color: white;
}

.exchangeDisplay{
	box-sizing: border-box;
	position: relative;
	width: 74%;
	height: 3rem;
	outline: solid 1px var(--social_grey);
	padding: 0;
	overflow: hidden;
}

.currenciesContainer{
	position: absolute;
	display: flex;
	flex-flow: column;
	width: 100%;
	padding: 0;
	margin: 0;
	animation: currencySlide 12s infinite;
}

.currency{
	box-sizing: border-box;
	display: flex;
	flex-flow: column;
	align-items: center;
	height: 3rem;
	margin: 0;
	padding: 0.5rem 0;
	color: white;
}

.currency h5{
	font-size: 0.80rem;
}
.currency h6{
	font-size: 0.70rem;
}

.currency h5, .currency h6{
	margin: 0;
	padding: 0;
}

@keyframes currencySlide{
	  0% {top: 0 }
	 10% {top: 0 }
	 15% {top:  -3rem }
	 35% {top:  -3rem }
	 40% {top:  -6rem }
	 60% {top:  -6rem }
     65% {top:  -9rem }
     85% {top:  -9rem }
	 90% {top: -12rem   }
	100% {top: -12rem   }
}


a{
	color: lightgray;
	text-decoration: none;
}

a:hover, a.currentPage{
	color: white;
}

a.currentPage{
	font-weight: 1000;
}

.sidefooter{
	margin-top: 4rem;
	display: flex;
	flex-direction: column;
	background-color: var(--azul_maldonado);
	flex-grow: 1;
	text-align: center;
}

.dev{
	margin-top: auto;
	margin-bottom: 1.5rem;
	justify-self: flex-end;
}

.dev > p{
	color: lightgrey;
	font-size: 0.75rem;
}

.dev > img{
	width: 50%;
}

.address{
	margin-top: 1.2rem;
}

.address > p {
	margin: 0.5rem;
	color: lightgray;
	font-family: Arial, sans-serif;
	font-size: 0.9rem;
}

.mainTitle{
	display: block;
}

.cardsContainerHeader .white, .cardsContainerHeader span{
	margin-left: 1rem;
	margin-right: 1rem;
}

.mainTitle > p,.cardsContainerHeader .white:first-of-type{
	text-transform: uppercase;
	font-size: 1.20rem;
	text-align: center;
}

.cardsContainerHeader .white{
	text-align: center;
}

.mainTitle > span, .cardsContainerHeader span{
	display: flex;
	width: 100%;
	border: solid 1px grey;
}

.cardsContainerHeader span{
	border: solid 1px white;
	opacity: 80%;
	margin-bottom: 1rem;
	width: calc( 100% - 2rem );
}

.content{
	overflow-y: scroll;
	width: 100%;
	padding: 0 2.4rem;
}

.imagesContainer{
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 0.75rem;
	background-color: white;
	flex: 1 1 100%;
	padding: 2rem 0;
	padding-bottom: 0;
}

.imagesContainer .void{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.imageBox{
	position: relative;
	display: block;
	box-sizing: border-box;
	background-color: white;
	height: 20rem;
	overflow: hidden;
}

.imageBox:hover .image{
	transform: scale( 1.025 );
}

.image{
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.overlay {
  position: absolute;
	top: var( --overlay_margin );
	left: var( --overlay_margin );
  height: calc(100% - var( --overlay_margin ) * 2);
  width: calc(100% - var( --overlay_margin ) * 2);
  opacity: 0%;
  transition: .2s ease;
  background-color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
  align-items: center;
}

.overlay a{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.buttonsContainer{
	display: flex;
	justify-content: center;
}

.button {
	border: solid 2px var(--chumbo);
	width: 8rem;
	margin-top: 1.5rem;
	margin-left: 0.4rem;
	margin-right: 0.4rem;
	text-align: center;
	padding: 0 0.5rem;
	cursor: pointer;
	user-select: none;
}

.button * {
	text-transform: uppercase;
	transition: 0.2s ease;
	color: var( --chumbo );
	margin: 0.5rem;
}

.button:hover{
	background-color: var( --chumbo );
}

.button:hover *{
	color: white;
}

.lane{
	position: relative;
	min-height: 10.5rem;
	background-color: var(--azul_maldonado);
	color: white;
	overflow: hidden;
	text-align: center;
	margin-top: 1.5rem;
	margin-bottom: 0;
	z-index: -2;
	margin: 0;
}

.lane > img{
	position: absolute;
	top: 0;
	z-index: -1;
}

.lane > img{
	top: -18rem;
	left: 0;
	opacity: 30%;
	filter: blur(5px);
	width: 100%;
	object-fit: cover;
}


.cardsContainer > div>h2, p.white{
	margin-top: 0;
	color: white;
	text-align: left;
	width: 90%;
	margin-right: auto;
}

.cardsContainer > *{
	position: relative;
	top: var( --negative-offset );
}


.row{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	overflow: hidden;
}

.backLane{
	--size: 4rem;
	position: absolute;
	z-index: -1;
	top: calc( 50% - var( --size ) * 0.5 );
	left: -150%;
	background-color: var( --azul_maldonado );
	width: 500%;
	height: var(--size);
	overflow: hidden;
}

.backLane img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	filter: blur( 5px );
	opacity: 30%;
}

.card{
	position: relative;
	background-color: white;
	margin: 1rem;
	padding: 1rem;
	max-width: 16rem;
	flex: 1 1 12rem;
	border: solid 1px white;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
	text-align: center;
	font-family: 'Montserrat';
}

.card p{
	text-align: left;
}

.partnersContainer{
	padding: 1rem;
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: space-around;
}



.partner{
	display: flex;
	width: 13rem;
	justify-content: center;
	align-items: center;
	margin: 1rem;
}

.partner>img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.filler{
	height: 3rem;
}

.backOffset{
	margin-top: var( --negative-offset )
}

.footerCardsContainer{
	display: flex;
	flex-flow: row;
	flex-wrap: nowrap;
	padding: 2rem;
	justify-content: space-evenly;
}

.footerCard{
	border: solid 1px rgba(255,255,255,0.3);
	margin: 0.5rem;
	padding: 0.75rem;
	flex-basis: 100%;
	max-width: 24rem;
	flex-shrink: 1;
	flex-grow: 1;
	font-family: 'Montserrat';
}

.footerCard h3{
	font-weight: 1000;
	margin: 0.25rem;
}

.footerCard p, ul{
	text-align: left;
	font-weight: 100;
}

.overlay .titulo{
	text-transform: uppercase;
}

.overlay .categoria{
	font-style: italic;
}

.overlay > span{
	width: 15%;
	border: solid 1px var(--light_grey);
	border-radius: 1px;
}

.overlay > p{
	margin: 0.5rem;
	color: white;
	font-size: 3rem;
	transition: inherit;
	text-align: center;
}

.overlay:hover{
	opacity: 70%;
}

.overlay:hover p{
	font-size: 1rem;
}

.videoContainer{
	position: relative;
	display: flex;
	background-color: black;
	margin-bottom: 1rem;
	user-select: none;
	padding: 0;
	height: 30vw;
	min-height: 25%;
	max-height: 50vh;
	overflow: hidden;
}

.videoContainer video{
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
}

.videoContainer .mutedIcon{
	display: flex;
	align-items: center;
	justify-content: center;
	--size: 10rem;
	width: var( --size );
	height: var( --size );
	position: absolute;
	bottom: calc( 50% - var( --size ) * 0.5 );
	right: calc( 50% - var( --size ) * 0.5 );
	font-size: calc( var( --size ) * 0.7 );
	border-radius: calc( var( --size ) * 0.5 );
}

.videoContainer .fa{
	color: rgba( 255, 255, 255, 0.3 );
}

.mobileSidebar{
	position: absolute;
	left: -100%;
	z-index: 2;
	/*display: flex;*/
	display: flex;
	flex-flow: column;
	/*background-color: var(--azul_maldonado);*/
	background-color: rgb( 0, 0, 0, 0.97 );
	width: 17rem;
	height: inherit;
	flex-shrink: 0;
	transition: 0.125s ease;
	overflow: hidden;
}

@media only screen and ( max-width: 1500px ){
	.imagesContainer{
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media only screen and (max-width: 1080px){
	.footerCardsContainer{
		flex-flow: column;
	}
	.footerCard{
		max-width: 100%;
		min-height: 10rem;
	}
}

@media only screen and (max-width: 800px){
	body{
		flex-flow: column;
		overflow: scroll;
	}
	
	.content{
        padding:  1.2rem;
        padding-bottom: 0;
		width: auto;
	}
	
	.mobileSidebar.show{
		left: 0;
	}
	
	.sidebar{
		width: 100vw;
		height: calc( 20% - 3px );
		max-height: 14rem;
		border-bottom: 3px solid var(--vermelho_maldonado);
	}
	
	.videoContainer video{
		max-height: 80vh;
	}
	
	.sidebar .logoHolder{
		position: relative;
		height: 100%;
	}
	
	.hamburger{
		position: absolute;
		display: inline-block;
		right: 2.0rem;
		top: 50%;
		transform: translate( 0, -50% );
	}
	
	.underLogo{
		display: none;
	}
	
	.sidebar .painel,.sidefooter{
		display: none;
	}
	
	.mobileSidebar .painel{
		margin-top: auto;
		margin-bottom: auto;
	}
	
	.mobileSidebar .social{
		margin-top: 3rem;
		margin-bottom: 1rem;
	}
	
	.overlay{
		opacity: 40%;
	}
	
	.imagesContainer{
		display: grid;
		background-color: white;
		flex: 1 1 100%;
		padding: 2rem 0;
	}
	
	.imageBox{
		height: 14rem;
	}
	
	.overlay > p{
		margin: 0.5rem;
		color: white;
		font-size: 1rem;
		transition: inherit;
	}
}

@media only screen and (max-width: 500px){
	.videoContainer{
		height: 14rem;
	}
	
	.videoContainer .mutedIcon{
        --size: 5rem;
	}
	.imagesContainer{
		grid-template-columns: 1fr;
	}
}

@media only screen and ( max-height: 750px ){
	.dev{
		display: none;
	}
}

@media only screen and ( max-height: 670px ){
	.address{
		display: none;
	}
	
}

@media only screen and ( max-height: 420px ){
	.exchangeDisplay{
		display: none;
	}
}

.screenSizeDisplay{
	position: fixed;
	top: 80%;
	padding: 0.2rem 4rem;
	left: 50%;
	margin-left: -6rem;
	background-color: blue;
}

.hidden{
	display: none !important;
}