/* CONFIGURAÇÕES GERAIS */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--yellow: #ffd600;
	--yellow-dark: #b89a00;
	--black: #0a0a0a;
	--white: #fafaf7;
	--gray: #1a1a1a;
	--gray2: #2a2a2a;
	--gray3: #3d3d3d;
	--muted: #888;
	--red: #ff3b30;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--black);
	color: var(--white);
	font-family: "DM Sans", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

a{
	color: inherit;
}

a:hover{
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: "Syne", sans-serif;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

/* FRONT PAGE */
/* ===== NAV ===== */
nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid #222;
	padding: 14px 0;
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-family: "Syne", sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.03em;
}

.logo span {
	color: var(--yellow);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-links a {
	font-size: 14px;
	color: var(--muted);
	transition: color 0.15s;
}

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

/* BUTTONS */
.nav-cta {
	background: var(--yellow);
	color: var(--black);
	font-family: "Syne", sans-serif;
	font-weight: 700;
	font-size: 13px;
	padding: 9px 20px;
	border-radius: 6px;
	letter-spacing: 0.02em;
	transition:
		transform 0.15s,
		box-shadow 0.15s;
}

.nav-cta:hover {
	color: var(--black);
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.btn-primary {
	background: var(--yellow);
	color: var(--black);
	font-family: "Syne", sans-serif;
	font-weight: 700;
	font-size: 15px;
	padding: 16px 32px;
	border-radius: 8px;
	letter-spacing: 0.01em;
	transition: all 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	color: var(--black);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(255, 214, 0, 0.35);
}

.btn-ghost {
	color: #888;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.btn-ghost:hover {
	color: var(--white);
}

/* ===== HERO ===== */
.hero {
	padding: 2rem 0;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: -200px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 700px;
	background: radial-gradient(
		circle,
		rgba(255, 214, 0, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1c1c00;
	border: 1px solid #3d3500;
	color: var(--yellow);
	font-size: 12px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 28px;
}

.badge::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--yellow);
	border-radius: 50%;
	flex-shrink: 0;
	animation: blink 1.8s ease infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.hero h1 {
	font-size: clamp(2.8rem, 6vw, 4rem);
	font-weight: 800;
	max-width: 820px;
	margin-bottom: 24px;
}

.hero h1 em {
	font-style: normal;
	color: var(--yellow);
}

.hero-sub {
	font-size: 18px;
	color: #aaa;
	max-width: 580px;
	margin-bottom: 44px;
	font-weight: 300;
	line-height: 1.65;
}

.hero-ctas {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-note {
	margin-top: 16px;
	font-size: 12px;
	color: #555;
	display: flex;
	align-items: center;
	gap: 6px;
}

.hero-note::before {
	content: "✓";
	color: var(--yellow);
}

/* ===== DEMO VISUAL ===== */
.demo-box {
	margin-top: 72px;
	background: var(--gray);
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	overflow: hidden;
}

.demo-top {
	background: #141414;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.demo-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.demo-top-label {
	font-size: 12px;
	color: #555;
	margin-left: 8px;
}

.demo-content {
	padding: 32px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
}

.demo-before,
.demo-after {
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.demo-before {
	background: #1e1e1e;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.demo-after {
	background: #0d1a00;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid #1e3300;
}

.demo-label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 4px;
}

.thumb-before {
	width: 100%;
	aspect-ratio: 16/9;
	background: #2a2a2a;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	border: 1px solid #333;
}

.thumb-before span {
	font-size: 13px;
	color: #555;
	font-style: italic;
}

.ctr-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #1a0000;
	border: 1px solid #440000;
	color: #ff6b6b;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 20px;
}

.thumb-after {
	width: 100%;
	aspect-ratio: 16/9;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, #1a2e00 0%, #0a1800 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0;
}

.thumb-text-big {
	font-family: "Syne", sans-serif;
	font-size: clamp(16px, 3vw, 26px);
	font-weight: 800;
	color: var(--yellow);
	text-align: center;
	line-height: 1.1;
	padding: 0 12px;
}

.thumb-text-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 6px;
}

.thumb-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--red);
	color: white;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 4px;
}

.ctr-pill-green {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #001a08;
	border: 1px solid #004d1a;
	color: #4ade80;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 20px;
}

.arrow-mid {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--yellow);
}

/* ===== STATS ===== */
.stats {
	padding: 60px 0;
	border-top: 1px solid #1a1a1a;
	border-bottom: 1px solid #1a1a1a;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.stat-number {
	font-family: "Syne", sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: var(--yellow);
}

.stat-label {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

/* ===== SECTION BASE ===== */
.section {
	padding: 96px 0;
}

.tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--yellow);
	margin-bottom: 16px;
}

.section h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 20px;
}

.section-sub {
	color: #888;
	font-size: 17px;
	line-height: 1.7;
	max-width: 560px;
}

/* ===== PROBLEM ===== */
.problem-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px;
}

.problem-card {
	background: var(--gray);
	border: 1px solid #2a2a2a;
	border-radius: 14px;
	padding: 28px;
}

.problem-card.bad {
	border-color: #3a0000;
	background: #150000;
}

.problem-card.good {
	border-color: #1e3300;
	background: #0a1500;
}

.pcard-icon {
	font-size: 28px;
	margin-bottom: 16px;
}

.pcard-title {
	font-family: "Syne", sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.pcard-title.red {
	color: #ff6b6b;
}

.pcard-title.green {
	color: #4ade80;
}

.pcard-body {
	font-size: 14px;
	color: #777;
	line-height: 1.65;
}

/* ===== HOW ===== */
.how {
	padding: 96px 0;
	background: #0d0d0d;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 64px;
	position: relative;
}

.steps::before {
	content: "";
	position: absolute;
	top: 40px;
	left: calc(16.67% + 20px);
	right: calc(16.67% + 20px);
	height: 1px;
	background: var(--yellow);
	opacity: 0.2;
}

.step {
	text-align: center;
	padding: 0 24px;
	position: relative;
}

.step-num {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #1a1a00;
	border: 2px solid var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Syne", sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: var(--yellow);
	margin: 0 auto 24px;
}

.step-title {
	font-family: "Syne", sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}

.step-body {
	font-size: 14px;
	color: #777;
	line-height: 1.65;
}

.step-chip {
	display: inline-block;
	background: #1c1c00;
	border: 1px solid #333200;
	color: #cca800;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 20px;
	margin-top: 12px;
	font-style: italic;
}

/* ===== PRICING ===== */
.pricing {
	padding: 96px 0;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 64px;
}

.price-card {
	background: var(--gray);
	border: 1px solid #2a2a2a;
	border-radius: 16px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s;
}

.price-card:hover {
	transform: translateY(-4px);
}

.price-card.featured {
	background: #0f1a00;
	border-color: var(--yellow);
	border-width: 2px;
	position: relative;
}

.featured-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--yellow);
	color: var(--black);
	font-family: "Syne", sans-serif;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 16px;
	border-radius: 20px;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.plan-name {
	font-family: "Syne", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 12px;
}

.plan-price {
	font-family: "Syne", sans-serif;
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 4px;
}

.plan-price-note {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 28px;
}

.plan-divider {
	border: none;
	border-top: 1px solid #2a2a2a;
	margin: 24px 0;
}

.plan-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.plan-features li {
	font-size: 14px;
	color: #aaa;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}

.plan-features li::before {
	content: "✓";
	color: var(--yellow);
	flex-shrink: 0;
	font-weight: 700;
	margin-top: 1px;
}

.plan-features li.muted-feat::before {
	content: "—";
	color: #444;
}

.plan-features li.muted-feat {
	color: #555;
}

.plan-btn {
	display: block;
	text-align: center;
	font-family: "Syne", sans-serif;
	font-weight: 700;
	font-size: 14px;
	padding: 13px;
	border-radius: 8px;
	margin-top: 28px;
	transition: all 0.2s;
	letter-spacing: 0.01em;
	cursor: pointer;
	border: none;
	width: 100%;
}

.plan-btn-ghost {
	background: transparent;
	border: 1px solid #333;
	color: #888;
}

.plan-btn-ghost:hover {
	border-color: #666;
	color: var(--white);
}

.plan-btn-primary {
	background: var(--yellow);
	color: var(--black);
}

.plan-btn-primary:hover {
	box-shadow: 0 6px 24px rgba(255, 214, 0, 0.3);
}

/* ===== SOCIAL PROOF ===== */
.proof {
	padding: 96px 0;
	background: #0d0d0d;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.testimonial {
	background: var(--gray);
	border: 1px solid #2a2a2a;
	border-radius: 14px;
	padding: 24px;
}

.testimonial-stars {
	color: var(--yellow);
	font-size: 14px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.testimonial-text {
	font-size: 14px;
	color: #aaa;
	line-height: 1.7;
	margin-bottom: 16px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.testimonial-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Syne", sans-serif;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.testimonial-name {
	font-size: 13px;
	font-weight: 500;
	color: var(--white);
}

.testimonial-channel {
	font-size: 11px;
	color: var(--muted);
}

/* CTR card */
.ctr-card {
	background: var(--gray);
	border: 1px solid #2a2a2a;
	border-radius: 14px;
	padding: 28px;
	margin-top: 56px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.ctr-card-left h3 {
	font-family: "Syne", sans-serif;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

.ctr-card-left p {
	font-size: 14px;
	color: #777;
	line-height: 1.7;
}

.ctr-bars {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ctr-bar-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ctr-bar-top {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--muted);
}

.ctr-bar-track {
	background: #222;
	border-radius: 99px;
	height: 8px;
	overflow: hidden;
}

.ctr-bar-fill {
	height: 100%;
	border-radius: 99px;
	transition: width 1.2s ease;
}

/* ===== FAQ ===== */
.faq {
	padding: 96px 0;
}

.faq-list {
	margin-top: 56px;
	max-width: 780px;
}

.faq-item {
	border-bottom: 1px solid #1e1e1e;
	padding: 24px 0;
	cursor: pointer;
}

.faq-q {
	font-family: "Syne", sans-serif;
	font-size: 17px;
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.faq-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid #333;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--muted);
	font-size: 18px;
	transition:
		transform 0.2s,
		border-color 0.2s;
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
	border-color: var(--yellow);
	color: var(--yellow);
}

.faq-a {
	font-size: 14px;
	color: #777;
	line-height: 1.7;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.35s ease,
		padding 0.3s;
}

.faq-item.open .faq-a {
	max-height: 220px;
	padding-top: 14px;
}

/* ===== FINAL CTA ===== */
.final-cta {
	padding: 100px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(255, 214, 0, 0.07) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.final-cta h2 {
	font-size: clamp(2.2rem, 5vw, 4rem);
	font-weight: 800;
	max-width: 700px;
	margin: 0 auto 20px;
}

.final-cta p {
	color: #777;
	font-size: 17px;
	max-width: 480px;
	margin: 0 auto 40px;
}

.text-yellow {
	color: var(--yellow);
}

.final-trust {
	margin-top: 20px;
	font-size: 13px;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.final-trust span::before {
	content: "✓ ";
	color: var(--yellow);
}

/* ===== FOOTER ===== */
footer {
	border-top: 1px solid #1a1a1a;
	padding: 32px 0;
}

.footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

footer p {
	font-size: 13px;
	color: #555;
}

.footer-links {
	display: flex;
	gap: 20px;
}

.footer-links a {
	font-size: 13px;
	color: #555;
	transition: color 0.15s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
	.pricing-grid {
		grid-template-columns: 1fr 1fr;
	}
	.proof-grid {
		grid-template-columns: 1fr;
	}
	.ctr-card {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 720px) {
	.steps {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.steps::before {
		display: none;
	}
	.problem-grid {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.nav-links {
		display: none;
	}
	.demo-content {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.arrow-mid {
		transform: rotate(90deg);
	}
	.pricing-grid {
		grid-template-columns: 1fr;
	}
}

