:root {
	--bg: #0a0e1a;
	--bg2: #0f1628;
	--bg3: #131c35;
	--blue: #3b6ff5;
	--blue-bright: #5b8aff;
	--purple: #7c3aed;
	--green: #22c55e;
	--red: #ef4444;
	--text: #e8edf8;
	--muted: #7a8aaa;
	--border: rgba(59,111,245,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ─── SCROLL OFFSET (navbar fixa) ─── */
section[id],
div[id="upload"],
#upload, #problema, #publico, #como, #tecnologia, #beneficios {
	scroll-margin-top: 80px;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ─── NOISE OVERLAY ─── */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
	opacity: 0.4;
}

/* ─── GLOW ORBS ─── */
.orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
	z-index: 0;
}
.orb-1 {
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(59,111,245,0.12) 0%, transparent 70%);
	top: -200px; left: -200px;
}
.orb-2 {
	width: 500px; height: 500px;
	background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
	bottom: 10%; right: -150px;
}

/* ─── NAV ─── */
nav {
	position: fixed; top: 0; left: 0; right: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 16px 48px;
	background: rgba(10,14,26,0.75);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
}
.logo {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: -0.02em;
	color: var(--text);
}
.logo span { color: var(--blue-bright); }
.nav-links {
	display: flex; align-items: center; gap: 6px;
}
.nav-link {
	color: #c8d4e8;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 0.925rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	white-space: nowrap;
	letter-spacing: -0.01em;
}
.nav-link:hover {
	color: #fff;
	background: rgba(255,255,255,0.08);
}
.nav-cta {
	background: var(--blue);
	color: #fff;
	padding: 9px 22px;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
	border: 1px solid rgba(91,138,255,0.3);
	margin-left: 8px;
	white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-bright); transform: translateY(-1px); }
.nav-mobile-toggle {
	display: none;
	align-items: center; justify-content: center;
	background: rgba(59,111,245,0.15);
	border: 1px solid rgba(91,138,255,0.4);
	color: #fff;
	width: 42px; height: 42px;
	border-radius: 10px; cursor: pointer;
	font-size: 1.3rem; transition: all 0.2s;
	font-weight: 700; letter-spacing: -1px;
}
.nav-mobile-toggle:hover {
	background: rgba(59,111,245,0.3);
	border-color: var(--blue-bright);
}
@media (max-width: 860px) {
	nav { padding: 14px 16px; flex-wrap: wrap; gap: 8px; position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: space-between; align-items: center; grid-template-columns: unset; }
	.nav-links { display: none; }
	.nav-cta { display: none; }
	.nav-mobile-toggle { display: flex; }
	.nav-links.open {
		display: flex; flex-direction: column;
		width: 100%; order: 3;
		background: var(--bg2);
		border: 1px solid var(--border);
		border-radius: 12px; padding: 8px; gap: 2px;
	}
	.nav-links.open .nav-link {
		padding: 12px 16px; border-radius: 8px; width: 100%;
	}
}

/* ─── HERO ─── */
.hero {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 120px 24px 48px;
	text-align: center;
}

.badge {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(59,111,245,0.1);
	border: 1px solid rgba(59,111,245,0.25);
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--blue-bright);
	margin-bottom: 18px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	animation: fadeUp 0.6s ease both;
}
.badge-dot {
	width: 6px; height: 6px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

h1 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(2rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.04em;
	max-width: 820px;
	animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
	font-style: normal;
	background: linear-gradient(135deg, var(--blue-bright), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-sub {
	margin-top: 24px;
	font-size: 1rem;
	color: #a8b8d0;
	max-width: 560px;
	font-weight: 400;
	line-height: 1.75;
	letter-spacing: 0.01em;
	animation: fadeUp 0.6s 0.2s ease both;
}

/* ─── DROP ZONE ─── */
.drop-wrapper {
	margin-top: 28px;
	width: 100%;
	max-width: 600px;
	animation: fadeUp 0.6s 0.3s ease both;
}

.drop-area {
	position: relative;
	border: 2px dashed rgba(59,111,245,0.4);
	border-radius: 20px;
	padding: 36px 28px;
	cursor: pointer;
	transition: all 0.3s;
	background: rgba(15,22,40,0.6);
	backdrop-filter: blur(10px);
	overflow: hidden;
}
.drop-area::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(59,111,245,0.06) 0%, transparent 70%);
	pointer-events: none;
}
.drop-area:hover, .drop-area.dragover {
	border-color: var(--blue-bright);
	background: rgba(59,111,245,0.08);
	transform: translateY(-2px);
	box-shadow: 0 20px 60px rgba(59,111,245,0.15);
}
.drop-icon {
	font-size: 2.6rem;
	margin-bottom: 12px;
	display: block;
}
.drop-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 12px;
	letter-spacing: -0.03em;
	color: var(--text);
}
.drop-hint {
	font-size: 1rem;
	color: #a8b8d0;
	margin-bottom: 18px;
	font-weight: 400;
	line-height: 1.6;
}
.drop-btn {
	display: inline-flex; align-items: center; gap: 10px;
	background: linear-gradient(135deg, var(--blue), var(--purple));
	color: #fff;
	padding: 12px 28px;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
	font-family: 'Plus Jakarta Sans', sans-serif;
	box-shadow: 0 8px 30px rgba(59,111,245,0.3);
	letter-spacing: -0.01em;
}
.drop-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,111,245,0.4); }
.drop-meta {
	margin-top: 20px;
	font-size: 0.9rem;
	color: #a8b8d0;
	display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
	font-weight: 500;
}
.drop-meta span { display: flex; align-items: center; gap: 6px; }

/* ─── TRUST BAR ─── */
.trust-bar {
	position: relative; z-index: 1;
	display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
	background: rgba(15,22,40,0.6);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.trust-item {
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	font-size: 0.78rem; color: #7a8aaa; font-weight: 600;
	letter-spacing: 0.06em; text-transform: uppercase;
	padding: 18px 24px;
	border-right: 1px solid var(--border);
	flex: 1; min-width: 130px;
}
.trust-item:last-child { border-right: none; }
.trust-item strong {
	display: block;
	color: var(--text);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-transform: none;
	line-height: 1;
}
.trust-item .trust-emoji {
	font-size: 1.3rem;
	line-height: 1;
}

/* ─── SECTIONS ─── */
section {
	position: relative; z-index: 1;
	padding: 40px 24px;
}
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
	font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--blue-bright);
	margin-bottom: 14px;
}
.section-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	max-width: 580px;
}
.section-sub {
	margin-top: 18px; color: #a8b8d0;
	max-width: 540px; font-size: 1.05rem;
	line-height: 1.75; font-weight: 400;
}

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

.meta-card {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.meta-card::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 2px;
	background: linear-gradient(90deg, transparent, rgba(239,68,68,0.5), transparent);
}
.meta-card:hover { border-color: rgba(239,68,68,0.3); transform: translateY(-3px); }
.meta-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
.meta-card h4 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700; font-size: 0.95rem;
	margin-bottom: 6px;
}
.meta-card p { font-size: 0.925rem; color: #a8b8d0; line-height: 1.65; }
.risk-tag {
	display: inline-block;
	background: rgba(239,68,68,0.15);
	color: var(--red);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 100px;
	margin-bottom: 10px;
}

.problem-visual {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 32px;
	margin-top: 28px;
	display: flex;
	align-items: center;
	gap: 32px;
}
.pv-text { flex: 1; }
.pv-text h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.3rem; font-weight: 700; margin-bottom: 10px;
}
.pv-text p { color: var(--muted); font-size: 0.9rem; }
.pv-img {
	flex: 1;
	background: var(--bg3);
	border-radius: 12px;
	padding: 20px;
	font-family: 'DM Mono', monospace;
	font-size: 0.78rem;
	color: var(--muted);
	line-height: 2;
	border: 1px solid var(--border);
}
.pv-img .hi { color: var(--red); font-weight: 600; }
.pv-img .ok { color: var(--green); }

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--bg2); }

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	margin-top: 36px;
	background: var(--border);
	border-radius: 20px;
	overflow: hidden;
}
.step {
	background: var(--bg2);
	padding: 28px 24px;
	position: relative;
}
.step-num {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 2.4rem; font-weight: 800;
	color: rgba(255,255,255,0.55);
	line-height: 1;
	margin-bottom: 16px;
}
.step-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.step h4 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.05rem; font-weight: 700;
	margin-bottom: 10px; letter-spacing: -0.01em;
}
.step p { font-size: 0.925rem; color: #a8b8d0; line-height: 1.65; }

/* ─── TECH ─── */
.tech-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 36px;
	align-items: start;
}
.tech-vis {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px 24px;
	align-self: start;
}
.flow-step {
	display: flex; align-items: center; gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--border);
}
.flow-step:last-child { border-bottom: none; }
.flow-icon {
	width: 40px; height: 40px;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem; flex-shrink: 0;
}
.flow-icon.red { background: rgba(239,68,68,0.15); }
.flow-icon.blue { background: rgba(59,111,245,0.15); }
.flow-icon.green { background: rgba(34,197,94,0.15); }
.flow-text h5 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.925rem; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em;
}
.flow-text p { font-size: 0.85rem; color: #a8b8d0; line-height: 1.5; }

.arrow-down {
	text-align: center; font-size: 1rem; color: var(--muted);
	padding: 2px 0;
}

/* ─── BENEFITS ─── */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 36px;
}
.benefit {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 20px;
	transition: all 0.3s;
}
.benefit:hover { border-color: rgba(59,111,245,0.4); transform: translateY(-3px); }
.benefit .icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.benefit h4 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em;
}
.benefit p { font-size: 0.925rem; color: #a8b8d0; line-height: 1.65; }



/* ─── FOOTER ─── */
footer {
	position: relative; z-index: 1;
	border-top: 1px solid var(--border);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}
.footer-logo {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800;
	font-size: 1.6rem;
	letter-spacing: -0.03em;
	color: var(--text);
	text-decoration: none;
}
.footer-logo span { color: var(--blue-bright); }
.footer-tagline {
	font-size: 1.05rem;
	font-weight: 600;
	color: #c8d4e8;
	letter-spacing: 0.01em;
}
.footer-copy {
	font-size: 0.8rem;
	color: var(--muted);
	margin-top: 6px;
}

/* ─── RESULT AREA ─── */
#result-area { position: relative; z-index: 1; }
.result-area-wrap { padding: 28px 24px 40px; background: var(--bg); }
.result-header {
	max-width: 900px; margin: 0 auto 32px;
	display: flex; align-items: center; justify-content: space-between;
	flex-wrap: wrap; gap: 16px;
}
.result-header-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em;
}
.result-header-title span { color: var(--green); }
.result-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-nova {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: #c8d4e8;
	padding: 10px 20px; border-radius: 10px; font-size: 0.875rem; font-weight: 600;
	cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none;
}
.btn-nova:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.btn-download-big {
	display: inline-flex; align-items: center; gap: 10px;
	background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff;
	padding: 12px 28px; border-radius: 10px; font-size: 0.95rem; font-weight: 700;
	text-decoration: none; transition: all 0.2s; box-shadow: 0 8px 24px rgba(34,197,94,0.3);
	font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-download-big:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(34,197,94,0.4); }
.result-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 20px; max-width: 900px; margin: 0 auto 24px;
}
.result-card {
	background: var(--bg2); border: 1px solid var(--border);
	border-radius: 16px; padding: 20px; text-align: center;
}
.result-card.clean { border-color: rgba(34,197,94,0.3); box-shadow: 0 0 40px rgba(34,197,94,0.06); }
.result-card h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.95rem; font-weight: 700; margin-bottom: 14px;
}
.result-card img { width: 100%; border-radius: 10px; }
.result-share {
	max-width: 900px; margin: 24px auto 0;
	background: rgba(59,111,245,0.06); border: 1px solid rgba(59,111,245,0.2);
	border-radius: 14px; padding: 20px 24px;
	display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.result-share-text { font-size: 0.9rem; color: #a8b8d0; }
.result-share-text strong { color: var(--text); display: block; font-size: 1rem; margin-bottom: 4px; }
.btn-share {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--blue); color: #fff; padding: 10px 22px; border-radius: 10px;
	font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s;
	white-space: nowrap; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; border: none;
}
.btn-share:hover { background: var(--blue-bright); }

.gps-alert {
	max-width: 900px; margin: 0 auto 24px;
	background: rgba(239,68,68,0.12);
	border: 1px solid rgba(239,68,68,0.3);
	border-radius: 12px;
	padding: 16px 24px;
	display: flex; align-items: center; gap: 12px;
	font-size: 0.9rem; font-weight: 500;
}
.meta-table {
	max-width: 900px; margin: 0 auto;
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 16px; padding: 16px 20px;
}
.meta-table h3 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.05rem; font-weight: 800; margin-bottom: 10px;
	color: var(--red);
	letter-spacing: -0.01em;
}
.meta-critico { color: var(--red); font-weight: 700; }
.meta-alto { color: #f97316; font-weight: 700; }
.meta-medio { color: #f97316; font-weight: 700; }
.meta-baixo { color: #fbbf24; font-weight: 700; }
.meta-table ul { list-style: none; }
.meta-table li {
	padding: 4px 0;
	border-bottom: 1px solid var(--border);
	font-size: 0.82rem; color: var(--muted);
	word-break: break-all;
	overflow-wrap: anywhere;
	white-space: normal;
	line-height: 1.4;
}
.meta-table li:last-child { border-bottom: none; }
.meta-table li b { margin-right: 6px; }

/* ─── CHOQUE SECTION ─── */
.choque-section {
	position: relative; z-index: 1;
	padding: 36px 24px;
	background: var(--bg);
}
.choque-inner {
	max-width: 900px; margin: 0 auto;
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 32px; align-items: center;
}
.choque-text .section-label { margin-bottom: 12px; }
.choque-text h2 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 800; letter-spacing: -0.02em;
	line-height: 1.2; margin-bottom: 16px;
}
.choque-text p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.choque-cta {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(239,68,68,0.15);
	border: 1px solid rgba(239,68,68,0.35);
	color: #fca5a5;
	padding: 11px 24px; border-radius: 10px;
	font-size: 0.875rem; font-weight: 600;
	cursor: pointer; transition: all 0.2s;
	font-family: 'Manrope', sans-serif;
	text-decoration: none;
}
.choque-cta:hover { background: rgba(239,68,68,0.25); }

.choque-terminal {
	background: #060b14;
	border: 1px solid rgba(239,68,68,0.25);
	border-radius: 16px; overflow: hidden;
	box-shadow: 0 0 60px rgba(239,68,68,0.08);
}
.terminal-bar {
	background: #0d1420;
	padding: 10px 16px;
	display: flex; align-items: center; gap: 8px;
	border-bottom: 1px solid rgba(239,68,68,0.15);
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.r { background: #ef4444; }
.t-dot.y { background: #f59e0b; }
.t-dot.g { background: #22c55e; }
.terminal-title { font-size: 0.75rem; color: var(--muted); margin-left: 8px; }
.terminal-body {
	padding: 24px;
	font-family: 'Courier New', monospace;
	font-size: 0.82rem;
	line-height: 2;
}
.t-label { color: #64748b; }
.t-red { color: #f87171; font-weight: 600; }
.t-yellow { color: #fbbf24; }
.t-green { color: #4ade80; }
.t-white { color: #e2e8f0; }
.t-blink { display: inline-block; animation: tblink 1s infinite; color: var(--blue-bright); }
.t-line { opacity: 0; animation: lineReveal 0.4s ease forwards; }
.t-line:nth-child(1) { animation-delay: 0.3s; }
.t-line:nth-child(2) { animation-delay: 0.8s; }
.t-line:nth-child(3) { animation-delay: 1.3s; }
.t-line:nth-child(4) { animation-delay: 1.8s; }
.t-line:nth-child(5) { animation-delay: 2.3s; }
.t-line:nth-child(6) { animation-delay: 2.8s; }
.t-line:nth-child(7) { animation-delay: 3.3s; }
.t-line:nth-child(8) { animation-delay: 3.8s; }

/* ─── PÚBLICO-ALVO SECTION ─── */
.publico-section {
	position: relative; z-index: 1;
	padding: 40px 24px;
	background: var(--bg3);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.publico-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 36px;
}
.publico-card {
	background: var(--bg2);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 22px 20px;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.publico-card::after {
	content: '';
	position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--purple));
	transform: scaleX(0); transition: transform 0.3s;
}
.publico-card:hover { border-color: rgba(59,111,245,0.4); transform: translateY(-4px); }
.publico-card:hover::after { transform: scaleX(1); }
.publico-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.publico-tag {
	display: inline-block;
	background: rgba(59,111,245,0.12);
	color: var(--blue-bright);
	font-size: 0.7rem; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase;
	padding: 4px 12px; border-radius: 100px;
	margin-bottom: 14px;
}
.publico-card h4 {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em;
}
.publico-card p { font-size: 0.925rem; color: #a8b8d0; margin-bottom: 16px; line-height: 1.65; }
.publico-risco {
	background: rgba(239,68,68,0.08);
	border: 1px solid rgba(239,68,68,0.2);
	border-radius: 8px; padding: 10px 14px;
	font-size: 0.8rem; color: #fca5a5;
}

/* ─── CREDIBILIDADE SECTION ─── */
.cred-section {
	position: relative; z-index: 1;
	padding: 56px 24px;
	background: var(--bg2);
	border-top: 1px solid var(--border);
}
.cred-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 20px; margin-top: 32px;
}
.cred-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 16px; padding: 28px;
}
.cred-quote {
	font-size: 0.95rem; color: #c8d4e8;
	line-height: 1.75; margin-bottom: 20px; font-style: italic; font-weight: 400;
}
.cred-quote::before {
	content: '"'; color: var(--blue-bright);
	font-size: 1.6rem; line-height: 0;
	vertical-align: -8px; margin-right: 4px;
}
.cred-author { display: flex; align-items: center; gap: 12px; }
.cred-avatar {
	width: 38px; height: 38px; border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--purple));
	display: flex; align-items: center; justify-content: center;
	font-size: 1rem; flex-shrink: 0;
}
.cred-name { font-size: 0.875rem; font-weight: 600; }
.cred-role { font-size: 0.78rem; color: var(--muted); }
.cred-stars { color: #fbbf24; font-size: 0.75rem; margin-bottom: 2px; }
.cred-numbers {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 1px; margin-top: 32px;
	background: var(--border); border-radius: 16px; overflow: hidden;
}
.cred-num { background: var(--bg); padding: 32px 24px; text-align: center; }
.cred-num-val {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 2.2rem; font-weight: 800;
	background: linear-gradient(135deg, var(--blue-bright), var(--purple));
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	margin-bottom: 6px;
}
.cred-num-label { font-size: 0.85rem; color: var(--muted); }

/* ─── ANIMATIONS ─── */
@keyframes tblink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes lineReveal {
	from { opacity: 0; transform: translateX(-8px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
	nav { padding: 14px 16px; position: fixed; top: 0; left: 0; right: 0; z-index: 100; }

	/* Hero */
	.hero { padding: 100px 16px 32px; }
	h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
	.hero-sub { font-size: 0.95rem; }
	.drop-area { padding: 24px 16px; }
	.drop-title { font-size: 1.2rem; }

	/* Sections */
	section { padding: 32px 16px; }
	.container { padding: 0; }
	.section-title { font-size: clamp(1.2rem, 5vw, 1.6rem); }

	/* Choque section */
	.choque-section { padding: 32px 16px; }
	.choque-inner { grid-template-columns: 1fr; gap: 24px; }
	.choque-terminal { margin-top: 0; }
	.terminal-body { font-size: 0.75rem; padding: 16px; }

	/* Grids — empilhar em coluna única */
	.problem-grid,
	.benefits-grid,
	.publico-grid,
	.cred-grid,
	.cred-numbers,
	.tech-grid,
	.steps { grid-template-columns: 1fr; gap: 12px; }

	/* Steps sem gap de linha */
	.steps { gap: 2px; }

	/* Trust bar — 3 colunas no mobile */
	.trust-bar { display: grid; grid-template-columns: 1fr 1fr 1fr; }
	.trust-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 8px; font-size: 0.7rem; }
	.trust-item:nth-child(3n) { border-right: none; }
	.trust-item:nth-last-child(-n+3) { border-bottom: none; }
	.trust-item strong { font-size: 1rem; }

	/* Problem visual */
	.problem-visual { flex-direction: column; }

	/* Result area */
	.result-area-wrap { padding: 24px 16px 48px; }
	.result-grid { grid-template-columns: 1fr; }
	.result-header { flex-direction: column; align-items: flex-start; }
	.result-actions { width: 100%; flex-direction: column; }
	.btn-nova, .btn-download-big { width: 100%; justify-content: center; }
	.result-share { flex-direction: column; }
	.btn-share { width: 100%; justify-content: center; }

	/* GPS mobile */
	.gps-block { margin: 0 0 24px; }
	.gps-header { padding: 12px 16px; flex-wrap: wrap; }
	.gps-row { flex-wrap: wrap; gap: 6px; padding: 8px 0; }
	.gps-maps-btn { width: 100%; justify-content: center; margin-top: 4px; }
	.gps-value-rua { flex: unset; width: 100%; }
	.gps-address { padding: 0 16px; }
	.gps-footer { padding: 12px 16px; }

	/* Publico section */
	.publico-section { padding: 32px 16px; }

	/* Footer */
	footer { flex-direction: column; gap: 12px; text-align: center; }
}

.nav-link-mobile { display: flex; }
@media (max-width: 860px) {
	.nav-link-mobile { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 12px !important; }
}

/* ─── NAV RIGHT ─── */
.nav-right {
	display: flex; align-items: center; gap: 8px; justify-content: flex-end;
}

/* ─── GPS BLOCK ─── */
.gps-block {
	max-width: 900px; margin: 0 auto 24px;
}
.gps-header {
	background: rgba(239,68,68,0.08);
	border: 1px solid rgba(239,68,68,0.3);
	border-radius: 16px 16px 0 0;
	padding: 14px 20px;
	display: flex; align-items: center; gap: 12px;
}
.gps-header-icon { font-size: 1.4rem; flex-shrink: 0; }
.gps-header-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 800; font-size: 1.05rem;
	color: var(--red); margin-bottom: 4px;
}
.gps-header-sub { font-size: 0.85rem; color: #a8b8d0; }

.gps-header-safe {
	background: rgba(34,197,94,0.08);
	border: 1px solid rgba(34,197,94,0.3);
	border-radius: 16px 16px 0 0;
}
.gps-header-title-safe { color: #22c55e; }

.gps-address {
	background: var(--bg2);
	border-left: 1px solid rgba(239,68,68,0.3);
	border-right: 1px solid rgba(239,68,68,0.3);
	padding: 0 24px;
}
.gps-row {
	display: flex; align-items: center; gap: 12px;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gps-row:last-child { border-bottom: none; }
.gps-row-border { border-bottom: 1px solid rgba(255,255,255,0.05); }
.gps-label {
	color: var(--muted); font-size: 0.78rem;
	font-weight: 700; letter-spacing: 0.08em;
	text-transform: uppercase; min-width: 72px;
	flex-shrink: 0;
}
.gps-value { color: var(--text); font-size: 0.95rem; }
.gps-value-rua {
	color: var(--text); font-size: 1rem;
	font-weight: 700; flex: 1;
}
.gps-maps-btn {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--blue); color: #fff;
	padding: 7px 14px; border-radius: 8px;
	text-decoration: none; font-size: 0.8rem;
	font-weight: 600; white-space: nowrap; flex-shrink: 0;
}
.gps-maps-btn:hover { background: var(--blue-bright); }

.gps-footer {
	background: var(--bg2);
	border: 1px solid rgba(239,68,68,0.3);
	border-top: 1px solid rgba(255,255,255,0.05);
	border-radius: 0 0 16px 16px;
	padding: 12px 20px;
}
.gps-footer-safe {
	border-color: rgba(34,197,94,0.3);
}
.gps-info-row {
	display: flex; align-items: center; gap: 12px;
	padding: 5px 0;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gps-info-row:last-child { border-bottom: none; }
.gps-icon { font-size: 1.2rem; }
.gps-info-label {
	font-size: 0.75rem; color: var(--muted);
	font-weight: 700; letter-spacing: 0.08em;
	text-transform: uppercase; margin-bottom: 2px;
}
.gps-info-value { font-size: 0.95rem; color: var(--text); font-weight: 600; }
.gps-count { color: var(--green); font-size: 1.1rem; }

/* ─── META TABLE EXTRAS ─── */
.meta-table { max-width: 900px; margin: 24px auto 0; }
.meta-empty { color: var(--muted); }

/* ─── TECH SECTION ─── */
.tech-p {
	color: var(--muted); margin-bottom: 16px; font-size: 0.95rem;
}
.tech-p-bright { color: #a8b8d0; }
.tech-strong { color: var(--text); }

/* ─── SECTION ALT (benefits bg) ─── */
.section-alt { background: var(--bg2); }

/* ─── BUTTON FULL WIDTH ─── */
.btn-download-full {
	margin-top: 16px; width: 100%; justify-content: center;
}

/* ─── MANIFESTO ─── */
.manifesto-section {
	position: relative; z-index: 1;
	padding: 80px 24px;
	background: var(--bg);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	text-align: center;
}
.manifesto-inner {
	max-width: 680px;
	margin: 0 auto;
}
.manifesto-quote {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: clamp(1.3rem, 3vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--text);
	margin-bottom: 24px;
}
.manifesto-sub {
	font-size: 1rem;
	color: #a8b8d0;
	line-height: 1.75;
	margin-bottom: 32px;
	font-weight: 400;
}
.manifesto-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--blue), var(--purple));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* ─── MANIFESTO AUTHOR ─── */
.manifesto-author {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: 32px;
	padding: 16px 24px;
	background: rgba(59,111,245,0.06);
	border: 1px solid rgba(59,111,245,0.2);
	border-radius: 14px;
}
.manifesto-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue), var(--purple));
	display: flex; align-items: center; justify-content: center;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.85rem; font-weight: 800;
	color: #fff; flex-shrink: 0;
	letter-spacing: 0.04em;
}
.manifesto-author-name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 0.95rem; font-weight: 700;
	color: var(--text);
}
.manifesto-author-role {
	font-size: 0.82rem;
	color: var(--muted);
	margin-top: 2px;
}
/* ─── BACK TO TOP ─── */
#back-to-top {
	position: fixed;
	bottom: 28px;
	right: 24px;
	z-index: 200;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--blue);
	border: 1px solid rgba(91,138,255,0.4);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(59,111,245,0.35);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
	pointer-events: none;
}
#back-to-top.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
#back-to-top:hover {
	background: var(--blue-bright);
}