/* 
	Quarter English - Folha de Estilos Principal (Estilo Apple Claro)
	Foco em alta performance, minimalismo premium e legibilidade extrema.
*/

:root {
	--bg-primary: #f5f5f7;
	--bg-secondary: #ffffff;
	--bg-card: #ffffff;
	--text-primary: #1d1d1f;
	--text-muted: #86868b;
	--color-accent: #0071e3; /* Azul Apple Premium */
	--color-accent-light: #4393e6;
	--color-bordeaux: #1d1d1f; /* Tons escuros sóbrios */
	--border-color: #d2d2d7;
	--border-hover: #0071e3;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--radius-full: 9999px;
	--transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset Geral */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border-color: var(--border-color);
}

html {
	scroll-behavior: smooth;
	background-color: var(--bg-primary);
	color: var(--text-primary);
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	min-height: 100vh;
	overflow-x: hidden;
	line-height: 1.5;
	background-color: var(--bg-primary);
}

/* Cabeçalho */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: rgba(255, 255, 255, 0.72);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition-smooth);
}

.site-header.scrolled {
	padding: 0.5rem 0;
	background-color: rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-container {
	max-width: 80rem;
	margin: 0 auto;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.logo-main {
	font-family: 'DM Sans', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: -0.05em;
	color: var(--text-primary);
	line-height: 1;
}

.logo-sub {
	font-family: 'DM Sans', sans-serif;
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	color: var(--text-muted);
	text-transform: uppercase;
	margin-top: 0.125rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-link {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-muted);
	text-decoration: none;
	position: relative;
	transition: var(--transition-smooth);
}

.nav-link:hover {
	color: var(--text-primary);
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-accent);
	transition: var(--transition-smooth);
}

.nav-link:hover::after {
	width: 100%;
}

.btn-portal {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1.25rem;
	border-radius: var(--radius-full);
	background-color: #1d1d1f;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.btn-portal:hover {
	transform: scale(1.02);
	background-color: #333336;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger {
	display: block;
	width: 1.5rem;
	height: 2px;
	background-color: var(--text-primary);
	position: relative;
	transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
	content: '';
	position: absolute;
	width: 1.5rem;
	height: 2px;
	background-color: var(--text-primary);
	transition: var(--transition-smooth);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Seção Hero */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 1.5rem 4rem 1.5rem;
	overflow: hidden;
	background-color: var(--bg-secondary);
	background: radial-gradient(circle at 10% 20%, rgba(0, 113, 227, 0.03) 0%, transparent 50%),
	            radial-gradient(circle at 90% 80%, rgba(0, 113, 227, 0.02) 0%, transparent 50%);
}

.hero-bg-gradients {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.gradient-ball-1 {
	position: absolute;
	top: 20%;
	left: 10%;
	width: 18rem;
	height: 18rem;
	border-radius: 50%;
	background-color: rgba(0, 113, 227, 0.02);
	filter: blur(64px);
	animation: floatAnimation 8s ease-in-out infinite;
}

.gradient-ball-2 {
	position: absolute;
	bottom: 20%;
	right: 10%;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background-color: rgba(0, 113, 227, 0.02);
	filter: blur(64px);
	animation: floatAnimation 8s ease-in-out infinite;
	animation-delay: 2s;
}

.hero-container {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-cols: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 2;
	width: 100%;
}

@media (min-width: 64rem) {
	.hero-container {
		grid-template-columns: 1.2fr 0.8fr;
		align-items: center;
	}
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.badge {
	display: inline-block;
	padding: 0.375rem 1rem;
	border-radius: var(--radius-full);
	background-color: rgba(0, 113, 227, 0.05);
	border: 1px solid rgba(0, 113, 227, 0.1);
	color: var(--color-accent);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

@media (min-width: 48rem) {
	.hero-title {
		font-size: 4rem;
	}
}

.text-gradient {
	background: linear-gradient(135deg, #1d1d1f 30%, #535358 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 2.5rem;
	max-width: 32rem;
}

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
	margin-bottom: 3rem;
}

@media (min-width: 30rem) {
	.hero-actions {
		flex-direction: row;
		width: auto;
		align-items: center;
	}
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: var(--radius-full);
	background: var(--color-accent);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.btn-primary:hover {
	transform: scale(1.02);
	background-color: #0077ed;
}

.btn-icon {
	width: 1.25rem;
	height: 1.25rem;
	margin-left: 0.5rem;
	transition: var(--transition-smooth);
}

.btn-primary:hover .btn-icon {
	transform: translateX(4px);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	border-radius: var(--radius-full);
	background-color: transparent;
	color: var(--color-accent);
	border: none;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.btn-secondary:hover {
	text-decoration: underline;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 0.875rem;
	color: var(--text-muted);
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.bullet-purple {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: var(--color-accent);
}

.bullet-translucent {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: var(--border-color);
}

.hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-wrapper {
	position: relative;
	width: 18rem;
	height: 18rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 48rem) {
	.logo-wrapper {
		width: 24rem;
		height: 24rem;
	}
}

.logo-glow {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 113, 227, 0.04) 0%, transparent 70%);
	filter: blur(20px);
	animation: glowPulse 4s ease-in-out infinite;
}

.logo-brand-circle {
	position: relative;
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid var(--border-color);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
	animation: floatAnimation 6s ease-in-out infinite;
}

@media (min-width: 48rem) {
	.logo-brand-circle {
		width: 18rem;
		height: 18rem;
	}
}

.logo-brand-text {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 4.5rem;
	font-weight: 800;
	color: var(--text-primary);
	background: linear-gradient(135deg, #1d1d1f 0%, #0071e3 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.05em;
}

@media (min-width: 48rem) {
	.logo-brand-text {
		font-size: 6.5rem;
	}
}

/* Seções Padrão */
.career-section {
	background-color: var(--bg-secondary);
	padding: 7rem 1.5rem;
	position: relative;
	z-index: 2;
}

.method-section {
	background-color: var(--bg-primary);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	padding: 7rem 1.5rem;
	position: relative;
	z-index: 2;
}

.path-section {
	background-color: var(--bg-secondary);
	padding: 7rem 1.5rem;
	position: relative;
	z-index: 2;
}

.team-section {
	background-color: var(--bg-primary);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	padding: 7rem 1.5rem;
	position: relative;
	z-index: 2;
}

.guarantee-section {
	background-color: var(--bg-secondary);
	padding: 7rem 1.5rem;
	position: relative;
	z-index: 2;
}

.section-header {
	max-width: 48rem;
	margin: 0 auto 5rem auto;
	text-align: center;
}

.section-badge {
	display: inline-block;
	padding: 0.375rem 1rem;
	border-radius: var(--radius-full);
	background-color: rgba(0, 113, 227, 0.05);
	border: 1px solid rgba(0, 113, 227, 0.1);
	color: var(--color-accent);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
}

.section-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

@media (min-width: 48rem) {
	.section-title {
		font-size: 3rem;
	}
}

.section-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Linha do Tempo de Carreira */
.timeline {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 2rem;
	width: 1px;
	background: linear-gradient(to bottom, var(--border-color), rgba(210, 210, 215, 0.2));
}

@media (min-width: 48rem) {
	.timeline::before {
		left: 50%;
		transform: translateX(-50%);
	}
}

.timeline-item {
	position: relative;
	margin-bottom: 4rem;
	padding-left: 4.5rem;
}

@media (min-width: 48rem) {
	.timeline-item {
		padding-left: 0;
		width: 50%;
	}
	
	.timeline-item.left {
		left: 0;
		padding-right: 3rem;
		text-align: right;
	}
	
	.timeline-item.right {
		left: 50%;
		padding-left: 3rem;
		text-align: left;
	}
}

.timeline-dot {
	position: absolute;
	left: 0.85rem;
	top: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.75rem;
	background-color: rgba(0, 113, 227, 0.05);
	border: 1px solid rgba(0, 113, 227, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	z-index: 5;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

@media (min-width: 48rem) {
	.timeline-dot {
		left: auto;
		right: -1.25rem;
	}
	
	.timeline-item.right .timeline-dot {
		right: auto;
		left: -1.25rem;
	}
}

.timeline-content {
	display: flex;
	flex-direction: column;
}

.timeline-item-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.timeline-item-desc {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Metodologia - Cards */
.cards-grid {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 48rem) {
	.cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.cards-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card-item {
	position: relative;
	border-radius: var(--radius-lg);
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	overflow: hidden;
	transition: var(--transition-smooth);
	cursor: default;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.card-item:hover {
	border-color: #d2d2d7;
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.card-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(0, 113, 227, 0.02) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.card-item:hover .card-glow {
	opacity: 1;
}

.card-content {
	position: relative;
	z-index: 2;
	padding: 2.5rem;
}

.card-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(0, 113, 227, 0.03) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
	transition: var(--transition-smooth);
}

.card-item:hover .card-icon {
	transform: scale(1.1);
}

.card-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.card-desc {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Etapas do Aprendizado */
.path-steps {
	position: relative;
	max-width: 80rem;
	margin: 0 auto 5rem auto;
}

.steps-connecting-line {
	display: none;
	position: absolute;
	top: 6rem;
	left: 12%;
	right: 12%;
	height: 1px;
	background: linear-gradient(to right, rgba(0, 113, 227, 0.05) 0%, rgba(0, 113, 227, 0.2) 50%, rgba(0, 113, 227, 0.05) 100%);
	z-index: 1;
}

@media (min-width: 64rem) {
	.steps-connecting-line {
		display: block;
	}
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	position: relative;
	z-index: 2;
}

@media (min-width: 48rem) {
	.steps-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.steps-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.step-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
	border-color: #d2d2d7;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.step-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.step-number {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	background-color: rgba(0, 113, 227, 0.05);
	border: 1px solid rgba(0, 113, 227, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--color-accent);
	transition: var(--transition-smooth);
}

.step-card:hover .step-number {
	background-color: var(--color-accent);
	color: #ffffff;
	border-color: var(--color-accent);
}

.step-emoji {
	font-size: 1.5rem;
}

.step-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.step-desc {
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

.step-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border-top: 1px solid var(--border-color);
	padding-top: 1.25rem;
}

.step-features li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: var(--text-muted);
}

.step-bullet {
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	background-color: rgba(0, 113, 227, 0.5);
}

/* Painel Pilares */
.pilares-panel {
	max-width: 64rem;
	margin: 0 auto;
	border-radius: var(--radius-xl);
	background: #f5f5f7;
	border: 1px solid var(--border-color);
	padding: 2.5rem;
}

@media (min-width: 48rem) {
	.pilares-panel {
		padding: 3rem;
	}
}

.pilares-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 2rem;
}

.pilares-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 48rem) {
	.pilares-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pilar-card {
	background-color: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	text-align: center;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.pilar-card:hover {
	background-color: #ffffff;
	border-color: #d2d2d7;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pilar-emoji {
	font-size: 2rem;
	display: block;
	margin-bottom: 0.75rem;
}

.pilar-name {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.25rem;
}

.pilar-desc {
	font-size: 0.75rem;
	color: var(--text-muted);
}

/* Equipe */
.team-bg-glows {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.glow-1 {
	position: absolute;
	top: 10%;
	left: -5%;
	width: 20rem;
	height: 20rem;
	border-radius: 50%;
	background-color: rgba(0, 113, 227, 0.01);
	filter: blur(64px);
}

.glow-2 {
	position: absolute;
	bottom: 10%;
	right: -5%;
	width: 24rem;
	height: 24rem;
	border-radius: 50%;
	background-color: rgba(0, 113, 227, 0.01);
	filter: blur(64px);
}

.team-grid {
	max-width: 80rem;
	margin: 0 auto 4rem auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
}

.team-card {
	flex: 0 0 calc(50% - 0.75rem);
	max-width: calc(50% - 0.75rem);
	background-color: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 1.25rem;
	text-align: center;
	transition: var(--transition-smooth);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

@media (min-width: 36rem) {
	.team-card {
		flex: 0 0 calc(33.333% - 1rem);
		max-width: calc(33.333% - 1rem);
	}
}

@media (min-width: 48rem) {
	.team-card {
		flex: 0 0 calc(25% - 1.125rem);
		max-width: calc(25% - 1.125rem);
	}
}

@media (min-width: 64rem) {
	.team-card {
		flex: 0 0 calc(20% - 1.2rem);
		max-width: calc(20% - 1.2rem);
	}
}

@media (min-width: 80rem) {
	.team-card {
		flex: 0 0 calc(16.666% - 1.25rem);
		max-width: calc(16.666% - 1.25rem);
	}
}

.team-card:hover {
	border-color: #d2d2d7;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.team-card.coord {
	background-color: rgba(0, 113, 227, 0.03);
	border-color: rgba(0, 113, 227, 0.12);
}

.team-card.coord:hover {
	border-color: rgba(0, 113, 227, 0.3);
}

.team-img-wrapper {
	width: 4rem;
	height: 4rem;
	border-radius: 0.75rem;
	overflow: hidden;
	margin: 0 auto 1rem auto;
}

.team-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.team-card:hover .team-img {
	transform: scale(1.08);
}

.team-name {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 0.25rem;
}

.team-role {
	font-size: 0.75rem;
	color: var(--text-muted);
}

.font-highlight {
	color: var(--color-accent);
	font-weight: 500;
}

.team-footer {
	text-align: center;
	margin-top: 3.5rem;
}

.team-footer-text {
	font-size: 0.875rem;
	color: var(--text-muted);
	max-width: 36rem;
	margin: 0 auto;
	line-height: 1.6;
}

/* Simulador Progresso Garantia */
.progress-box {
	max-width: 44rem;
	margin: 0 auto 3rem auto;
	background: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.progress-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.progress-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
}

.progress-percent {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text-primary);
}

.progress-track {
	height: 0.75rem;
	background-color: #e8e8ed;
	border-radius: var(--radius-full);
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.progress-bar {
	height: 100%;
	width: 0%;
	border-radius: var(--radius-full);
	background: var(--color-accent);
	transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-success-msg {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	opacity: 0;
	transform: translateY(10px);
	transition: var(--transition-smooth);
}

.progress-success-msg.show {
	opacity: 1;
	transform: translateY(0);
}

.success-icon-badge {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background-color: rgba(0, 113, 227, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
}

.check-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--color-accent);
}

.success-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary);
}

.guarantee-disclaimer {
	text-align: center;
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 44rem;
	margin: 0 auto 3.5rem auto;
}

.guarantee-features-grid {
	max-width: 44rem;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

.guarantee-feat-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	background-color: #ffffff;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.feat-emoji {
	font-size: 1.25rem;
}

.feat-text {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-primary);
}

/* Rodapé e CTA Final */
.site-footer {
	position: relative;
	overflow: hidden;
}

.cta-section {
	padding: 7rem 1.5rem;
	text-align: center;
	background-color: var(--bg-secondary);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.cta-container {
	max-width: 48rem;
	margin: 0 auto;
}

.cta-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

@media (min-width: 48rem) {
	.cta-title {
		font-size: 3rem;
	}
}

.cta-desc {
	font-size: 1.125rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 2.5rem;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 2.5rem;
	border-radius: var(--radius-full);
	background-color: #1d1d1f;
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.btn-cta:hover {
	transform: scale(1.02);
	background-color: #333336;
}

.btn-cta .btn-icon {
	color: #ffffff;
}

/* Footer Principal (Multi-colunas) */
.footer-main {
	background-color: var(--bg-secondary);
	padding: 5rem 1.5rem 3rem 1.5rem;
	border-top: 1px solid var(--border-color);
}

.footer-main-container {
	max-width: 80rem;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 36rem) {
	.footer-main-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64rem) {
	.footer-main-container {
		grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	}
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.brand-col .logo {
	margin-bottom: 0.5rem;
}

.footer-brand-desc {
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.6;
	max-width: 20rem;
}

.footer-col-title {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-primary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-col-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-col-links a {
	font-size: 0.9375rem;
	color: var(--text-muted);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.footer-col-links a:hover {
	color: var(--color-accent);
}

.footer-col-info {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.contact-info-item a {
	color: var(--text-muted);
	text-decoration: none;
	transition: var(--transition-smooth);
}

.contact-info-item a:hover {
	color: var(--color-accent);
}

.address-item {
	margin-top: 0.25rem;
}

.info-icon {
	font-size: 1rem;
	flex-shrink: 0;
	line-height: 1.2;
}

.footer-bar {
	background-color: var(--bg-primary);
	padding: 2rem 1.5rem;
	border-top: 1px solid var(--border-color);
}

.footer-bar-container {
	max-width: 80rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 48rem) {
	.footer-bar-container {
		flex-direction: row;
		justify-content: space-between;
	}
}

.copyright {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.legal-info {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

/* Menu Mobile Ativo */
@media (max-width: 48rem) {
	.menu-toggle {
		display: block;
	}
	
	.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--bg-secondary);
		border-bottom: 1px solid var(--border-color);
		flex-direction: column;
		padding: 2rem 1.5rem;
		gap: 1.5rem;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: var(--transition-smooth);
	}
	
	.nav-menu.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	
	.btn-portal {
		width: 100%;
	}
	
	/* Hamburguer Animação */
	.menu-toggle.active .hamburger {
		background-color: transparent;
	}
	
	.menu-toggle.active .hamburger::before {
		transform: rotate(45deg);
		top: 0;
	}
	
	.menu-toggle.active .hamburger::after {
		transform: rotate(-45deg);
		bottom: 0;
	}
}

/* Animações Keyframes */
@keyframes floatAnimation {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes glowPulse {
	0%, 100% {
		filter: drop-shadow(0 0 15px rgba(0, 113, 227, 0.05));
	}
	50% {
		filter: drop-shadow(0 0 25px rgba(0, 113, 227, 0.15));
	}
}

/* Efeito Scroll Reveal */
.scroll-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Estilos para Páginas Institucionais (Termos e Privacidade) */
.content-page-section {
	padding: 10rem 1.5rem 6rem 1.5rem;
	position: relative;
	z-index: 2;
}

.content-text-block {
	max-width: 52rem;
	margin: 0 auto;
	background-color: var(--bg-secondary);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.02);
}

@media (min-width: 48rem) {
	.content-text-block {
		padding: 4rem;
	}
}

.content-text-block h1 {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 2.25rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

@media (min-width: 48rem) {
	.content-text-block h1 {
		font-size: 3rem;
	}
}

.content-text-block .date-info {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	display: block;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 1.25rem;
}

.content-text-block h2 {
	font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.content-text-block p {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.content-text-block strong {
	color: var(--text-primary);
}

.content-text-block ul, .content-text-block ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.content-text-block li {
	font-size: 1rem;
	color: var(--text-muted);
	line-height: 1.5;
}
