/* Fontes */
.poppins-medium {
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.poppins-semibold {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.poppins-bold {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.poppins-extrabold {
	font-family: "Poppins", sans-serif;
	font-weight: 800;
	font-style: normal;
}

/* ====== MENU DE NAVEGAÇÃO ====== */
.nav-bar {
	width: 100%;
	min-height: 64px;
	background: #011C40;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	box-sizing: border-box;
	position: relative;
	z-index: 10;
}

.nav-logo {
	display: flex;
	align-items: center;
	height: 40px;
}

.nav-logo svg {
	height: 20px;
	width: auto;
	display: block;
}

.nav-menu {
	display: flex;
	align-items: center;
	transition: none;
}

.nav-menu ul {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu li {
	display: flex;
	align-items: center;
}

.nav-menu a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.15rem;
	padding: 0.5rem 0.7rem;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}

.nav-menu a:hover {
	background: #fff;
	color: #1448B2;
}

.nav-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 20;
}

.nav-hamburger span {
	display: block;
	width: 28px;
	height: 4px;
	background: #fff;
	margin: 4px 0;
	border-radius: 2px;
	transition: 0.3s;
}

.nav-hamburger.ativo span:nth-child(1) {
	transform: translateY(12px) rotate(45deg);
}

.nav-hamburger.ativo span:nth-child(2) {
	opacity: 0;
}

.nav-hamburger.ativo span:nth-child(3) {
	transform: translateY(-12px) rotate(-45deg);
}

@media (max-width: 900px) {
	.nav-bar {
		padding: 0 1rem;
	}

	.nav-menu ul {
		gap: 1.2rem;
	}
}

@media (max-width: 700px) {
	.nav-bar {
		min-height: 56px;
		padding: 0 1rem;
	}

	.nav-logo {
		height: 36px;
	}

	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100vw;
		background: #1448B2;
		flex-direction: column;
		align-items: flex-start;
		padding: 1.5rem 1rem;
		box-sizing: border-box;
		display: none;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	}

	.nav-menu.menu-aberto {
		display: flex;
	}

	.nav-menu ul {
		flex-direction: column;
		gap: 1.2rem;
		width: 100%;
	}

	.nav-hamburger {
		display: flex;
	}
}

/* Fundo 3D da página de login */
#cena3d {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
	pointer-events: none;
}

.cabecalho-simples,
.container-login,
.rodape-simples {
	position: relative;
	z-index: 1;
}

.coluna-vazia {
	flex: 1;
	max-width: 16.666%;
}

.coluna-formulario {
	position: relative;
	z-index: 2;
}

/* Novo CSS para página de login com layout responsivo em duas colunas */
body {
	margin: 0;
	background: #f6f8fa;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 10vw;
	background-image: url(../images/lateral.svg);
	background-size: 10vw auto;
	background-repeat: repeat-y;
	background-position-x: 100%;

}

section {
    max-width: 100%;
}

.cabecalho-simples {
	width: 100%;
	min-height: 60px;
	background: #1448B2;
	color: #fff;
	display: flex;
	align-items: center;
	padding: 0 2rem;
	box-sizing: border-box;
}

.container-login {
	flex: 1;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	max-width: 900px;
	width: 100%;
	margin: 3rem auto 2rem auto;
	padding: 2rem;
	box-sizing: border-box;
	overflow-x: auto;
	align-items: center;
	align-content: flex-start;
}

.hero {
	flex: 0 0 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
}

.hero .logo {
	min-height: 100px;
	max-height: 150px;
	height: auto;
}

.coluna-texto {
	flex: 3;
	max-width: 50%;
	padding-right: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.coluna-texto h1 {
	font-size: 2rem;
	color: #d32f2f;
	line-height: 1.3;
	text-shadow:
		0.5px 0.5px 0 #011C40,
		-0.5px 0 0 #011C40,
		0.5px 0 0 #011C40,
		-0.5px 0.5px 0 #011C40,
		0 0 2px #011C40;
}

.coluna-texto .texto-pequeno {
	font-size: 0.8rem;
	color: #555;
	margin-top: -10px;
	margin-bottom: 1.5rem;
}

.coluna-texto a {
	color: #1448B2;
}

.coluna-formulario {
	flex: 2;
	/* min-width: 280px; */
	max-width: 350px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #011C40;
	padding: 2rem;
	border-radius: 30px;
	text-align: center;
	color: #b5c9e6;
}

.coluna-formulario:after {
	content: "";
	width: 80px;
	height: 80px;
	position: absolute;
	top: 90%;
	left: 75%;
	pointer-events: none;
	background-image: url(../images/estrelasLaranjas.svg);
	background-repeat: no-repeat;
}

.coluna-formulario a {
	color: #fff;
	/* text-decoration: none; */
}

.cadastrar {
	margin-top: 2rem;
	margin-bottom: 0;
}

a.small {
	font-size: 75%;
}

.full-post {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-group {
	position: relative;
}

input[type="text"],
input[type="password"] {
	width: 100%;
	padding: 0.75rem 2.5rem 0.75rem 1rem;
	border: 1px solid #ccc;
	border-radius: 30px;
	font-size: 1rem;
}

.icon-user,
.icon-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #1448B2;
}

.toggle-password {
	cursor: pointer;
}

.login-button {
	background: #1448B2;
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 0.75rem;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s;
}

.login-button:hover {
	background: #d32f2f;
}

.error-container {
	color: #d32f2f;
	font-size: 0.95em;
	margin-bottom: 0.5rem;
}

.info-message a {
	color: #d32f2f;
	text-decoration: none;
}

.coluna-texto ::selection,
.coluna-formulario ::selection,
body ::selection {
	background: #ffe3db;
	color: #d32f2f;
}

.rodape-simples {
	width: 100%;
	min-height: 40px;
	padding: 0 2rem;
	background: #011C40;
	color: #b5c9e6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95em;
	margin-top: 2rem;
	box-sizing: border-box;
}

/* .form-cadastro{
	margin-bottom: 40px;
} */

.cadastrar {
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.4rem;
	padding: 10px 20px;
	background-color: #e74928;
	border-radius: 30px;
	margin-top: 0;
	margin-bottom: 30px;
	box-shadow: 0 5px 0 #b33c21;
	transition: margin 0.2s, background-color 0.2s;
}

.cadastrar:hover {
	background-color: #ff882c;
	margin-top: 5px;
	margin-bottom: 25px;
}

@media (max-width: 950px) {
	.container-login {
		max-width: 100vw;
		padding: 1rem;
		gap: 1.5rem;
	}
}

@media (max-width: 700px) {
	body {
		padding-right: 0;
		background-image: none;
	}

	.container-login {
		flex-direction: column;
		align-content: center;
		gap: 1.5rem;
		padding: 1rem;
		max-width: 100vw;
	}

	.coluna-texto {
		order: 2;
		padding-right: 0;
		text-align: center;
		max-width: 80%;
	}

	.coluna-formulario {
		order: 1;
		max-width: 100%;
		min-width: 0;
	}
}

@media (min-width: 1200px) {
	.no-telefone {
		position: fixed;
		bottom: 0;
		left: 0;
		width: calc(50% - 450px);
		height: 100%;
		max-height: 1000px;
		background-image: url(../images/noTelefone.webp);
		background-repeat: no-repeat;
		background-size: auto 100%;
		background-position: right bottom;
	}
}