.titulo_travessao {
	font-size: 1.3rem;
	color: var(--color-lightGray);
	font-weight: 500;
	position: relative;
	padding-left: 65px;
	margin-bottom: 25px;
}

.titulo_travessao::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	width: 50px;
	height: 7px;
	background-color: #a9172b;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

section.controle {
	height: 74px;
	background-color: transparent;
}

section.navegacao {
	height: 75px;
	display: grid;
	grid-template-columns: 200px auto 80px;
	position: fixed;
	z-index: 3;
	top: -1px;
	left: 0px;
	width: 100%;
	background-color: hsl(0deg 0% 97%);
	max-width: 100%;
	overflow: hidden;
}

section.navegacao {
	transition: background 500ms ease;
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
}

section.navegacao.modo_escuro {
	background-color: var(--color-azulAjur);
	box-shadow: 0px 4px 8px 6px rgb(0 0 0 / 40%);
}

section.navegacao>div.logo {
	cursor: pointer;
	display: flex;
	align-items: center;
}

section.navegacao>div.logo img {
	width: 120px;
}

section.navegacao.modo_escuro>div.logo img {
	display: none;
}

section.navegacao.modo_escuro>div.logo {
	background-image: url(/img_2025/logo_full_white.png);
	background-repeat: no-repeat;
	background-size: 120px;
	background-position: left center;
}

section.navegacao>div.botoes {
	display: grid;
	grid-template-columns: repeat(3, 150px) 50px;
	align-items: center;
	justify-content: space-around;
	gap: 20px;
}

section.navegacao>div.botoes>button:nth-child(-n+3) {
	color: var(--color-azulAjur);
	font-size: 1.2rem;
	font-weight: 500;
	font-family: var(--font-Roboto);
	letter-spacing: 1.5px;
}

section.navegacao>div.botoes>button:nth-child(-n+3):hover {
	color: var(--color-white);
	background-color: var(--color-azulAjur);
}

section.navegacao.modo_escuro>div.botoes>button:nth-child(-n+3) {
	background-color: var(--color-azulAjur);
	color: var(--color-white);
}

section.navegacao.modo_escuro>div.botoes>button:nth-child(-n+3):hover {
	background-color: var(--color-white);
	color: var(--color-azulAjur);
}

section.navegacao>div.botoes>button:nth-of-type(4) {
	background-image: url(/img_2025/whatsapp.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 35px;
	aspect-ratio: 1/1;
}

section.navegacao>div.botoes>button:nth-of-type(4):hover {
	background-image: url(/img_2025/whatsApp_invert.png);
}

section.navegacao>div.login {
	display: flex;
	align-items: center;
	justify-content: center;
}

section.navegacao .hamburger {
	display: flex;
	flex-direction: column;
	gap: 8.5px;
	width: 30px;
	height: 30px;
	justify-content: flex-start;
	transition: all 250ms;
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	-ms-transition: all 250ms;
	-o-transition: all 250ms;
}

section.navegacao .hamburger.active {
	position: relative;
	rotate: 45deg;
}

section.navegacao .hamburger .barra {
	pointer-events: none;
	width: 100%;
	background-color: var(--color-dark);
	aspect-ratio: 12/1;
	transition: all 250ms;
	-webkit-transition: all 250ms;
	-moz-transition: all 250ms;
	-ms-transition: all 250ms;
	-o-transition: all 250ms;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
}

section.navegacao .hamburger.active .barra {
	position: absolute;
}

section.navegacao .hamburger.active .barra:nth-of-type(1) {
	top: 14.5px;
	left: 50%;
	transform: translate(-50%, -50%);
}

section.navegacao .hamburger.active .barra:nth-of-type(2) {
	opacity: 0;
}

section.navegacao .hamburger.active .barra:nth-of-type(3) {
	top: 13.5px;
	rotate: 90deg;
}

section.navegacao.modo_escuro .hamburger .barra {
	background-color: white;
}

section.infoFinal {
	background-color: #353535;
	color: white;
	padding: 20px;
}

section.menu_mobile {
	transition: right 350ms;
	-webkit-transition: right 350ms;
	-moz-transition: right 350ms;
	-ms-transition: right 350ms;
	-o-transition: right 350ms;
}

section.menu_mobile {
	position: fixed;
	top: 74px;
	z-index: 5;
	right: -600px;
	width: 250px;
	background-color: white;
	border-bottom-left-radius: 5px;
	padding: 10px 0 10px 10px;
	font-family: var(--font-Mohave);
	font-size: 1.2rem;
	box-shadow: -6px 7px 10px 0px #7a7474;
}

section.menu_mobile.active {
	right: 0;
}

section.menu_mobile>div {
	cursor: pointer;
	padding: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	cursor: pointer;
	color: var(--color-azulAjur);
	font-weight: 600;
	font-size: 1.5rem;
}

section.menu_mobile>div:hover {
	background-color: hsl(206 68% 22% / 1);
	color: white;
}

section.menu_mobile>div+div {
	margin-top: 15px;
}

section.navegacao.modo_escuro section.menu_mobile {
	background-color: var(--color-azulAjur);

}

section.navegacao.modo_escuro section.menu_mobile>div {
	color: white;
}

section.navegacao section.menu_mobile button {
	width: 95%;
}

section.menu_mobile .btn-whatsApp {
	background-color: white;
	background-position-x: 110px;
	background-size: 28px;
}

section.navegacao.modo_escuro section.menu_mobile .btn-whatsApp {
	background-color: unset;
}

section.navegacao.modo_escuro section.menu_mobile .btn-whatsApp:hover {
	background-color: hsl(206 68% 22% / 1);
}

section.infoFinal>div:nth-child(1) {
	background-image: url(../img_2025/logo_full_white.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	min-height: 120px;
}

section.infoFinal .infoFooter {
	display: flex;
	margin-top: 50px;
}

section.infoFinal .infoFooter>div {
	display: flex;
	flex-direction: column;
	width: calc(100% / 3);
}

section.infoFinal .infoFooter>div.social {
	align-items: flex-end;
}

section.infoFinal .infoFooter>div.suporte {
	margin-right: auto;
	margin-left: calc(calc(100% / 3) / 2);
}

section.infoFinal .infoFooter>div>div:nth-child(1) {
	font-size: 22px;
	height: 45px;
}

section.infoFinal .infoFooter>div *:nth-child(n + 2) {
	color: white;
	text-decoration: unset;
	font-size: 14px;
	min-height: 25px;
}

section.infoFinal .infoFooter>div>div:first-of-type,
section.infoFinal .infoFooter .social>*:last-child {
	cursor: default;
	height: unset;
}

section.infoFinal .infoFooter>div>div:nth-child(1) {
	font-size: 22px;
	height: 45px;
}

section.infoFinal .infoFooter>div.ajur>div,
section.infoFinal .infoFooter>div.suporte>div[data-ajuda],
section.infoFinal .infoFooter>div.social>div[data-ajuda] {
	cursor: pointer;
}

section.infoFinal .redesIcon {
	display: flex;
	align-items: center;
}

section.infoFinal .redesIcon>div {
	background-size: contain;
	width: 35px !important;
	height: 35px !important;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 25px;
	margin-right: 15px;
	cursor: pointer;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

section.infoFinal .redesIcon>div:nth-of-type(1) {
	background-image: url(../img_2025/facebook_circle_bw.png);
}

section.infoFinal .redesIcon>div:nth-of-type(1):hover {
	background-image: url(../img_2025/facebook_circle.png);
}

section.infoFinal .redesIcon>div:nth-of-type(2) {
	background-image: url(../img_2025/instagram_bw.png);
}

section.infoFinal .redesIcon>div:nth-of-type(2):hover {
	background-image: url(../img_2025/instagram.png);
}

section.infoFinal .redesIcon>div:nth-of-type(3) {
	background-image: url(../img_2025/youtube_bw.png);
}

section.infoFinal .redesIcon>div:nth-of-type(3):hover {
	background-image: url(../img_2025/youtube.png);
}

section.infoFinal .ssl {
	text-align: center;
	margin-top: 35px;
}

section.infoFinal .ssl img {
	height: 50px;
}

footer {
	text-align: center;
	font-size: 13px;
	color: #999999;
	line-height: 20px;
	background-color: #2a2929;
}

section.conta_criada {
	margin-block: 50px;
	min-height: calc(100vh - 76px - 40px - 435.91px);
}

section.conta_criada .titulo {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 50px;
	color: green;
}

section.conta_criada>div:not(.titulo) {
	font-size: 1.2rem;
}

section.conta_criada li {
	margin-top: 25px;
}

section.conta_criada span[data-email-cadastro] {
	letter-spacing: 3px;
	font-weight: 600;
	text-decoration: underline;
	color: var(--color-azulAjur);
}

section.login {
	position: fixed;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-Roboto);
}

section.login>div {
	position: relative;
	padding: 35px;
	padding-inline: clamp(10px, 2vw, 35px);
	width: clamp(320px, 500px, calc(100vw - 50px));
	background-color: hsl(0deg 0% 0% / 79%);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: 8px 8px 12px hsl(22deg 0% 25% / 80%);
}

section.login.comunicado>div {
	width: clamp(320px, 812px, calc(100vw - 50px));
	color: white;
	background-color: black;
	font-size: 1.2rem;
	font-weight: 300;
}

section.login.comunicado>div .titulo {
	text-align: center;
	font-size: 2rem;
	padding-block: 25px;
}

section.login.comunicado>div>div div:not(.titulo) {
	font-weight: 100 !important;
	line-height: 25px;
}

section.login.comunicado>div>div div:not(.titulo)+div {
	margin-top: 12px;
}

section.login.comunicado>div>div div.detalhes {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
	background-color: var(--color-danger);
	padding: 5px;
	font-weight: normal !important;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
}

section.login.comunicado>div>div div.detalhes span {
	font-weight: 600;
	margin-right: 5px;
}

section.login form {
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	color: white;
	padding: 10px;
}

section.login form>div:first-of-type {
	height: 50px;
	font-weight: 600;
	font-size: 1.3rem;
	user-select: none;
}

section.login form>div:nth-child(n + 2) {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

section.login form button[data-acessar] {
	min-width: 175px;
	max-width: 175px;
}

section.login form div.label {
	font-weight: 500;
	font-size: 1.1rem;
	min-width: 65px;
}

section.login form input {
	width: 100%;
}

section.login .lembrarSenha {
	margin-top: 70px;
}

section.login .lembrarSenha>button {
	width: max-content;
}

section.login .lembrarSenha>div {
	display: none;
}

section.login .lembrarSenha>div>button {
	margin-top: 5px;
}

@media only screen and (min-width: 1100px) {

	section.menu_mobile,
	section.menu_mobile.active {
		right: -100vw;
	}

	section.navegacao div.hamburger {
		display: none;
	}
}

@media only screen and (max-width: 890px) {
	section.infoFinal .infoFooter {
		flex-direction: column;
		gap: 35px;
	}

	section.infoFinal .infoFooter>div.suporte {
		margin-right: unset;
		margin-left: unset;
	}

	section.infoFinal .infoFooter>div.social {
		align-items: flex-start;
	}

	section.comunicado.fadeIn.login>div>div>div:nth-of-type(2),
	section.comunicado.fadeIn.login>div>div>div:nth-of-type(3),
	section.comunicado.fadeIn.login>div>div>div:nth-of-type(5),
	section.comunicado.fadeIn.login>div>div>div:nth-of-type(6),
	section.comunicado.fadeIn.login>div>div>div:nth-of-type(7) {
		display: none;
	}

}

@media only screen and (max-width: 1100px) {
	section.navegacao {
		grid-template-columns: 200px 80px;
		justify-content: space-between;
	}

	section.navegacao>div.botoes {
		display: none;
	}

	section.navegacao>div.login>button {
		display: none;
	}

	section.navegacao>div.botoes>button:nth-child(-n+2) {
		display: none;
	}
}