/* Reset e Configurações Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #ff2a83;
	--primary-dark: #e62375;
	--secondary-color: #ffd166;
	--accent-color: #ffd166;
	--text-dark: #ffffff;
	--text-light: #b8c5d6;
	--text-lighter: #8b9dc3;
	--background: #051222;
	--background-light: #0a1b36;
	--background-lighter: #142447;
	--border-color: #2a3f5f;
	--success-color: #10b981;
	--warning-color: #ffd166;
	--error-color: #ff2a83;
	--gradient-primary: linear-gradient(135deg, #ff2a83 0%, #e62375 100%);
	--gradient-secondary: linear-gradient(135deg, #ffd166 0%, #ffcc00 100%);
	--gradient-accent: linear-gradient(135deg, #ff2a83 0%, #ffd166 100%);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
	--radius-sm: 6px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--background);
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(5, 18, 34, 0.95) !important;
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.logo h1 {
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: var(--secondary-color);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

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

.btn-whatsapp-header {
	background: var(--gradient-secondary);
	color: var(--background) !important;
	padding: 8px 16px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.btn-whatsapp-header:hover {
	background: var(--secondary-color);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	padding: 120px 0 20px;
	background: linear-gradient(
		135deg,
		var(--background) 0%,
		var(--background-light) 100%
	);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(255, 42, 131, 0.1) 0%,
		transparent 70%
	);
	border-radius: 50%;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.badge {
	display: inline-block;
	background: var(--gradient-primary);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.highlight {
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.hero-image {
	width: 100%;
	aspect-ratio: 16/9;
}

/* Vídeo Container */
.video-container {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	background: var(--background-lighter);
	position: relative;
}

.video-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8f9fa 0%, #e5e7eb 100%);
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-placeholder:hover {
	background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.video-play-button {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	transition: all 0.3s ease;
}

.video-placeholder:hover .video-play-button {
	transform: scale(1.1);
}

.video-play-button i {
	color: white;
	font-size: 2rem;
	margin-left: 5px;
}

.video-wrapper {
	width: 100%;
	height: 100%;
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Hero Stats */
.hero-stats {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-top: 3rem;
}

.stat {
	text-align: center;
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

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

/* Alert Section */
.alert-section {
	background: linear-gradient(
		135deg,
		rgba(255, 209, 102, 0.2) 0%,
		rgba(255, 209, 102, 0.1) 100%
	);
	padding: 2rem 0;
	border-top: 3px solid var(--warning-color);
	border-bottom: 3px solid var(--warning-color);
}

.alert-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.alert-icon {
	font-size: 2rem;
	color: var(--warning-color);
	flex-shrink: 0;
}

.alert-content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

.alert-content p {
	color: var(--text-dark);
	line-height: 1.6;
}

/* How It Works */
.how-it-works {
	padding: 80px 0;
	background: var(--background);
}

.how-it-works h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
}

.step {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.step-number {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.step-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.step-content p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Target Audience */
.target-audience {
	padding: 80px 0;
	background: var(--background-light);
}

.target-audience h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.audience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.audience-card {
	background: var(--background-light);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.audience-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.audience-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
}

.audience-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.audience-card p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Module Link */
.module-link {
	margin-top: 1rem;
	text-align: center;
}

.module-link .btn-secondary {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* Module Start Date */
.module-start-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	background: var(--background-lighter);
	border-radius: var(--radius-sm);
	border-left: 3px solid var(--secondary-color);
	color: var(--text-light);
	font-size: 0.9rem;
	font-weight: 500;
}

.module-start-date i {
	color: var(--secondary-color);
	font-size: 1rem;
}

.module-start-date span {
	color: var(--text-dark);
}

/* Modal de Grade Curricular */
.curriculum-header {
	background: var(--background-light);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid var(--border-color);
}

.curriculum-info {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-light);
}

.info-item i {
	color: var(--primary-color);
	font-size: 1.1rem;
}

.curriculum-schedule h4 {
	color: var(--text-dark);
	margin-bottom: 1.5rem;
	text-align: center;
	font-size: 1.3rem;
}

.schedule-grid {
	display: grid;
	gap: 1rem;
	max-height: 60vh;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.schedule-item {
	background: var(--background-light);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	border: 1px solid var(--border-color);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	transition: all 0.3s ease;
}

.schedule-item:hover {
	border-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(255, 42, 131, 0.1);
}

.class-number {
	background: var(--primary-color);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 0.9rem;
	text-align: center;
	min-width: 80px;
}

.class-details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.class-date,
.class-time,
.class-subject {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-light);
	font-size: 0.95rem;
}

.class-date i,
.class-time i,
.class-subject i {
	color: var(--secondary-color);
	width: 16px;
	text-align: center;
}

.class-subject {
	color: var(--text-dark);
	font-weight: 500;
}

.curriculum-footer {
	margin-top: 2rem;
	padding: 1.5rem;
	background: var(--background-lighter);
	border-radius: var(--radius-md);
	border-left: 4px solid var(--secondary-color);
}

.curriculum-footer p {
	margin-bottom: 0.5rem;
	color: var(--text-light);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.curriculum-footer p:last-child {
	margin-bottom: 0;
}

.curriculum-footer i {
	color: var(--primary-color);
}

/* Responsive para Grade Curricular */
@media (max-width: 768px) {
	.curriculum-info {
		flex-direction: column;
		gap: 1rem;
	}
	
	.schedule-item {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.class-number {
		justify-self: center;
		margin-bottom: 0.5rem;
	}
	
	.class-details {
		text-align: left;
	}
}

/* Modules */
.modules {
	padding: 80px 0;
	background: var(--background-light);
}

.section-subtitle {
	text-align: center;
	font-size: 1.125rem;
	color: var(--text-light);
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.modules h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.module-card {
	background: var(--background-light);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.module-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.module-card.free {
	border: 2px solid var(--secondary-color);
}

.module-header {
	padding: 1.5rem;
	background: var(--background);
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.module-header h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-dark);
}

.module-badge {
	background: var(--gradient-secondary);
	color: var(--background);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
}

.module-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--secondary-color);
}

.module-content {
	padding: 1.5rem;
}

.module-content h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.module-content ul {
	list-style: none;
}

.module-content li {
	padding: 0.5rem 0;
	color: var(--text-light);
	position: relative;
	padding-left: 1.5rem;
}

.module-content li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--success-color);
	font-weight: 600;
}

/* Format */
.format {
	padding: 16px 0;
	background: var(--background);
	border-radius: var(--radius-lg);
}

.format h2 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.format-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
}

.format-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-align: left;
}

.format-icon {
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.format-content h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text-dark);
}

.format-content p {
	color: var(--text-light);
	font-size: 0.875rem;
}

/* Features */
.features {
	padding: 80px 0;
	background: var(--background);
}

.features h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: var(--background-light);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
}

.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Projects */
.projects {
	padding: 80px 0;
	background: var(--background-light);
}

.projects h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.project-card {
	background: var(--background-light);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
}

.project-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.project-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
}

.project-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.project-card p {
	color: var(--text-light);
	line-height: 1.6;
}

/* Investment */
.investment {
	padding: 80px 0;
	background: var(--background-light);
}

.investment h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.investment-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	max-width: 1000px;
	margin: 0 auto;
}

.selection-panel,
.registration-form {
	background: var(--background);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
}

.selection-panel h3,
.registration-form h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

.module-selection {
	margin-bottom: 2rem;
}

.module-option {
	margin-bottom: 1rem;
}

.module-option input[type='checkbox'],
.module-option input[type='radio'] {
	display: none;
}

.module-option label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: var(--background-light);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--text-dark);
}

.module-option input:checked + label {
	background: linear-gradient(
		135deg,
		rgba(255, 42, 131, 0.1) 0%,
		rgba(255, 42, 131, 0.05) 100%
	);
	border-color: var(--primary-color);
}

.module-option label:hover {
	border-color: var(--primary-color);
}

.module-name {
	font-weight: 600;
	color: var(--text-dark);
}

.module-price {
	font-weight: 700;
	color: var(--secondary-color);
	text-wrap: nowrap;
}

.discount-badge {
	background: var(--gradient-secondary);
	color: var(--background);
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-left: 0.5rem;
}

.complete-option {
	border-top: 2px solid var(--border-color);
	padding-top: 1rem;
	margin-top: 1rem;
}

.total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: var(--background-light);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	margin-top: 1rem;
	font-size: 1.25rem;
	font-weight: 700;
}

.total-price {
	color: var(--secondary-color);
	font-size: 1.5rem;
}

/* Form Styles */
.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--text-dark);
}

.form-group input {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	font-size: 1rem;
	transition: all 0.3s ease;
	background: var(--background-light);
	color: var(--text-dark);
}

.form-group input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(255, 42, 131, 0.1);
}

.form-group input::placeholder {
	color: var(--text-lighter);
}

.payment-methods {
	margin-bottom: 2rem;
}

.payment-methods h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.payment-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items: stretch;
}

.payment-option input[type='radio'] {
	display: none;
}

.payment-option label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--background-light);
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--text-dark);
	height: 100%;
	min-height: 60px;
}

.payment-option input:checked + label {
	background: linear-gradient(
		135deg,
		rgba(255, 42, 131, 0.1) 0%,
		rgba(255, 42, 131, 0.05) 100%
	);
	border-color: var(--primary-color);
}

.payment-option label:hover {
	border-color: var(--primary-color);
}

.payment-option i {
	font-size: 1.25rem;
	color: var(--secondary-color);
}

.terms {
	margin-bottom: 2rem;
}

.terms input[type='checkbox'] {
	display: none;
}

.terms label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: var(--text-light);
	cursor: pointer;
}

.terms-label {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.terms-label small a {
	color: var(--secondary-color);
	text-decoration: underline;
	font-weight: 600;
	transition: all 0.3s ease;
}

.terms-label small a:hover {
	color: var(--primary-color);
	text-decoration: none;
}

.terms input:checked + label::before {
	content: '✓';
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: 2px solid var(--primary-color);
	border-radius: var(--radius-sm);
	flex-shrink: 0;
	margin-top: 2px;
}

.terms label::before {
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-sm);
	flex-shrink: 0;
	margin-top: 2px;
}

.btn-primary {
	width: 100%;
	padding: 1rem;
	background: var(--gradient-primary);
	color: white;
	border: none;
	border-radius: var(--radius-md);
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.security-badges {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 1rem;
	font-size: 0.875rem;
	color: var(--text-lighter);
}

/* Teacher */
.teacher {
	padding: 80px 0;
	background: var(--background);
}

.teacher h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 3rem;
	color: var(--text-dark);
}

.teacher-card {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 2rem;
	max-width: 1000px;
	margin: 0 auto;
	background: var(--background-light);
	padding: 3rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
}

.teacher-image {
	text-align: center;
}

.image-placeholder {
	width: 200px;
	height: 200px;
	background: var(--background);
	border: 2px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 4rem;
	color: var(--text-lighter);
	overflow: hidden;
}

.image-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.image-placeholder a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.teacher-info h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.teacher-nickname {
	color: var(--text-light);
	font-style: italic;
	margin-bottom: 1rem;
}

.teacher-linkedin {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--secondary-color);
	text-decoration: none;
	font-weight: 600;
	margin-bottom: 1.5rem;
	transition: color 0.3s ease;
}

.teacher-linkedin:hover {
	color: var(--primary-color);
}

.teacher-bio {
	color: var(--text-light);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.teacher-details {
	grid-column: 1 / 3;
}

.teacher-expertise {
	margin-bottom: 2rem;
}

.expertise-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.expertise-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.expertise-content h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.expertise-content p {
	color: var(--text-light);
	line-height: 1.6;
}

.teacher-quote {
	border-left: 4px solid var(--primary-color);
	padding-left: 1.5rem;
	font-style: italic;
	color: var(--text-light);
	line-height: 1.6;
}

/* FAQ */
.faq {
	padding: 80px 0;
	background: var(--background-light);
}

.faq h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--background);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-lg);
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.faq-question {
	padding: 1.5rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: var(--background-lighter);
}

.faq-question h3 {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0;
	flex: 1;
}

.faq-toggle {
	width: 30px;
	height: 30px;
	background: var(--gradient-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
	background: var(--gradient-secondary);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-answer p {
	padding: 0.5rem 1.5rem 1.5rem;
	color: var(--text-light);
	line-height: 1.6;
	margin: 0;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

/* Modal de Termos */
.modal-large {
	max-width: 800px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
}

.terms-content {
	text-align: left;
	line-height: 1.6;
}

.terms-intro {
	font-style: italic;
	color: var(--text-light);
	margin-bottom: 2rem;
	padding: 1rem;
	background: var(--background-lighter);
	border-radius: var(--radius-md);
	border-left: 4px solid var(--primary-color);
}

.terms-section {
	margin-bottom: 2rem;
}

.terms-section h4 {
	color: var(--text-dark);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.terms-section p {
	margin-bottom: 1rem;
	color: var(--text-light);
}

.terms-section ul {
	margin: 1rem 0;
	padding-left: 1.5rem;
}

.terms-section li {
	margin-bottom: 0.5rem;
	color: var(--text-light);
}

.terms-separator {
	text-align: center;
	font-size: 2rem;
	color: var(--primary-color);
	margin: 2rem 0;
}

.terms-conclusion {
	font-weight: 600;
	color: var(--text-dark);
	padding: 1rem;
	background: var(--background-lighter);
	border-radius: var(--radius-md);
	border-left: 4px solid var(--secondary-color);
}

.terms-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
}

.btn-secondary {
	background: var(--background-lighter);
	color: var(--text-dark);
	border: 2px solid var(--border-color);
	padding: 12px 24px;
	border-radius: var(--radius-md);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-secondary:hover {
	background: var(--border-color);
	transform: translateY(-2px);
}

.btn-primary {
	background: var(--primary-color);
	color: white;
	padding: 1rem 2rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	font-size: 1.1rem;
}

.btn-primary:hover:not(:disabled) {
	background: #e61a6b;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 42, 131, 0.3);
}

.btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.btn-primary:disabled:hover {
	background: var(--primary-color);
	transform: none;
	box-shadow: none;
}

/* Modal de Pagamento */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(5, 18, 34, 0.95);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(10px);
}

.modal-content {
	background: var(--background);
	border-radius: var(--radius-lg);
	padding: 2rem;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-xl);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
	gap: 1rem;
}

.modal-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	flex: 1;
}

.modal-close {
	background: none;
	border: none;
	color: var(--text-light);
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--radius-sm);
	transition: all 0.3s ease;
	height: 40px;
	width: 40px;
}

.modal-close:hover {
	background: var(--background-light);
	color: var(--text-dark);
}

.modal-body {
	color: var(--text-dark);
}

.payment-instructions {
	background: var(--background-light);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid var(--border-color);
}

.whatsapp-instructions h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.whatsapp-instructions p {
	margin-bottom: 0.75rem;
	line-height: 1.6;
}

.whatsapp-instructions p strong {
	color: var(--text-dark);
}

.whatsapp-status {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding: 0.75rem;
	background: rgba(37, 211, 102, 0.1);
	border-radius: var(--radius-sm);
	border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-status i {
	color: #25d366;
	font-size: 1.2rem;
}

.whatsapp-status span {
	color: var(--text-light);
	font-size: 0.9rem;
}

.order-summary {
	background: var(--background-light);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	margin-bottom: 2rem;
	border: 1px solid var(--border-color);
}

.order-summary h4 {
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.order-summary p {
	margin-bottom: 0.5rem;
	color: var(--text-light);
}

.order-summary p strong {
	color: var(--text-dark);
}

.order-summary .total {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-color);
}

.modal-actions {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.modal-actions button {
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
}

.modal-actions .btn-primary {
	background: var(--primary-color);
	color: white;
}

.modal-actions .btn-primary:hover {
	background: #e61a6b;
	transform: translateY(-2px);
}

.modal-actions .btn-secondary {
	background: var(--background-light);
	color: var(--text-dark);
	border: 1px solid var(--border-color);
}

.modal-actions .btn-secondary:hover {
	background: var(--background-lighter);
}

/* CTA Sections */
.cta-section {
	text-align: center;
	padding: 1rem 0;
	background: var(--background-lighter);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	margin: 1rem 0;
}

.cta-button {
	background: var(--primary-color);
	color: white;
	padding: 1rem 2.5rem;
	border-radius: var(--radius-md);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.1rem;
	box-shadow: 0 4px 15px rgba(255, 42, 131, 0.2);
}

.cta-button:hover {
	background: #e61a6b;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 42, 131, 0.3);
}

.cta-button i {
	font-size: 1.2rem;
}

/* Responsive para CTA */
@media (max-width: 768px) {
	.cta-section {
		padding: 2rem 1rem;
	}
	
	.cta-button {
		width: 100%;
		max-width: 300px;
		padding: 1rem 2rem;
		font-size: 1rem;
	}
}

/* Footer */
.footer {
	background: var(--background-lighter);
	color: var(--text-dark);
	padding: 3rem 0 1rem;
	border-top: 1px solid var(--border-color);
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-brand p {
	color: var(--text-lighter);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: var(--background);
	border: 1px solid var(--border-color);
	color: var(--text-dark);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--gradient-primary);
	border-color: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

.footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.footer-section h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 0.5rem;
}

.footer-section a {
	color: var(--text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--secondary-color);
}

.footer-bottom {
	border-top: 1px solid var(--border-color);
	padding-top: 1rem;
	text-align: center;
	color: var(--text-lighter);
}

/* WhatsApp Float */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
	}
}

.whatsapp-float a {
	width: 60px;
	height: 60px;
	background: var(--success-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.5rem;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
}

	.whatsapp-float a:hover {
	transform: scale(1.1);
	background: #0d9f73;
}

.qr-placeholder i {
	font-size: 3rem;
	color: var(--text-lighter);
	margin-bottom: 0.5rem;
}

.pix-key {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.pix-key input {
	flex: 1;
	padding: 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-md);
	font-family: monospace;
}

.copy-btn {
	padding: 0.75rem 1rem;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all 0.3s ease;
}

.copy-btn:hover {
	background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-title {
		font-size: 3rem;
		text-align: center;
	}

	.hero-subtitle {
		font-size: 1.125rem;
		text-align: center;
	}

	.video-container {
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.logo {
		gap: 0.5rem;
	}

	.logo-img {
		height: 30px;
	}

	.logo h1 {
		font-size: 1.25rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.hero-stats {
		gap: 2rem;
	}

	.alert-container {
		flex-direction: column;
		text-align: center;
	}

	.steps {
		grid-template-columns: 1fr;
	}

	.audience-grid,
	.modules-grid,
	.features-grid,
	.projects-grid {
		grid-template-columns: 1fr;
	}

	.format-grid {
		grid-template-columns: 1fr;
	}

	.investment-container {
		grid-template-columns: 1fr;
	}

	.teacher-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.expertise-item {
		flex-direction: column;
		text-align: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-links {
		grid-template-columns: 1fr;
	}

	.payment-options {
		grid-template-columns: 1fr;
	}
}
