: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.musicas-selecionadas { padding-bottom: 0; }
.section.hero { padding-top: 32px; padding-bottom: 64px; }
.section.material { padding-top: 16px; padding-bottom: 64px; }

/* CARROSSEL INFINITO */
.section-carrossel {
	padding: 0;
	overflow: hidden;
	background: #000;
	width: 100%;
}
.carrossel-titulo {
	text-align: center;
	color: #ffffff;
	font-size: clamp(20px, 4vw, 32px);
	font-weight: 900;
	letter-spacing: 1px;
	margin: 0;
	padding: 40px 20px 28px;
	text-transform: uppercase;
}
.carrossel-track-wrapper {
	width: 100%;
	overflow: hidden;
}
.carrossel-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	will-change: transform;
}
.carrossel-slide {
	flex: 0 0 auto;
	width: min(480px, 90vw);
}
.carrossel-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
@media (max-width: 600px) {
	.carrossel-slide {
		width: 85vw;
	}
}
.section.dark {
	background: var(--dark);
	color: #f5f5f5;
}
.section.benefits {
	padding-top: 10px;
}
.section.promise {
	padding-top: 16px;
}

.top-ribbon {
	background: var(--danger);
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 10px 0;
	letter-spacing: 0.3px;
	font-size: 12px;
	position: relative;
}
.top-ribbon .container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-ribbon span { display: inline-block; }

.security-banner {
	background: var(--primary);
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: 8px 0;
	letter-spacing: 0.3px;
	font-size: 13px;
}
.security-banner .container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.security-banner span { display: inline-block; }

/* HERO */
.section.hero {
	background: #1a1a1a;
	color: #ffffff;
	padding: 48px 0 64px;
}
.hero-security-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #dbeafe;
	border: 2px solid #3b82f6;
	color: #1d4ed8;
	font-size: clamp(11px, 3.5vw, 15px);
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 10px 20px;
	border-radius: 999px;
	margin: 0 auto 24px;
	width: fit-content;
	max-width: 90%;
	text-align: center;
}
@media (max-width: 768px) {
	.hero-security-badge {
		font-size: 11px;
		padding: 7px 14px;
		letter-spacing: 0.3px;
	}
}
.hero-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 24px;
}
.hero-logo img {
	max-width: 200px;
	height: auto;
	display: block;
}
.hero h1 {
	font-family: 'Poppins', 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: clamp(32px, 6.5vw, 60px);
	text-align: center;
	margin: 0 0 32px 0;
	line-height: 1.25;
	color: #ffffff;
	letter-spacing: -0.5px;
}
.hero h1 strong {
	color: #ffffff;
	font-weight: 900;
}
.hero h1 i {
	font-style: normal;
	color: #ffd700;
	display: inline;
	font-weight: 900;
}
.hero h1 u {
	text-decoration: none;
	color: #ffd700;
	font-weight: 900;
}
.hero-media {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 32px 0 28px;
}
.hero-media img {
	width: min(800px, 95%);
	height: auto;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	display: block;
}
@media (min-width: 769px) {
	.hero-media img {
		width: min(500px, 60%);
	}
}
@media (max-width: 768px) {
	.hero-media {
		margin-left: -20px;
		margin-right: -20px;
		margin-top: 32px;
		margin-bottom: 28px;
		width: calc(100% + 40px);
	}
	.hero-media img {
		width: 100%;
		max-width: none;
	}
}
.hero-description {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 32px;
	color: #e0e0e0;
	font-size: clamp(18px, 2.5vw, 22px);
	line-height: 1.7;
	font-weight: 400;
}
.hero-description .highlight-keyword {
	color: #ffd700;
	font-weight: 700;
}
.hero-description strong {
	color: #ffd700;
	font-weight: 800;
}
.hero-cta {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.btn-hero {
	padding: 20px 48px;
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 800;
	width: 100%;
	max-width: 600px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: linear-gradient(135deg, #ffd700 0%, #ffc107 100%);
	color: #2a1f14;
	box-shadow: 0 4px 16px rgba(255, 215, 0, .5);
	border: 2px solid #ffd700;
	animation: pulse-button 2s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}
.btn-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}
.btn-hero:hover {
	background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
	box-shadow: 0 6px 20px rgba(255, 215, 0, .6);
	transform: translateY(-2px);
	animation: none;
}
@keyframes pulse-button {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 4px 16px rgba(255, 215, 0, .5);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 6px 24px rgba(255, 215, 0, .7);
	}
}
@keyframes shine {
	0% {
		left: -100%;
	}
	50%, 100% {
		left: 100%;
	}
}
.btn-animated {
	animation: pulse-button 2s ease-in-out infinite;
	position: relative;
	overflow: hidden;
}
.btn-animated::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	animation: shine 3s infinite;
}
.btn-animated:hover {
	animation: none;
	transform: translateY(-2px);
}
.hero-delivery-text {
	margin: 0 0 8px 0;
	color: #b0b0b0;
	font-size: clamp(16px, 2vw, 18px);
	text-align: center;
	line-height: 1.6;
}
.hero-delivery-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin: 12px 0 20px;
	flex-wrap: wrap;
}
.delivery-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: #2a2a2a;
	border-radius: 8px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.delivery-button svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.email-button svg {
	fill: #ffffff;
}
.whatsapp-button svg {
	fill: #25d366;
}
.hero-social-proof {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}
.client-avatars {
	display: flex;
	align-items: center;
	justify-content: center;
}
.client-avatars .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #2a2a2a;
	border: 3px solid #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-left: -12px;
	position: relative;
}
.client-avatars .avatar:first-child {
	margin-left: 0;
	z-index: 5;
}
.client-avatars .avatar:nth-child(2) {
	z-index: 4;
}
.client-avatars .avatar:nth-child(3) {
	z-index: 3;
}
.client-avatars .avatar:nth-child(4) {
	z-index: 2;
}
.client-avatars .avatar:nth-child(5) {
	z-index: 1;
}
.client-count {
	margin: 0;
	color: #b0b0b0;
	font-size: clamp(16px, 2vw, 18px);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.5px;
}
.hero-guarantee {
	color: #d1fae5;
	font-size: 15px;
	text-align: center;
	background: rgba(34, 197, 94, 0.1);
	border: 1px solid rgba(34, 197, 94, 0.3);
	border-radius: 8px;
	padding: 10px 20px;
	margin-top: 8px;
}
.hero-guarantee strong {
	color: #4ade80;
}
.hero-cta .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: #000000;
	padding-bottom: 0;
}
.cifras h2 {
	text-align: center;
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 900;
	margin: 0 0 16px;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: 2px;
}
.cifras-description {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 32px;
	color: #d0d0d0;
	font-size: clamp(17px, 2.2vw, 19px);
	line-height: 1.7;
}
.cifras-description strong {
	color: #ffffff;
	font-weight: 700;
}
.cifras-media {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
}
.cifras-media img {
	width: 100%;
	height: auto;
	border-radius: 0;
	box-shadow: none;
	background: #000000;
	display: block;
}
@media (min-width: 769px) {
	.cifras-media {
		max-width: 450px;
		margin: 0 auto;
	}
	.cifras-media img {
		width: 100%;
		margin: 0 auto;
	}
}

/* MÚSICAS SELECIONADAS SECTION */
.musicas-selecionadas {
	background: #000000;
	padding: 0;
}
.musicas-selecionadas h2 {
	text-align: center;
	font-size: clamp(36px, 6vw, 64px);
	font-weight: 900;
	margin: 0;
	line-height: 1.2;
	color: #ffffff;
	letter-spacing: 2px;
}
.musicas-selecionadas-media {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	margin-top: 0;
	margin-bottom: 0;
}
.musicas-selecionadas-media img {
	width: 100%;
	height: auto;
	border-radius: 0;
	box-shadow: none;
	background: #000000;
	display: block;
	margin-bottom: 0;
}
@media (min-width: 769px) {
	.musicas-selecionadas-media {
		max-width: 450px;
		margin: 0 auto;
	}
	.musicas-selecionadas-media img {
		width: 100%;
		margin: 0 auto;
	}
}
.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: 32px 0;
	line-height: 1.3;
}
.benefits-eyebrow {
	text-align: center;
	color: #ffffff;
	font-size: clamp(18px, 2.5vw, 22px);
	font-weight: 600;
	margin: 0 0 12px;
	line-height: 1.4;
	opacity: 0.95;
}
.benefits .lead {
	text-align: center;
	color: #d1d1d1;
	max-width: 860px;
	margin: 0 auto 32px;
	font-size: 17px;
	line-height: 1.6;
}
.benefits .lead strong {
	color: #ffd700;
	font-weight: 900;
	font-size: 20px;
	text-shadow: 0 2px 8px rgba(255, 215, 0, .4);
	letter-spacing: 0.5px;
}
.benefits-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 32px 0;
}
.benefits-image img {
	width: 100%;
	height: auto;
	border-radius: 0;
	display: block;
}
@media (min-width: 769px) {
	.benefits-image img {
		width: min(700px, 70%);
		margin: 0 auto;
	}
}
.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 {
	background: #f5f5f5;
}
.ideal h2 {
	text-align: center;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 700;
	margin: 10px 0 20px;
	line-height: 1.3;
	color: var(--text);
}
.ideal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 0;
	align-items: stretch;
}
.ideal-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 32px 28px;
	box-shadow: 0 4px 16px rgba(0,0,0,.08);
	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,.12);
	border-color: #ffd700;
}
.ideal-card .icon { 
	color: #ffd700; 
	font-size: 28px; 
	margin-bottom: 12px;
	display: block;
	font-weight: 900;
}
.ideal-card h3 { 
	margin: 0 0 12px; 
	font-weight: 700; 
	font-size: 19px; 
	color: var(--text);
	line-height: 1.3;
}
.ideal-card p { 
	margin: 0; 
	color: var(--muted); 
	line-height: 1.7; 
	font-size: 16px;
}

/* 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;
}
@media (min-width: 769px) {
	.recebera-media img {
		width: min(450px, 65%);
	}
}
.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(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 10px;
	align-items: stretch;
}
.bonus-card {
	background: #1a1a1a;
	border-radius: 12px;
	padding: 0;
	box-shadow: 0 4px 12px rgba(0,0,0,.3);
	border: 1px solid rgba(220, 38, 38, 0.3);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bonus-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,.5);
	border-color: rgba(220, 38, 38, 0.5);
}
.bonus-image-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.bonus-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 0;
	background: #2b2b2b;
}
.bonus-tag {
	position: absolute;
	top: 12px;
	right: 12px;
	background: #ff8c00;
	color: #000000;
	padding: 6px 12px;
	border-radius: 4px;
	font-weight: 900;
	font-size: 13px;
	transform: rotate(2deg);
	box-shadow: 0 2px 8px rgba(0,0,0,.4);
	z-index: 2;
}
.bonus-card h3 {
	margin: 16px 18px 8px;
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}
.bonus-card p {
	margin: 0 18px 16px;
	color: #d0d0d0;
	font-size: 15px;
	line-height: 1.6;
	flex-grow: 1;
}
.bonus-value {
	background: #2a2a2a;
	border: 1px solid rgba(220, 38, 38, 0.4);
	border-radius: 6px;
	margin: 0 18px 18px;
	padding: 10px 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.value-strikethrough {
	color: #dc2626;
	font-size: 14px;
	text-decoration: line-through;
}
.value-free {
	color: var(--primary);
	font-weight: 700;
	font-size: 15px;
}

/* 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: #fafafa; }
.plans-urgency-banner {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 32px;
	width: fit-content;
	background: var(--danger);
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 999px;
	border: 2px solid #ffffff;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(220, 38, 38, .3);
}
.plans-urgency-banner span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.plans-title {
	text-align: center;
	font-size: clamp(32px, 6vw, 56px);
	font-weight: 900;
	margin: 0 0 8px;
	line-height: 1.2;
	color: var(--text);
}
.plans-title-red {
	color: var(--danger);
	display: block;
	margin-top: 4px;
}
.plans-title-underline {
	width: 80px;
	height: 3px;
	background: var(--text);
	margin: 0 auto 40px;
	border-radius: 2px;
}
.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%);
}
@media (min-width: 769px) {
	.plan-media img {
		width: min(240px, 70%);
	}
	.plan-card.plan-featured .plan-media img {
		width: min(380px, 75%);
	}
}
.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: 1000px) {
	.bonus-grid {
		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; 
		gap: 16px;
	}
	.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;
	}
}


