:root{
	--verde-escuro: #004032;

	--font: 'InterTight';
}

@font-face {
	font-family: 'InterTight';
	src: url("../fonts/InterTight-VariableFont_wght.ttf") format("truetype");
}
*{
	padding: 0;
	margin: 0;
}

body, html{
 	background-size: 100vw 100vh;
	color: var(--verde-escuro);
	background-color: black;
	cursor: default;
	margin: 0;
	padding: 0;
	overflow: hidden;
	touch-action: none;
	outline: none;
	-o-user-select: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: none;
	font-family: var(--font);
}
input, textarea, button, select, a{
    -webkit-tap-highlight-color: transparent;
}
body *{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
img{
	border: hidden;
}
input, textarea, button, select, a{
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	border: hidden;
}
textarea:focus, input:focus, select:focus, button:focus{
    outline: none;
}
input:focus, input:active:focus{
    outline: none;
    text-decoration: none;
}
input:focus{
    text-decoration: none;
}
input:hover{
    text-decoration: none;
}
a{
	-o-user-select: none;
    user-select: none;
	outline: none;
	text-decoration: none;
}
a:focus, a:active:focus{
    outline: none;
}
a:focus{
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}


.container{
	background-image: url("../img/bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100vw 100vh;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.block-landscape{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	
	background: linear-gradient(161.2deg, #004032 -7.29%, #017A3F 50.2%, #91BF20 101.02%);

	color:white;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 4vw;
	text-align: center;
}
.block-landscape .logo-ads{
	width: 20vw;
}
.block-landscape .text-ads{
	/* Sua mídia onde a dúvida vira decisão */
	margin-top: 1vw;
	font-family: var(--font);
	font-size: 2vw;
	text-align: center;

	color: #E2EDC5;

}
.icon-orientation{
    margin-top: 10vw;
    width: 5vw;
    transform: rotate(90deg);
	animation: rotation 1s infinite ease-in-out alternate-reverse;
}
@keyframes rotation {
	from {
		transform: rotate(90deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.orientation{
    /* margin-top: 1vw; */
    font-family: var(--font);
    font-size: 4vw;
    line-height: 5vw;
    text-align: center;
    color: #E2EDC5;
}
@media screen and ( orientation:landscape ){
	/* rotate bg for landscape */
	.block-landscape{
		display: flex;
	}
	.container-home{
		gap: 1vw !important;
	}
	#logo{
		margin-top:0% !important;
		width: 15% !important;
	}
	.titulo{
		font-size: 1.5vw !important;
	}
	.container-upload{
		width: 70vw !important;
    	height: 36vh !important;
	}
	.btn-confirmar{
		width: 22vw !important;
		height: 10vh !important;
		font-size: 2.5vw !important;
	}
	.filelabel{
		width: 88% !important; 
		height: 60% !important;
	}
	.icon{
		width: 8% !important;
	}
	.filelabel:hover .title{
		color: var(--verde-escuro) !important;
	}
	.filelabel .title {
		font-size: 1.5vw !important;
		color: #acd169 !important;
		text-align: center !important;
	}
	.cancelar-upload{
		width: 22vw !important;
		height: 10vh !important;
		font-size: 2.5vw !important;
	}
}
.bg-falso{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}