/*
	Resets
========================================================================== */
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	background: #FFF;
}

a {
	text-decoration: none;
	padding: 0;
	margin: 0;
	color: #1E1E1E;
}

ul, ol {
	list-style: outside none;
	padding: 0;
	margin: 0;
	font-size: 0;
}

p {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #1E1E1E;
	line-height: 24px;
	font-weight: 400;
	padding: 0;
	margin: 0;
}

p strong {
	font-weight: 700;
}

/*
	Estilo Gerais
========================================================================== */
.transition {
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}


/*
	Captcha
========================================================================== */
.grecaptcha-badge {
	z-index: 1;
}

/*
	Estilos da LGPD
========================================================================== */
.lgpd {
	background: #05387E;
	padding: 10px;
	overflow: hidden;
	position: fixed;
	bottom: 0px;
	width: 100%;
	z-index: 200;
	color: #FFF;
	display: none !important;
}

.lgpd.esconde {
	display: none;
}

.lgpd .aviso {
	float: left;
	font-size: 14px;
}

.lgpd .aviso a {
	color: #FFF;
}

.lgpd .aviso a:hover {
	color: #1B5728
}

.lgpd .fechar-aviso {
	float: right;
}

.lgpd .fechar-aviso .close-lgpd {
	color: #FFF;
	font-weight: 900;
	font-size: 20px;
}

.lgpd .fechar-aviso .close-lgpd:hover {
	color: #1B5728;
}

/*
	Estilos padrão para todo site
========================================================================== */
.bgcor01 { background-color: #1B5728; }
.bgcor02 { background-color: #FE7C36; }
.bgcor03 { background-color: #1E1E1E; }
.bgcor04 { background-color: #D9D9D9; }

.bgcor01-hover:hover { background-color: #1B5728 !important; }
.bgcor02-hover:hover { background-color: #FE7C36 !important; }
.bgcor03-hover:hover { background-color: #1E1E1E !important; }

.opacity-hover:hover { opacity: 0.6; }

.cor01-hover:hover, .cor01 { color: #1B5728 !important; }
.cor02-hover:hover, .cor02 { color: #FE7C36 !important; }
.cor03 { color: #1E1E1E; }
.cor04 { color: #A0A0A0; }

.fillcor01, .fillcor01-hover:hover svg { fill: #1B5728 !important; }
.fillcor02, .fillcor02-hover svg:hover { fill: #FE7C36 !important; }

.text-small { font-size: 0.6rem; }

/*
	Estilo do Top Header
========================================================================== */
header {
	border-top: 10px solid #1B5728;
	margin-top: 1px;
}

header .top-header {
	border-top: 10px solid #FE7C36;
	margin-top: 1px;
}

/*
	Estilo do Menu
========================================================================== */
.menu .item a {
	color: #FFF;
	font-weight: 700;
}

.offcanvas {
	max-width: 90%;
}

.menu-fixed .main-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	border-top: 1px solid #FFF;
}

.menu-fixed .top-header {
	padding-bottom: 47px;
}

/*
	Estilo do Ao Vivo
========================================================================== */
.embed-area {
	background-color: #1E1E1E;
}

.embed-area .video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}

.embed-area .video-container iframe, 
.embed-area .video-container object, 
.embed-area .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
/*
	Estilo dos formulários
========================================================================== */
.form-element {
	position: relative;
}

.form-element input {
	color: #1B5728;
}

.input {
	border: solid 1px #1B5728;
	border-radius: 0rem;
	background: none;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	color: #FFFFFF;
	transition: border 150ms cubic-bezier(0.4,0,0.2,1);
	width: 100%;
	min-height: 50px;
}

.input.textarea {
	height: 200px;
	color: #1B5728;
}

.user-label {
	position: absolute;
	left: 25px;
	color: #1B5728;
	pointer-events: none;
	transform: translateY(1rem);
	transition: 150ms cubic-bezier(0.4,0,0.2,1);
}

.input:focus, 
input:valid {
	outline: none;
	border: 1.5px solid #1B5728;
}

.input:focus ~ label, 
/* input:valid ~ label, */
.input.valid ~ label, /* Alterado para usar a classe 'valid' */
.input.textarea:focus ~ label, 
textarea:valid ~ label {
	transform: translateY(-50%) scale(0.8);
	background-color: #FFFFFF;
	padding: 0 .2em;
	color: #1B5728;
}


.form-element input[type="submit"],
.form-element .submit {
	border: none;
	width: 100%;
	padding: 0.7rem 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	background-color: #1B5728;
	color: #FFF;
	font-weight: bold;
	min-height: 50px;

	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}

.form-element input[type="submit"]:hover,
.form-element .submit:hover {
	background-color: #FE7C36;
}

/* Select */

.input-select {
	border: solid 1px #1B5728;
	border-radius: 0rem;
	background: none;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	color: #1B5728;
	transition: border 150ms cubic-bezier(0.4,0,0.2,1);
	width: 100%;
	min-height: 50px;
}

.input-select:focus ~ label, select:valid ~ label {
	transform: translateY(-50%) scale(0.8);
	background-color: #FFFFFF;
	padding: 0 .2em;
	color: #1B5728;
}

/* Checkbox */

.form-check .input-check {
	border: solid 1px #1B5728 !important;
	border-radius: 0rem;
	background: none;
	padding: 0.7rem 1rem;
	font-size: 1rem;
	color: #1B5728;
	/* transition: border 150ms cubic-bezier(0.4,0,0.2,1); */
	width: 25px;
	height: 25px;
}

.form-check .input-check ~ label {
	/* transform: translateY(-50%) scale(0.8); */
	/* background-color: #FFFFFF; */
	font-size: 1rem;
	padding: 0 .2em;
	color: #1B5728;
}

.form-check .input-check:focus ~ label, 
.form-check input:valid ~ label {
	transform: translateY(0%) scale(1);
	background-color: #FFFFFF;
	padding: 0 .2em;
	color: #1B5728;
}


/*
	Estilo do Rodapé
========================================================================== */

/**
 * Sincore 
 */
 .sincore {
	margin-bottom: 10px;
}

.sincore a .icon {
	display: inline-block;
	background-color: #FFF;
	width: 130px;
	text-align: right;
	text-indent: 30px;

	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.sincore a .text {
	display: inline-block;
	width: 130px;
	background-color: #FFF;
	text-indent: -280px;
	overflow: hidden;
	vertical-align: middle;

	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.sincore a:hover .text {
	text-indent: 0px;
}

.sincore a:hover .icon {
	width: 80px;
}
