:root {
	--bg: #fafafa;
	--text: #1a1a1a;
	--muted: #666666;
	--dark: #1a1a1a;
	--dark-2: #2a2a2a;
	--card: #ffffff;
	--primary: #22c55e;
	--primary-2: #16a34a;
	--primary-hover: #15803d;
	--danger: #dc2626;
	--accent: #f59e0b;
}

* { box-sizing: border-box; }
html { 
	scroll-behavior: smooth; 
}
html, body { margin: 0; padding: 0; }
body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Montserrat', 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
}

.section { padding: 64px 0; }
.section.hero { padding-top: 32px; padding-bottom: 64px; }
.section.material { padding-top: 16px; padding-bottom: 64px; }
.section.dark {
	background: var(--dark);
	color: #f5f5f5;
}

.top-ribbon {
	background: var(--danger);
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 8px 0;
	letter-spacing: 0.3px;
	font-size: 11px;
	position: relative;
}
.top-ribbon .container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-ribbon span { display: inline-block; }

/* HERO */
.hero h1 {
	font-weight: 900;
	font-size: clamp(32px, 6.5vw, 56px);
	text-align: center;
	margin: 0 0 20px 0;
	line-height: 1.15;
	color: var(--text);
	letter-spacing: -0.5px;
	text-shadow: 0 2px 4px rgba(0,0,0,.05);
}
.hero h1 i {
	font-style: normal;
	color: var(--primary);
	display: block;
	font-size: clamp(28px, 5.5vw, 48px);
	margin-bottom: 12px;
	font-weight: 900;
	text-shadow: 0 2px 8px rgba(34, 197, 94, .2);
	position: relative;
}
.hero h1 i::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	border-radius: 2px;
}
.hero h1 u {
	text-decoration: none;
	border-bottom: 3px solid var(--primary);
	padding-bottom: 4px;
	display: inline-block;
	position: relative;
}
.hero-media {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 24px 0 16px;
}
.hero-media img {
	width: min(720px, 94%);
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,.1);
	background: #e5e5e5;
	display: block;
}
.ctaGroup {
	text-align: center;
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ctaGroup .sub {
	max-width: 720px;
	margin: 24px auto 0;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.7;
	font-weight: 400;
}
.ctaGroup .sub strong {
	color: var(--primary);
	font-size: 24px;
	font-weight: 800;
	display: block;
	margin-top: 12px;
	letter-spacing: 0.5px;
}
.ctaGroup .sub .highlight-keyword {
	color: var(--text);
	font-weight: 600;
	background: linear-gradient(120deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.15) 100%);
	padding: 2px 4px;
	border-radius: 3px;
}
.ctaGroup .sub-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 14px 0 18px;
}
.ctaGroup .sub-tag {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	background: rgba(34, 197, 94, 0.08);
	padding: 8px 16px;
	border-radius: 6px;
	border: none;
	line-height: 1.5;
	transition: all 0.2s ease;
}
.ctaGroup .sub-tag:hover {
	background: rgba(34, 197, 94, 0.12);
	transform: translateY(-1px);
}
.ctaGroup .guarantee-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 10px 18px;
	background: rgba(34, 197, 94, 0.06);
	border: 1px solid rgba(34, 197, 94, 0.2);
	border-radius: 8px;
	font-size: 14px;
	color: var(--text);
}
.ctaGroup .guarantee-icon {
	font-size: 18px;
}

/* BUTTONS */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 700;
	padding: 16px 32px;
	border-radius: 8px;
	color: #fff;
	background: var(--primary);
	box-shadow: 0 4px 12px rgba(34, 197, 94, .3);
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}
.btn-primary {
	color: #fff;
	background: var(--primary);
}
.btn-primary:hover {
	background: var(--primary-hover);
	box-shadow: 0 6px 16px rgba(34, 197, 94, .4);
	transform: translateY(-2px);
}
.btn-lg { 
	padding: 18px 36px; 
	font-size: 18px; 
}
.btn:hover { 
	transform: translateY(-2px); 
}
.btn:active { 
	transform: translateY(0); 
	box-shadow: 0 2px 8px rgba(34, 197, 94, .3);
}

/* MATERIAL SECTION */
.material h2,
.ideal h2 { 
	text-align: center; 
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	margin: 0 0 32px;
	line-height: 1.3;
	color: var(--text);
}

/* CIFRAS SECTION */
.cifras {
	background: #ffffff;
}
.cifras h2 {
	text-align: center;
	font-size: clamp(20px, 3.5vw, 28px);
	font-weight: 700;
	margin: 0 0 32px;
	line-height: 1.3;
	color: var(--text);
}
.cifras-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}
.cifras-media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,.1);
	background: #e5e5e5;
	display: block;
}
@media (max-width: 600px) {
	.cifras-media {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}
.material-media { 
	display: flex; 
	justify-content: center; 
	align-items: center;
}
.material-media img { 
	width: 100%; 
	height: auto; 
	border-radius: 12px; 
	background: #e5e5e5;
	display: block;
}

/* BENEFÍCIOS */
.benefits h2 {
	text-align: center;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	margin: 0 0 16px;
	line-height: 1.3;
}
.benefits .lead {
	text-align: center;
	color: #d1d1d1;
	max-width: 860px;
	margin: 0 auto 32px;
	font-size: 17px;
	line-height: 1.6;
}
.cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}
.card {
	background: var(--dark-2);
	border-radius: 12px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.card .icon { 
	font-size: 32px; 
	color: var(--primary); 
	line-height: 1;
	margin-bottom: 4px;
}
.card h3 { 
	margin: 0; 
	font-size: 18px; 
	font-weight: 600; 
	line-height: 1.3;
	text-align: center;
}

/* PROMESSA */
.promise .eyebrow {
	text-align: center;
	opacity: .95;
	font-weight: 600;
	margin: 0 0 8px;
	font-size: 17px;
}
.promise .subtle {
	text-align: center;
	color: #d1d1d1;
	margin: 0 0 28px;
	font-size: 18px;
}
.highlight {
	background: #0f0f0f;
	border-radius: 16px;
	padding: 40px 32px;
	box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05) inset;
	text-align: center;
	border: 1px solid rgba(255,255,255,.05);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.highlight h3 {
	margin: 0 0 24px;
	font-size: clamp(20px, 4vw, 30px);
	font-weight: 700;
	line-height: 1.3;
}

/* IDEAL */
.ideal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-top: 24px;
	align-items: stretch;
}
.ideal-card {
	background: var(--card);
	border-radius: 12px;
	padding: 28px 24px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	border: 1px solid #e5e5e5;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ideal-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.ideal-card .icon { 
	color: #2a2a2a; 
	font-size: 24px; 
	margin-bottom: 8px;
	display: block;
}
.ideal-card h3 { 
	margin: 0 0 12px; 
	font-weight: 700; 
	font-size: 18px; 
	color: var(--text);
	line-height: 1.3;
}
.ideal-card p { 
	margin: 0; 
	color: var(--muted); 
	line-height: 1.7; 
	font-size: 17px;
}

/* RECEBERÁ */
.recebera .pill {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.3px;
}
.recebera-media { 
	display: flex; 
	justify-content: center; 
	align-items: center;
	margin: 18px 0; 
}
.recebera-media img {
	width: min(680px, 95%);
	height: auto;
	border-radius: 12px;
	background: transparent;
	box-shadow: 0 16px 36px rgba(0,0,0,.35);
	display: block;
}
.recebera .badge {
	display: inline-block;
	background: #ffffff;
	color: #0b2200;
	padding: 6px 12px;
	border-radius: 999px;
	font-weight: 900;
	margin-bottom: 6px;
}
.recebera h2 {
	margin: 8px 0 12px;
	font-size: clamp(22px, 4.2vw, 32px);
}
.checks {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}
.checks li::before {
	content: "✓";
	color: var(--primary);
	margin-right: 10px;
	font-weight: 700;
	font-size: 18px;
}
.e-muito-mais {
	text-align: center;
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 900;
	color: var(--text);
	margin: 24px 0 0;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* BÔNUS */
.bonus h2 { 
	text-align: center; 
	margin: 0 0 8px;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
}
.bonus .subtle { text-align: center; color: #d1d1d1; margin: 0 0 16px; font-size: 17px; }
.bonus .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.badge-green {
	display: block;
	background: var(--primary);
	color: #fff;
	padding: 12px 20px;
	border-radius: 6px;
	font-weight: 700;
	text-align: center;
	margin: 0 auto 20px;
	font-size: 15px;
	letter-spacing: 0.5px;
	width: fit-content;
}
.bonus-urgency-text {
	text-align: center;
	font-size: 15px;
	color: #f5f5f5;
	margin: 0 auto 28px;
	max-width: 600px;
	line-height: 1.6;
}
.bonus-urgency-text strong {
	color: var(--accent);
	font-weight: 700;
}
.bonus-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 10px;
	align-items: stretch;
}
.bonus-card {
	background: #0f0f0f;
	border-radius: 14px;
	padding: 18px;
	box-shadow: 0 8px 24px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.bonus-card img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	background: #2b2b2b;
}
.bonus-card .tag {
	display: inline-block;
	background: var(--primary-2);
	color: #0b2200;
	padding: 6px 10px;
	border-radius: 999px;
	font-weight: 800;
	margin: 10px 0 8px;
}
.bonus-card h3 { margin: 0 0 8px; }
.bonus-card p { margin: 0; color: #d0d0d0; }

/* DEPOIMENTOS */
.depoimentos {
	background: #ffffff;
}
.depoimentos h2 {
	text-align: center;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	margin: 0 0 40px;
	line-height: 1.3;
	color: var(--text);
}
.depoimentos-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	max-width: 1000px;
	margin: 0 auto;
}
.depoimento-card {
	background: #fafafa;
	border-radius: 12px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
	border: 1px solid #e5e5e5;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.depoimento-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.depoimento-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
	background: #ffffff;
}
@media (max-width: 900px) {
	.depoimentos-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 600px;
	}
}

/* FOOTER */
.footer {
	background: #0e0e0e;
	color: #bdbdbd;
	text-align: center;
	padding: 32px 0 40px;
	font-size: 15px;
}
.footer .disclaimer {
	max-width: 920px;
	margin: 0 auto 16px;
	color: #a0a0a0;
	font-size: 14px;
	line-height: 1.6;
	opacity: .85;
}

/* PLANS */
.plans { background: #f5f5f5; }
.plans-title {
	text-align: center;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	margin: 0 0 12px;
	line-height: 1.3;
	color: var(--text);
}
.plans-subtitle {
	text-align: center;
	font-size: 15px;
	color: var(--accent);
	font-weight: 600;
	margin: 0 0 40px;
	letter-spacing: 0.3px;
}
.plans-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
}
.plan-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 36px 28px;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	border: 1px solid #e5e5e5;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.plan-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.plan-card.plan-featured {
	border: 2px solid var(--primary);
	box-shadow: 0 4px 20px rgba(34, 197, 94, .12);
	position: relative;
	background: #ffffff;
}
.plan-card.plan-featured::before {
	content: 'MAIS POPULAR';
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary);
	color: #fff;
	padding: 5px 18px;
	border-radius: 16px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 8px rgba(34, 197, 94, .2);
	z-index: 1;
}
.plan-card.plan-featured:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(34, 197, 94, .15);
}
.plan-header {
	text-align: center;
	margin-bottom: 16px;
}
.plan-header h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: var(--text);
}
.plan-card.plan-featured .plan-header h3 {
	color: var(--primary);
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.3px;
	margin-top: 8px;
}
.plan-media { 
	display: flex; 
	justify-content: center; 
	align-items: center;
	margin: 16px 0 20px; 
}
.plan-media img { 
	width: min(320px, 90%); 
	height: auto; 
	border-radius: 12px; 
	background: transparent;
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
	display: block;
}
.plan-card.plan-featured .plan-media img {
	width: min(550px, 98%);
}
.plan-list {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	display: grid;
	gap: 10px;
	color: var(--text);
	flex-grow: 1;
}
.plan-list li { 
	position: relative; 
	padding-left: 26px; 
	font-size: 17px;
	line-height: 1.6;
}
.plan-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: 700;
	font-size: 18px;
	top: 2px;
}
.plan-price { 
	text-align: center; 
	margin-top: auto;
	padding-top: 24px;
}
.plan-price .amount {
	color: var(--primary);
	font-weight: 800;
	font-size: 44px;
	line-height: 1.1;
	letter-spacing: -1px;
}
.plan-price .amount.big { font-size: 52px; }
.plan-card.plan-featured .plan-price .amount {
	color: var(--primary);
	font-size: 46px;
}
.plan-card.plan-featured .plan-price .amount.big { 
	font-size: 54px;
}
.plan-price .installments { 
	color: var(--muted); 
	font-size: 16px; 
	margin-top: 4px;
}
.plan-price .from { 
	color: var(--danger); 
	margin-bottom: 8px; 
	font-size: 16px; 
}
.plan-cta { 
	display: block; 
	margin: 24px auto 12px; 
	max-width: 100%;
	width: 100%;
}
.plan-card.plan-featured .plan-cta {
	background: var(--primary);
	box-shadow: 0 4px 16px rgba(34, 197, 94, .25);
	font-size: 16px;
	padding: 16px 32px;
}
.plan-card.plan-featured .plan-cta:hover {
	background: var(--primary-hover);
	box-shadow: 0 6px 20px rgba(34, 197, 94, .3);
	transform: translateY(-2px);
}
.plan-note-danger { 
	color: #dc2626; 
	text-align: center; 
	margin: 28px 0 0; 
	font-size: 17px; 
	line-height: 1.6;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 12px;
	padding: 20px 18px;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(220, 38, 38, .08);
}
.plan-note-danger p {
	margin: 0 0 12px 0;
}
.plan-note-danger strong {
	font-weight: 700;
	color: #dc2626;
	font-size: 16px;
}
.plan-note-danger u {
	text-decoration: none;
	border-bottom: 2px solid #dc2626;
	padding-bottom: 2px;
	font-weight: 600;
	display: inline-block;
}
.plan-note-danger .highlight-text {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.5px;
	color: #dc2626;
}
.plan-note-danger .arrow-down {
	color: #dc2626;
	font-size: 24px;
	line-height: 1;
	margin-top: 8px;
	animation: bounce-simple 2s ease-in-out infinite;
	letter-spacing: -4px;
}
@keyframes bounce-simple {
	0%, 100% { 
		transform: translateY(0);
	}
	50% { 
		transform: translateY(6px);
	}
}
.pdf-note { 
	text-align: center; 
	color: #666666; 
	margin: 0 0 16px; 
	font-size: 16px;
	font-weight: 500;
}
.plan-badge {
	display: inline-block;
	background: var(--primary);
	color: #fff;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 15px;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}
.plan-check { 
	color: var(--primary); 
	font-weight: 600; 
	margin: 0 0 12px; 
	font-size: 16px;
	text-align: center;
}
.plan-sep {
	border: 0;
	border-top: 1px solid #e5e5e5;
	margin: 20px 0;
}
.save { 
	color: var(--text); 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	gap: 8px; 
	font-size: 16px;
	margin-top: 8px;
}
.save .dot { 
	width: 8px; 
	height: 8px; 
	background: var(--primary); 
	border-radius: 50%; 
	display: inline-block; 
}
.plan-fomo {
	text-align: center;
	color: var(--muted);
	font-size: 14px;
	margin: 16px 0 8px;
	line-height: 1.6;
}
.plan-fomo strong {
	color: var(--accent);
	font-weight: 700;
}
.gateways { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	gap: 12px; 
	margin-top: 16px;
}
.gateways img { 
	height: 130px; 
	width: auto; 
	filter: grayscale(0.2);
	max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
	.cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
	.cards { grid-template-columns: 1fr; }
	.ideal-grid { grid-template-columns: 1fr; }
	.bonus-grid { grid-template-columns: 1fr; }
	.bonus-urgency-text {
		font-size: 14px;
		margin-bottom: 24px;
	}
	.plans-grid { grid-template-columns: 1fr; }
}

/* ACESSO */
.acesso { background: #ffffff; }
.acesso h2 {
	text-align: center;
	margin: 0 0 32px;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	line-height: 1.3;
}
.steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}
.step {
	background: #fafafa;
	border-radius: 12px;
	padding: 24px 20px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
	border: 1px solid #e5e5e5;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.step .num {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
}
.step h3 { margin: 2px 0 8px; font-size: 18px; font-weight: 600; }
.step p { margin: 0; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
	.steps { grid-template-columns: 1fr; }
}

/* AUTOR */
.autor { background: #fafafa; }
.autor-grid {
	display: grid;
	grid-template-columns: 1.2fr 1.8fr;
	gap: 32px;
	align-items: center;
}
.autor-media {
	display: flex;
	align-items: center;
	justify-content: center;
}
.autor-media img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,.1);
	background: #e5e5e5;
	display: block;
}
.autor-content h2 {
	margin: 0 0 16px;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	line-height: 1.3;
}
.autor-content p {
	color: var(--text);
	margin: 0 0 16px;
	line-height: 1.7;
	font-size: 18px;
}
.autor-content .btn { margin-top: 8px; }

@media (max-width: 900px) {
	.autor-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { background: #ffffff; }
.faq h2 {
	text-align: center;
	margin: 0 0 32px;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	line-height: 1.3;
}
.accordion {
	max-width: 880px;
	margin: 0 auto;
	display: grid;
	gap: 12px;
}
.acc-item {
	background: #fafafa;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
	border: 1px solid #e5e5e5;
	transition: box-shadow 0.3s ease;
}
.acc-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.acc-trigger {
	width: 100%;
	border: 0;
	background: transparent;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	cursor: pointer;
	font-size: 17px;
	color: var(--text);
	transition: color 0.3s ease;
}
.acc-trigger:hover {
	color: var(--primary);
}
.acc-trigger i { font-style: normal; color: var(--primary); font-size: 20px; font-weight: 700; }
.acc-panel {
	padding: 0 20px 18px;
	color: var(--muted);
	display: none;
	line-height: 1.7;
	font-size: 17px;
}

/* SLIDER (Material) */
/* Carrossel contínuo (CSS marquee) */
.carousel {
	--items: 4;
	--carousel-duration: 30s;
	--carousel-width: min(98vw, 1300px);
	--carousel-item-width: clamp(420px, 40vw, 640px);
	--carousel-item-height: clamp(600px, 70vw, 980px);
	--carousel-item-gap: 2px; /* margem ainda menor entre itens */
	position: relative;
	width: var(--carousel-width);
	height: var(--carousel-item-height);
	overflow: clip;
	margin: 0 auto;
}
.carousel[mask] {
	/* brilho (fade) lateral mais sutil */
	mask-image: linear-gradient(to right, transparent, black 4% 96%, transparent);
}
.carousel > article {
	position: absolute;
	top: 0;
	left: calc(100% + var(--carousel-item-gap));
	width: var(--carousel-item-width);
	height: var(--carousel-item-height);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: transparent;
	padding: 0;
	will-change: transform;
	animation-name: marquee;
	animation-duration: var(--carousel-duration);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-delay: calc(var(--carousel-duration) / var(--items) * var(--i) * -1);
}
.carousel > article:nth-child(1) { --i: 0; }
.carousel > article:nth-child(2) { --i: 1; }
.carousel > article:nth-child(3) { --i: 2; }
.carousel > article:nth-child(4) { --i: 3; }
.carousel > article:nth-child(5) { --i: 4; }
.carousel > article:nth-child(6) { --i: 5; }
.carousel > article:nth-child(7) { --i: 6; }
.carousel > article:nth-child(8) { --i: 7; }
.carousel > article:nth-child(9) { --i: 8; }
.carousel > article:nth-child(10) { --i: 9; }
.carousel img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 10px;
	background: transparent;
	display: block;
	margin: 0 auto;
}
@keyframes marquee {
	100% {
		transform: translateX(calc((var(--items) * (var(--carousel-item-width) + var(--carousel-item-gap))) * -1));
	}
}
@media (max-width: 600px) {
	.carousel {
		--carousel-width: min(98vw, 640px);
		--carousel-item-width: clamp(320px, 96vw, 640px);
		--carousel-item-height: clamp(480px, 120vw, 880px);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.top-ribbon {
		padding: 6px 0;
		font-size: 10px;
	}
	.ctaGroup .guarantee-badge {
		font-size: 13px;
		padding: 8px 14px;
	}
	.plans-subtitle {
		font-size: 14px;
	}
	.plan-fomo {
		font-size: 13px;
	}
}


