@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');



/*   Options    */


:root{
	--cor-1: #004593;
	--cor-2: #f27707;
	--cor-3: #060a3d;
	--cor-4: #1d74ff;

	--cor-txt-1: #021423;
	--cor-txt-2: #ffffff;
	

	--cor-bg-1: #e9e9e9; 
	--cor-bg-2: #ffffff;
	


	--font: "Mulish", sans-serif;

	--fs-h1: 52px;
	--fs-h2: 44px;
	--fs-h3: 32px;
	--fs-h4: 26px;
	--fs-h5: 22px;
	--fs-h6: 20px;
	--fs-p: 16px;
	--fs-p-s: 13px;
	--fs-p-ss: 10px;

	--lh-h1: 58px;
	--lh-h2: 50px;
	--lh-h3: 34px;
	--lh-h4: 28p;
	--lh-h5: 24px;
	--lh-h6: 22px;
	--lh-p: 20px;
	--lh-p-s: 18px;
	--lh-p-ss: 14px;


}













/*   General    */


body{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--font);
}


img{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}



.mobile-show{
	display: none;
}



[style*="--aspect-ratio"] > :first-child {
  width: 100%;
}

[style*="--aspect-ratio"] > img {  
  height: auto;
}

@supports (--custom:property) {
  [style*="--aspect-ratio"] {
    position: relative;
  }
  
  [style*="--aspect-ratio"]::before {
    content: "";
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  
  [style*="--aspect-ratio"] > :first-child {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }  
}


.video{
	width: 100%;
	border-radius: 0;
	overflow: hidden;
	-webkit-box-shadow: -10px 10px 30px 0px rgba(0,0,0,0.6);
-moz-box-shadow: -10px 10px 30px 0px rgba(0,0,0,0.6);
box-shadow: -10px 10px 30px 0px rgba(0,0,0,0.6);
border: var(--cor-1) solid 3px;
border-radius: 3px;
}






















/* Textos */



h1{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h1);
	line-height: var(--lh-h1);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h2{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h2);
	line-height: var(--lh-h2);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h3{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h3);
	line-height: var(--lh-h3);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h4{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h4);
	line-height: var(--lh-h4);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h5{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h5);
	line-height: var(--lh-h5);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

h6{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-h6);
	line-height: var(--lh-h6);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

p{
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

label{
	width: 100%;
	height: auto;
	margin: 0 0 5px 0;
	padding: 0;
	font-weight: 400;
	font-size: var(--fs-p);
	line-height: var(--lh-p-s);
	font-family: var(--font);
	text-align: left;
	color: var(--cor-txt-1);
}

label em{

	font-size: var(--fs-p-s);
	line-height: var(--lh-p-s);

}

label a{
	cursor: pointer;
	color: var(--cor-2);
	text-decoration: underline;
}

label a:hover{
	color: var(--cor-2);
	}






















/* Formulários */



textarea {
	width: 100%;
	height: 200px;
	margin: 0 0 16px;
	padding: 15px 20px;

	color: var(--cor-txt-1);

	font-family: var(--font);
	font-weight: 400;
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	text-align: left;


	border: var(--cor-senaria) 1px solid;
	border-radius: 10px;
	background: var(--cor-bg-claro);

}


input {
	width: 100%;
	height: auto;
	margin: 0 0 15px;
	padding: 15px 20px;

	color: var(--cor-txt-1);

	font-family: var(--font);
	font-weight: 400;
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	text-align: left;


	border: none;
	border-radius: 10px;
	background: var(--cor-bg-2);

}



.bt-cadastrar{
	width: auto !important;
	padding: 15px 40px !important;
	margin: 15px 0 60px;
}
.bt-entrar{
	width: 100%;
	padding: 15px 0;
	background: var(--cor-1);
	color: var(--cor-txt-2);
	font-weight: 700;
	text-align: center;
	margin: 20px 0 60px 0;
}


input::-webkit-input-placeholder {
	/* Edge */
	color: var(--cor-txt-1);
}

input:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: var(--cor-txt-1);
}

input::placeholder {
	color: var(--cor-txt-1);
}




.box-envie-sua-foto {
	width: 200px;
	height: 200px;
	margin: 0 0 15px;
	padding: 0;
	display: flex;
	justify-content: center;

	color: var(--cor-txt-1);
	font-family: var(--font);
	font-size: var(--fs-p);
	line-height: var(--lh-p);

	background: var(--cor-bg-2);

	font-weight: 400;
	text-align: center;
	border-radius: 1000px;
}

.box-envie-sua-foto label {
	width: 80%;
	cursor: pointer;
	margin: 0;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
}

.box-envie-sua-foto label span {
	color: var(--cor-2);
	font-weight: 700;
}

.box-envie-sua-foto label img {
	width: 40%;
	height: auto;
	margin: 0 0 15px;
	padding: 0;
	cursor: pointer;
}

#mediaFile {
	position: absolute;
	top: -1000px;
}

#profile {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background: ;
	background-size: cover;
	background-position: center center;
	border: none;
	border-radius: 1000px;
	overflow: hidden;
}


.box-aceites {
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.form-check-inline {
	width: 20px;
	height: 20px;
	-webkit-appearance: none;
	margin: 0 10px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
}

.form-check-inline:focus {
	outline: none;
}

.form-check-inline:checked:after {
	content: '✓';
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	position: relative;

	color: var(--cor-2);
}

.box-aceites label {
	width: calc(100% - 30px);
	height: auto;
	font-family: var(--font);
	font-size: var(--fs-p);
	line-height: var(--lh-p);
	font-weight: 400;
	color: var(--cor-txt-1);
	padding: 0;
	margin: 0;
	display: inline-block;
	position: relative;

}

.box-aceites label a {
	color: var(--cor-1);
	cursor: pointer;
	text-decoration: none;
}

.box-aceites label a:hover {
	color: var(--cor-1);
	text-decoration: none;
}







/*the container must be positioned relative:*/

.inner{
	max-height: 280px !important;
	margin: 0 10px 0 0;
}

.bootstrap-select.open > .dropdown-menu{
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
	margin: 60px 0 0 0;
	
}
.bootstrap-select > .dropdown-menu{
	display: none;
	opacity: 0;
	max-height: 330px !important;
	visibility: hidden;
	overflow: hidden;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(0.85) translateY(-5px);
	-ms-transform: scale(0.85) translateY(-5px);
	transform: scale(0.85) translateY(-5px);
	-webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	top: 0;
	height: 30vh;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){
	width: 100%;
}
.bootstrap-select>.dropdown-toggle{
	background: var(--cor-bg-2);
	border: 0;
	width: 100%;
	display: block;
	padding: 15px 20px;
	margin: 0 0 15px;
	color: var(--cor-txt-1);
	font-size: var(--fs-p);
	font-weight: 400;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	cursor: pointer;
	font-family: var(--font);
}
.bootstrap-select>.dropdown-toggle.bs-placeholder, .bootstrap-select>.dropdown-toggle.bs-placeholder:active, .bootstrap-select>.dropdown-toggle.bs-placeholder:focus, .bootstrap-select>.dropdown-toggle.bs-placeholder:hover{
	color: var(--cor-txt-1);
}
.dropup .dropdown-toggle::after, .dropdown .dropdown-toggle::after {
	position: absolute;
	content: " ";
	right: 20px;
	width: var(--fs-p);
	height: var(--fs-p);
	background: url(../img/select-abrir.png) center center no-repeat;
	background-size: contain;
	transition: all 0.5s;
	border: none;
	margin: 5px 0 0 0;
}

.open .dropdown-toggle::after {
    position: absolute;
	content: " ";
	right: 20px;
	width: var(--fs-p);
	height: var(--fs-p);
	background: url(../img/select-abrir.png) center center no-repeat;
	background-size: contain;
	transform: rotate(180deg);
	transition: all 0.5s;
	border: none;
	margin: 5px 0 0 0;
}



.dropdown-menu{
	box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	-webkit-box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	-moz-box-shadow: 0px 0px 15px rgba(60, 76, 150, 0.1);
	position: absolute;
	left: 0;
	background: var(--cor-bg-2);
	min-width: 100% !important;
	width: 100% !important;
	display: block;
}
.bootstrap-select .dropdown-menu a{
	display: block;
	padding: 8px 15px;
	margin: 0 10px;
	font-size: var(--fs-p);
	font-weight: 400;
	color: var(--cor-txt-1);
	
}

.bootstrap-select .dropdown-menu a:hover{
	background: var(--cor-bg-1);
	color: var(--cor-txt-1);
	border-radius: 10px;
	}

.bootstrap-select .dropdown-menu a span:hover{
	

}


.bootstrap-select .dropdown-menu li:first-child{
	display: none;
}

/* Scroll Bar */
/* width */
.inner::-webkit-scrollbar {
	width: 8px;

}

/* Track */
.inner::-webkit-scrollbar-track {
	background: transparent;
	margin: 10px 10px 10px 0;
}

/* Handle */
.inner::-webkit-scrollbar-thumb {
	background: var(--cor-1);
	border-radius: 100px;
}

/* Handle on hover */
.inner::-webkit-scrollbar-thumb:hover {
	background: var(--cor-1);
	border-radius: 100px;
}























/*   Popup    */


.fundo-popup{
	width: 100%;
	height: 100%;
	position: fixed;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
	display: none;
	top:0;
	left: 0;
}

.fundo-popup:after{
	content: " ";
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 18;
	background: var(--cor-3);
	opacity: 0.8;
	position: absolute;
}

.popup{
	width: 80%;
	height: auto;
	margin: 0;
	padding: 40px;
	background: var(--cor-bg-2);
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	z-index: 21;
}


.fechar-popup{
	width: 100%;
	height: 100%;
	position: absolute;
	margin: 0;
	padding: 0;
	z-index: 19;
	cursor: pointer;
}














/* Index */



.body-index{
	background: var(--cor-bg-1);
	
}


.body-index h1{
	width: 100%;
	height: 100px;
	margin: 50px 0;
	padding: 0;
	background: url(../img/logo.svg) center center no-repeat;
	background-size: contain;
	overflow: hidden;
	text-indent: -9999px;
}








/*   Responsive    */



@media (max-width: 620px) {
	
	.vire-de-lado{display: flex;}
	

}


@media (max-width: 992px) {
	.sm-hide{display: none;}
	.md-hide{display: none;}
	.lg-hide{display: none;}
	.xl-hide{display: none;}

	
	.mobile-show{display: flex !important;}
	.mobile-hide{display: none !important;}

	.vh-100-desktop{height: auto;}





	.form-check-inline {
		width: 40px;
		height: 40px;
	}


	.box-aceites label {
		width: calc(100% - 50px);

	}

	.bt-entrar{
		margin: 0 0 15px;
	}


	

}



@media (min-width: 768px) and (max-width: 992px) {
	.lg-hide{display: none;}
	.xl-hide{display: none;}


	
}


@media (min-width: 992px) and (max-width: 1200px) {
	
	.xl-hide{display: none;}
	
}

@media (min-width: 1201px) and (max-width: 1440px) {
	
		
	
}

@media (min-width: 1441px) and (max-width: 1920px) {

	

}


@media (min-width: 1921px) {
	
	
	
}