:root {
	--verde: #22b14c;
	--verde-escuro: #148f77;
	--navy: #272930;
	--navy-claro: #34363e;
	--texto: #333333;
	--texto-suave: #777777;
	--borda: #dddddd;
	--fundo-campo: #ffffff;
	--fundo-suave: #f7f8f9;
}

* { box-sizing: border-box; }

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--texto);
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

.lp {
	display: flex;
	align-items: stretch;
	min-height: 100vh;
}

.lp__marca {
	width: 42%;
	max-width: 620px;
	flex-shrink: 0;
	position: sticky;
	top: 0;
	align-self: flex-start;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 64px 56px;
	color: #ffffff;
	text-align: center;
	background:
		radial-gradient(900px 520px at 12% 88%, rgba(34, 177, 76, 0.30), transparent 62%),
		radial-gradient(700px 420px at 90% 8%, rgba(34, 177, 76, 0.16), transparent 60%),
		linear-gradient(160deg, var(--navy-claro) 0%, var(--navy) 100%);
}

.lp__logo {
	display: inline-flex;
	align-self: center;
	align-items: center;
	justify-content: center;
	width: 128px;
	height: 128px;
	padding: 16px;
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.lp__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.lp__marca h1 {
	margin: 32px 0 0;
	font-size: 44px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.lp__marca h1 em {
	font-style: normal;
	color: #5fe08a;
}

.lp__marca p {
	margin: 20px auto 0;
	max-width: 34em;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.lp__conteudo {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	padding: 28px 40px 72px;
	background: var(--fundo-suave);
}

.card {
	width: 100%;
	max-width: 520px;
	background: #ffffff;
	border: 1px solid var(--borda);
	border-radius: 20px;
	padding: 36px 36px 32px;
	box-shadow: 0 18px 50px rgba(39, 41, 48, 0.07);
}

.spinner {
	width: 46px;
	height: 46px;
	border: 4px solid rgba(34, 177, 76, 0.2);
	border-top-color: var(--verde);
	border-radius: 50%;
	animation: girando 0.9s linear infinite;
}

@keyframes girando { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
	.lp { display: block; }

	.lp__marca {
		width: auto;
		max-width: none;
		height: auto;
		position: static;
		padding: 36px 20px 40px;
	}

	.lp__logo {
		width: 96px;
		height: 96px;
		padding: 12px;
		border-radius: 22px;
	}

	.lp__marca h1 {
		margin-top: 22px;
		font-size: 30px;
	}

	.lp__marca p {
		margin-top: 14px;
		font-size: 15px;
	}

	.lp__conteudo { padding: 24px 16px 48px; }

	.card {
		max-width: none;
		padding: 24px 20px;
		border-radius: 16px;
	}
}

@media (max-width: 360px) {
	.lp__marca h1 { font-size: 26px; }
}
