
:root {
	--red-primary: #e60014;
	--red-dark: #c40011;
	--red-light: #f03241;
	--gray-900: #1a1a1a;
	--gray-800: #2d2d2d;
	--gray-700: #4a4a4a;
	--gray-600: #666666;
	--gray-500: #808080;
	--gray-400: #999999;
	--gray-300: #b3b3b3;
	--gray-200: #e0e0e0;
	--gray-100: #f5f5f5;
	--white: #ffffff;
	--green-whatsapp: #25d366;
	--green-dark: #128c7e;
	--yellow-accent: #ffc107;
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.12);
	--shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--gray-800);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	color: var(--gray-900);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.btn {
	display: inline-block;
	padding: 16px 40px;
	background: var(--green-whatsapp);
	color: var(--white);
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 18px;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow-md);
	text-align: center;
}

.btn:hover {
	background: var(--green-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.btn-large {
	padding: 20px 50px;
	font-size: 20px;
}

.btn-secondary {
	background: var(--red-primary);
}

.btn-secondary:hover {
	background: var(--red-dark);
}

/* ===== HERO SECTION ===== */
.hero {
	background: linear-gradient(135deg, rgba(230, 0, 20, 0.9) 0%, rgba(196, 0, 17, 0.95) 100%), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600') center/cover;
	color: var(--white);
	padding: 100px 0 80px;
	text-align: center;
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--white);
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
	font-size: 24px;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.proof-points {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin: 40px 0;
	flex-wrap: wrap;
}

.proof-badge {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 20px 30px;
	border-radius: 15px;
	min-width: 200px;
	display:flex;
	flex-direction:column;
	align-items:center;
}

.proof-badge h3 {
	font-size: 36px;
	color: var(--white);
	margin-bottom: 5px;
}

.proof-badge p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	margin:0;
}

.hero-cta {
	margin-top: 30px;
}

.hero-cta .btn {
	font-size: 22px;
	padding: 20px 60px;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ===== PROBLEMA SECTION ===== */
.section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--red-primary);
	border-radius: 2px;
}

.section-title p {
	font-size: 20px;
	color: var(--gray-600);
	margin-top: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.pain-points {
	max-width: 800px;
	margin: 0 auto 40px;
}

.pain-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 20px;
	background: var(--white);
	border-radius: 10px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.pain-item:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-md);
}

.pain-icon {
	font-size: 28px;
	color: var(--red-primary);
	margin-right: 15px;
	min-width: 30px;
}

.pain-text h4 {
	font-size: 20px;
	margin-bottom: 8px;
}

.impact-box {
	background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
	color: var(--white);
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	margin: 60px auto;
	max-width: 900px;
	box-shadow: var(--shadow-lg);
}

.impact-box h3 {
	font-size: 32px;
	margin-bottom: 15px;
	color: var(--white);
}

.impact-box p {
	font-size: 24px;
	font-weight: 600;
}

.highlight {
	color: var(--yellow-accent);
	font-size: 42px;
	font-weight: 700;
	display: block;
	margin: 10px 0;
}

/* ===== SOLUÇÃO SECTION ===== */
.comparison-section {
	background: var(--gray-100);
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.comparison-card {
	background: var(--white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: var(--transition);
}

.comparison-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.comparison-card.bank {
	border-top: 8px solid var(--gray-400);
}

.comparison-card.ademicon {
	border-top: 8px solid var(--red-primary);
	position: relative;
}

.comparison-card.ademicon::before {
	content: '✓ RECOMENDADO';
	position: absolute;
	top: -12px;
	right: 20px;
	background: var(--green-whatsapp);
	color: var(--white);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.comparison-card h3 {
	font-size: 32px;
	margin-bottom: 30px;
	color: var(--gray-900);
}

.comparison-card.bank h3 {
	color: var(--gray-600);
}

.comparison-card.ademicon h3 {
	color: var(--red-primary);
}

.comparison-features {
	text-align: left;
	margin-top: 30px;
}

.feature-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 15px;
	background: var(--gray-100);
	border-radius: 8px;
}

.feature-icon {
	font-size: 24px;
	margin-right: 15px;
	min-width: 30px;
}

.feature-bank .feature-icon {
	color: var(--red-primary);
}

.feature-ademicon .feature-icon {
	color: var(--green-whatsapp);
}

.feature-text h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.feature-text p {
	font-size: 14px;
	color: var(--gray-600);
}

/* ===== AUTORIDADE SECTION ===== */
.authority-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.authority-card {
	background: var(--white);
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
}

.authority-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.authority-icon {
	font-size: 56px;
	color: var(--red-primary);
	margin-bottom: 20px;
}

.authority-card h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.authority-card p {
	color: var(--gray-600);
}

/* ===== COMO FUNCIONA ===== */
.timeline {
	max-width: 1000px;
	margin: 60px auto 0;
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: calc(100% - 80px);
	background: var(--red-primary);
}

.timeline-step {
	display: flex;
	margin-bottom: 60px;
	position: relative;
}

.timeline-step:nth-child(odd) {
	justify-content: flex-end;
}

.timeline-step:nth-child(even) {
	justify-content: flex-start;
}

.timeline-content {
	background: var(--white);
	padding: 30px;
	border-radius: 15px;
	box-shadow: var(--shadow-md);
	max-width: 400px;
	position: relative;
	text-align: center;
}

.timeline-step:nth-child(odd) .timeline-content {
	margin-right: calc(50% + 40px);
}

.timeline-step:nth-child(even) .timeline-content {
	margin-left: calc(50% + 40px);
}

.timeline-dot {
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background: var(--red-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 700;
	font-size: 20px;
	z-index: 10;
	border: 5px solid var(--white);
	box-shadow: 0 0 0 3px var(--red-primary);
}

.timeline-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--red-primary);
}

.timeline-content p {
	color: var(--gray-600);
}

.highlight-box {
	background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
	color: var(--white);
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	margin: 60px auto;
	max-width: 800px;
}

.highlight-box h3 {
	font-size: 28px;
	margin-bottom: 15px;
	color: var(--white);
}

.highlight-box ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 20px;
	list-style: none;
}

.highlight-box li {
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 25px;
	border-radius: 25px;
	font-weight: 600;
}

/* ===== CASOS DE USO ===== */
.use-cases {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.use-case-card {
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: var(--transition);
	position: relative;
}

.use-case-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
}

.use-case-header {
	background: var(--red-primary);
	color: var(--white);
	padding: 30px 20px;
	text-align: center;
}

.use-case-header h3 {
	font-size: 28px;
	color: var(--white);
	margin-bottom: 10px;
}

.use-case-body {
	padding: 30px;
}

.use-case-body h4 {
	font-size: 22px;
	margin-bottom: 15px;
	color: var(--gray-900);
}

.use-case-body p {
	margin-bottom: 15px;
	color: var(--gray-600);
}

.highlight-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--red-primary);
	display: block;
	margin: 15px 0;
}

/* ===== COMPARAÇÃO DETALHADA ===== */
.comparison-table-section {
	background: var(--gray-100);
}

.comparison-table {
	max-width: 900px;
	margin: 50px auto;
	background: var(--white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.table-header {
	background: var(--red-primary);
	color: var(--white);
	padding: 30px;
	text-align: center;
}

.table-header h3 {
	font-size: 28px;
	color: var(--white);
}

.table-body {
	padding: 40px;
}

.table-row {
	display: flex;
	justify-content: space-between;
	padding: 20px 0;
	border-bottom: 1px solid var(--gray-200);
}

.table-row:last-child {
	border-bottom: none;
}

.table-label {
	font-weight: 600;
	color: var(--gray-700);
}

.table-value {
	font-weight: 700;
	color: var(--red-primary);
}

.table-value.bank {
	color: var(--gray-600);
}

.savings-box {
	background: linear-gradient(135deg, var(--green-whatsapp) 0%, #128c7e 100%);
	color: var(--white);
	padding: 50px;
	border-radius: 15px;
	text-align: center;
	margin: 60px auto;
	max-width: 800px;
	box-shadow: 0 15px 50px rgba(37, 211, 102, 0.4);
}

.savings-box h3 {
	font-size: 28px;
	margin-bottom: 15px;
	color: var(--white);
}

.savings-amount {
	font-size: 56px;
	font-weight: 700;
	color: var(--yellow-accent);
	display: block;
	margin: 20px 0;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* ===== FAQ ===== */
.faq-section {
	background: var(--gray-100);
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: var(--white);
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.faq-question {
	padding: 25px 30px;
	background: var(--gray-100);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	font-size: 18px;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--gray-200);
}

.faq-question.active {
	background: var(--red-primary);
	color: var(--white);
}

.faq-question i {
	transition: var(--transition);
	font-size: 20px;
}

.faq-question.active i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
	padding: 20px 30px;
	max-height: 500px;
}

/* ===== URGÊNCIA ===== */
.urgency-box {
	background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-dark) 100%);
	color: var(--white);
	padding: 60px;
	border-radius: 15px;
	text-align: center;
	margin: 60px auto;
	max-width: 900px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.urgency-box::before {
	content: '🔥';
	position: absolute;
	top: -20px;
	left: -20px;
	font-size: 100px;
	opacity: 0.2;
}

.urgency-box::after {
	content: '🔥';
	position: absolute;
	bottom: -20px;
	right: -20px;
	font-size: 100px;
	opacity: 0.2;
}

.urgency-box h3 {
	font-size: 36px;
	margin-bottom: 20px;
	color: var(--white);
}

.urgency-box p {
	font-size: 20px;
	margin-bottom: 30px;
}

.urgency-list {
	text-align: left;
	max-width: 600px;
	margin: 0 auto;
}

.urgency-list li {
	margin-bottom: 15px;
	font-size: 18px;
	padding-left: 30px;
	position: relative;
	list-style: none;
}

.urgency-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--yellow-accent);
	font-weight: 700;
	font-size: 24px;
}

.urgency-date {
	background: var(--yellow-accent);
	color: var(--gray-900);
	display: inline-block;
	padding: 10px 30px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 24px;
	margin-top: 20px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ===== CTA FINAL ===== */
.cta-final {
	background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
	color: var(--white);
	padding: 100px 0;
	text-align: center;
}

.cta-final h2 {
	font-size: 48px;
	margin-bottom: 20px;
	color: var(--white);
}

.cta-final p {
	font-size: 24px;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	color: var(--gray-300);
}

.expert-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	margin: 50px auto;
	max-width: 900px;
	background: rgba(255, 255, 255, 0.1);
	padding: 40px;
	border-radius: 15px;
}

.expert-photo {
	width: 180px;
	height: 180px;
	background: var(--red-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	color: var(--white);
	font-weight: 700;
	flex-shrink: 0;
	overflow: hidden;
}

.expert-info {
	text-align: left;
}

.expert-info h3 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 10px;
}

.expert-info p {
	color: var(--gray-300);
	margin-bottom: 10px;
	font-size: 18px;
}

.expert-credentials {
	color: var(--gray-400);
	font-size: 16px;
	margin-top: 20px;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.badge {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px 30px;
	border-radius: 10px;
	min-width: 200px;
}

.badge h4 {
	font-size: 18px;
	color: var(--white);
	margin-bottom: 5px;
}

.badge p {
	color: var(--gray-400);
	font-size: 14px;
}

/* ===== FOOTER ===== */
footer {
	background: var(--gray-900);
	color: var(--gray-400);
	padding: 60px 0 30px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col h4 {
	color: var(--white);
	font-size: 20px;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--red-primary);
}

.footer-col p {
	margin-bottom: 0;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: var(--gray-400);
	text-decoration: none;
	transition: var(--transition);
	display: block;
}

.footer-links a:hover {
	color: var(--red-primary);
	transform: translateX(5px);
}

.footer-contact {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact i {
	color: var(--red-primary);
	font-size: 20px;
	margin-right: 15px;
	min-width: 25px;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid var(--gray-800);
	font-size: 14px;
}

.social-links {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: var(--red-primary);
	color: var(--white);
	border-radius: 50%;
	transition: var(--transition);
	text-decoration: none;
}

.social-links a:hover {
	background: var(--red-dark);
	transform: translateY(-3px);
}

.privacy {
	padding:80px 0;
}

.privacy h2,
.privacy h3 {
	margin:10px 0;
}

.privacy p {
	margin-bottom:10px;
}

.privacy hr {
	margin:20px 0;
}

.privacy ul {
	padding:10px 0 10px 10px;
}

.privacy li {
	list-style:square inside;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 36px;
	}

	.hero p {
		font-size: 18px;
	}

	.proof-points {
		flex-direction: column;
		gap: 20px;
	}

	.section {
		padding: 60px 0;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.comparison-grid {
		grid-template-columns: 1fr;
	}

	.timeline::before {
		left: 30px;
	}

	.timeline-step {
		justify-content: flex-start !important;
		margin-left: 60px;
	}

	.timeline-step:nth-child(odd) .timeline-content,
	.timeline-step:nth-child(even) .timeline-content {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.timeline-content {
		max-width: 100%;
	}

	.timeline-dot {
		left: -30px;
	}

	.use-cases {
		grid-template-columns: 1fr;
	}

	.urgency-box {
		padding: 40px 20px;
	}

	.expert-profile {
		flex-direction: column;
		text-align: center;
	}

	.expert-info {
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 28px;
	}

	.hero p {
		font-size: 16px;
	}

	.btn {
		width: 100%;
		padding: 15px;
		font-size: 16px;
	}

	.btn-large {
		font-size: 18px;
		padding: 18px;
	}

	.section-title h2 {
		font-size: 28px;
	}

	.impact-box h3,
	.urgency-box h3 {
		font-size: 24px;
	}

	.highlight,
	.savings-amount {
		font-size: 32px;
	}

	.cta-final h2 {
		font-size: 32px;
	}

	.cta-final p {
		font-size: 18px;
	}

	.expert-photo {
		width: 180px;
		height: 180px;
		font-size: 42px;
	}

	.expert-info h3 {
		font-size: 24px;
	}
}
