/* ============================================================
   RITUO · 08 Landing Page — estilos
   Mobile-first (375) → Desktop (1440). Tudo derivado dos tokens.
   ============================================================ */
:root {
	--bg: #fbfbfc;
	--surface: #ffffff;
	--surface-2: #f4f5f7;
	--surface-3: #eceef1;
	--border: #e7e8ec;
	--border-strong: #d6d8de;
	--text: #17181c;
	--text-2: #585b67;
	--text-3: #8b8e9a;
	--text-disabled: #b4b7c0;
	--violet-50: #f4f1ff;
	--violet-100: #e9e2ff;
	--violet-200: #d3c4ff;
	--violet-300: #b599ff;
	--violet-400: #946cff;
	--violet-500: #7a46f5;
	--violet-600: #6a2ee6;
	--violet-700: #5a22c4;
	--violet-800: #48199c;
	--violet-900: #331472;
	--primary: var(--violet-600);
	--primary-hover: var(--violet-700);
	--primary-press: var(--violet-800);
	--primary-soft: var(--violet-50);
	--primary-ink: #ffffff;
	--focus-ring: 0 0 0 3px rgba(106, 46, 230, 0.32);
	--success: #0e8f5c;
	--success-bg: #e7f6ef;
	--success-ink: #0a6b45;
	--warning: #b4690e;
	--warning-bg: #fbf0df;
	--warning-ink: #8a5109;
	--error: #d22f2f;
	--error-bg: #fcecec;
	--error-ink: #a51f1f;
	--info: #2563eb;
	--info-bg: #e8f0fe;
	--info-ink: #1b49b8;
	--ink: #0e0d12;
	--ink-2: #17161d;
	--ink-line: #272531;
	--ink-soft: #b7b5c2;
	--r-sm: 6px;
	--r-md: 10px;
	--r-lg: 14px;
	--r-xl: 20px;
	--r-2xl: 28px;
	--r-pill: 999px;
	--e1: 0 1px 2px rgba(23, 24, 28, 0.06), 0 1px 1px rgba(23, 24, 28, 0.04);
	--e2: 0 4px 12px rgba(23, 24, 28, 0.08), 0 1px 3px rgba(23, 24, 28, 0.05);
	--e3: 0 12px 32px rgba(23, 24, 28, 0.12), 0 4px 10px rgba(23, 24, 28, 0.06);
	--e-float:
		0 18px 48px rgba(23, 24, 28, 0.18), 0 6px 16px rgba(23, 24, 28, 0.1);
	--font-sans:
		"Geist", "Geist Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--font-mono: "Geist Mono", "Geist Fallback", ui-monospace, monospace;
	--maxw: 1200px;
	--nav-h: 60px;
}
* {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	font-feature-settings: "cv01", "ss01";
	overflow-x: hidden;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
}
.tnum {
	font-variant-numeric: tabular-nums;
}
.mono {
	font-family: var(--font-mono);
}
h1,
h2,
h3 {
	margin: 0;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}
.eyebrow {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--violet-600);
	font-weight: 500;
}
.eyebrow.on-ink {
	color: var(--violet-300);
}

/* ---------- buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 16px;
	letter-spacing: -0.01em;
	border: none;
	border-radius: var(--r-pill);
	cursor: pointer;
	text-decoration: none;
	padding: 15px 26px;
	min-height: 52px;
	transition:
		transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
		box-shadow 0.18s ease,
		background 0.15s ease;
}
.btn-primary {
	background: var(--primary);
	color: var(--primary-ink);
	box-shadow: 0 8px 22px rgba(106, 46, 230, 0.32);
}
.btn-primary {
	content-visibility: auto;
}
.btn-primary:hover {
	background: var(--primary-hover);
	transform: scale(1.03);
	box-shadow: 0 12px 30px rgba(106, 46, 230, 0.42);
}
.btn-primary:active {
	transform: scale(0.99);
	background: var(--primary-press);
}
.btn-ghost {
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
	background: var(--surface-2);
	border-color: var(--text-3);
}
.btn-block {
	width: 100%;
}
.btn-lg {
	font-size: 17px;
	padding: 17px 30px;
	min-height: 56px;
}
.btn .cta-sub {
	display: block;
	font-weight: 400;
	font-size: 12px;
	opacity: 0.85;
	margin-top: 2px;
}
:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
	border-radius: var(--r-md);
}

.microcopy {
	font-size: 13px;
	color: var(--text-3);
	margin-top: 10px;
	line-height: 1.5;
}
.microcopy.on-ink {
	color: var(--ink-soft);
}

/* ---------- navbar ---------- */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		height 0.25s ease;
}
.nav .wrap {
	display: flex;
	align-items: center;
	gap: 16px;
}
.nav .brand {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	font-size: 19px;
	letter-spacing: -0.02em;
	color: var(--text);
	margin-right: auto;
	text-decoration: none;
}
.nav .brand svg {
	width: 26px;
	height: 26px;
	color: var(--violet-600);
}
.nav.scrolled {
	background: rgba(251, 251, 252, 0.78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 1px 0 var(--border);
	height: 54px;
}
.nav .nav-cta {
	padding: 10px 18px;
	min-height: 42px;
	font-size: 14px;
}

/* ---------- section frame ---------- */
section {
	position: relative;
}
.sec-pad {
	padding: 72px 0;
}
.sec-ink {
	background: var(--ink);
	color: #edecf2;
}
.sec-ink h2,
.sec-ink h3 {
	color: #fff;
}
.sec-head {
	max-width: 34ch;
	margin: 0 0 36px;
}
.sec-head.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.h2 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin-top: 12px;
}
.sec-ink .h2 {
	color: #fff;
}
.sec-sub {
	font-size: 17px;
	color: var(--text-2);
	margin-top: 14px;
	line-height: 1.5;
}
.sec-ink .sec-sub {
	color: var(--ink-soft);
}

/* ============================================================
   S1 · HERO
   ============================================================ */
.hero {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: calc(var(--nav-h) + 24px) 0 40px;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(
			90% 60% at 85% -5%,
			rgba(122, 70, 245, 0.14),
			transparent 60%
		),
		radial-gradient(
			70% 50% at -10% 110%,
			rgba(14, 143, 92, 0.08),
			transparent 60%
		);
}
.hero .wrap {
	position: relative;
	z-index: 1;
}
.hero-grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--violet-700);
	background: var(--violet-50);
	border: 1px solid var(--violet-200);
	border-radius: var(--r-pill);
	padding: 7px 13px;
	width: fit-content;
}
.hero .hero-badge svg {
	width: 15px;
	height: 15px;
	color: var(--violet-600);
}
.hero h1 {
	font-size: clamp(44px, 13vw, 60px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 0.96;
	margin: 22px 0 0;
}
.hero h1 .ln {
	display: block;
	overflow: hidden;
}
.hero h1 .wd {
	display: inline-block;
}
.hero h1 em {
	font-style: normal;
	color: var(--violet-600);
}
.hero-sub {
	font-size: 18px;
	color: var(--text-2);
	margin: 22px 0 0;
	max-width: 44ch;
	line-height: 1.5;
}
.hero-sub b {
	color: var(--text);
	font-weight: 600;
}
.hero-cta {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
	width: 100%;
}
.hero-cta .btn {
	width: 100%;
}
.hero-see {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 20px;
	color: var(--text-2);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
}
.hero .hero-see svg {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}
.hero-see:hover {
	color: var(--text);
}
.hero-see:hover svg {
	transform: translateY(3px);
}
.hero-cred {
	margin-top: 26px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--text-3);
	flex-wrap: wrap;
}
.hero-cred .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--border-strong);
}
.hero-cred b {
	color: var(--text-2);
	font-weight: 600;
}

/* ---------- phone component ---------- */
.phone {
	width: min(300px, 84vw);
	background: #0b0a0f;
	border: 1px solid #26242e;
	border-radius: 38px;
	padding: 9px;
	box-shadow: var(--e-float);
	position: relative;
}
.phone .screen {
	background: var(--bg);
	border-radius: 30px;
	overflow: hidden;
	color: var(--text);
}
.phone .notch {
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translateX(-50%);
	width: 62px;
	height: 6px;
	border-radius: 4px;
	background: #26242e;
	z-index: 5;
}
.hero-phone-wrap {
	display: flex;
	justify-content: center;
	position: relative;
}

.psheet {
	padding: 18px 15px 16px;
}
.ptop {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 14px;
}
.ptop .day {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.ptop .day .sm {
	display: block;
	font-family: var(--font-mono);
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-3);
	font-weight: 500;
	margin-bottom: 3px;
}
.ptop .rev {
	text-align: right;
}
.ptop .rev .k {
	font-family: var(--font-mono);
	font-size: 8.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-3);
}
.ptop .rev .v {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.02em;
	transition: color 0.5s ease;
}
.phone[data-full="1"] .ptop .rev .v {
	color: var(--success-ink);
}

.slot {
	display: flex;
	gap: 9px;
	align-items: stretch;
	margin-bottom: 8px;
}
.slot .t {
	width: 36px;
	flex: none;
	font-family: var(--font-mono);
	font-size: 10px;
	color: var(--text-3);
	padding-top: 10px;
	text-align: right;
}
.slot .body {
	flex: 1;
	border-radius: 10px;
	padding: 9px 11px;
	min-height: 42px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition:
		background 0.4s ease,
		border-color 0.4s ease;
}
.slot.filled .body {
	background: var(--surface);
	border: 1px solid var(--border);
	box-shadow: var(--e1);
}
.slot.filled .nm {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.slot.filled .sv {
	font-size: 10px;
	color: var(--text-3);
	margin-top: 1px;
}
.slot.paid .body {
	background: var(--success-bg);
	border-color: #bbe6d0;
}
.slot .pill {
	align-self: flex-start;
	margin-top: 5px;
	font-family: var(--font-mono);
	font-size: 8.5px;
	letter-spacing: 0.02em;
	padding: 3px 7px;
	border-radius: var(--r-pill);
	font-weight: 500;
	display: inline-flex;
	gap: 3px;
	align-items: center;
}
.pill-paid {
	background: #cfefde;
	color: var(--success-ink);
}
.pill-conf {
	background: var(--violet-100);
	color: var(--violet-800);
}
.pill-sub {
	background: var(--info-bg);
	color: var(--info-ink);
}
.slot.empty .body {
	background: transparent;
	border: 1.5px dashed #dfc8c8;
	align-items: flex-start;
	justify-content: center;
}
.slot.empty .gap {
	font-size: 10.5px;
	font-weight: 600;
	color: #b65b5b;
	white-space: nowrap;
}
.slot.empty .loss {
	font-family: var(--font-mono);
	font-size: 9.5px;
	color: #c77;
	margin-top: 1px;
	white-space: nowrap;
}

/* floating chips on hero phone */
.floatchip {
	position: absolute;
	z-index: 6;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: var(--e-float);
	padding: 9px 11px;
	display: flex;
	gap: 9px;
	align-items: center;
	max-width: 190px;
}
.floatchip .ic {
	width: 28px;
	height: 28px;
	border-radius: 9px;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.floatchip .ic svg {
	width: 16px;
	height: 16px;
}
.floatchip .tx {
	font-size: 11.5px;
	line-height: 1.3;
	color: var(--text);
}
.floatchip .tx b {
	font-weight: 600;
}
.floatchip .tx .s {
	color: var(--text-3);
	font-size: 10px;
}
.fc-wa .ic {
	background: var(--success-bg);
	color: var(--success);
}
.fc-pix .ic {
	background: var(--violet-100);
	color: var(--violet-600);
}
.hero .fc-wa {
	top: 22%;
	right: -6%;
}
.hero .fc-pix {
	bottom: 16%;
	left: -8%;
}

/* ============================================================
   S2 · A DOR + calculadora
   ============================================================ */
.dor {
	background: var(--surface-2);
}
.dor-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.dor-copy p {
	font-size: 16.5px;
	color: var(--text-2);
	line-height: 1.6;
	margin: 14px 0 0;
}
.dor-copy p b {
	color: var(--text);
	font-weight: 600;
}
.calc {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-2xl);
	padding: 26px 22px;
	box-shadow: var(--e2);
}
.calc .lbl {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
}
.calc .lbl .name {
	font-size: 14px;
	font-weight: 600;
}
.calc .lbl .val {
	font-family: var(--font-mono);
	font-size: 14px;
	font-weight: 500;
	color: var(--violet-700);
}
.calc .field {
	margin-bottom: 22px;
}
.calc input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: var(--r-pill);
	background: var(--surface-3);
	outline: none;
}
.calc input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--primary);
	border: 3px solid #fff;
	box-shadow: var(--e2);
	cursor: pointer;
	transition: transform 0.12s ease;
}
.calc input[type="range"]::-webkit-slider-thumb:active {
	transform: scale(1.12);
}
.calc input[type="range"]::-moz-range-thumb {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--primary);
	border: 3px solid #fff;
	box-shadow: var(--e2);
	cursor: pointer;
}
.calc-out {
	background: var(--ink);
	color: #fff;
	border-radius: var(--r-xl);
	padding: 22px;
	text-align: center;
	margin-top: 4px;
}
.calc-out .cap {
	font-size: 13.5px;
	color: var(--ink-soft);
}
.calc-out .big {
	font-size: clamp(40px, 11vw, 52px);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin: 6px 0 2px;
}
.calc-out .big .cur {
	font-size: 0.5em;
	font-weight: 600;
	color: var(--violet-300);
	vertical-align: 0.18em;
	margin-right: 2px;
}
.calc-out .per {
	font-size: 13px;
	color: var(--ink-soft);
}
.calc-out .btn {
	margin-top: 18px;
}

/* ============================================================
   S3 · A VIRADA (scrollytelling)
   ============================================================ */
.virada {
	background: var(--ink);
	color: #edecf2;
	padding-top: 64px;
}
.virada .sec-head {
	margin-bottom: 8px;
}
.story {
	position: relative;
}
.story-phone-col {
	display: none;
}
.acts {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px 0 8px;
}
.act {
	background: var(--ink-2);
	border: 1px solid var(--ink-line);
	border-radius: var(--r-2xl);
	padding: 24px 22px;
}
.act .actnum {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--violet-300);
	margin-bottom: 12px;
}
.act .actnum .n {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(122, 70, 245, 0.18);
	border: 1px solid rgba(149, 108, 255, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--violet-300);
}
.act h3 {
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
}
.act p {
	font-size: 15px;
	color: var(--ink-soft);
	line-height: 1.55;
	margin: 10px 0 0;
}
.act p b {
	color: #fff;
	font-weight: 600;
}
/* mobile act visual */
.act-visual {
	margin-top: 18px;
	background: #0b0a0f;
	border: 1px solid var(--ink-line);
	border-radius: var(--r-xl);
	padding: 14px;
	overflow: hidden;
	position: relative;
}
.mini-screen {
	background: var(--bg);
	border-radius: 14px;
	padding: 12px 11px;
	color: var(--text);
}
.act-visual .floatchip {
	transform: scale(0.85);
	max-width: 170px;
}

/* ============================================================
   S4 · GESTÃO (bento)
   ============================================================ */
.bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 8px;
}
.bcard {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 22px;
	box-shadow: var(--e1);
}
.bcard .bic {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--violet-50);
	border: 1px solid var(--violet-100);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--violet-600);
	margin-bottom: 16px;
}
.bcard .bic svg {
	width: 23px;
	height: 23px;
}
.bcard h3 {
	font-size: 17px;
	font-weight: 600;
}
.bcard p {
	font-size: 14px;
	color: var(--text-2);
	margin: 6px 0 0;
	line-height: 1.5;
}
.seo-anchor {
	margin-top: 28px;
	font-size: 15px;
	color: var(--text-2);
	line-height: 1.6;
	max-width: 70ch;
}
.seo-anchor b {
	color: var(--text);
	font-weight: 600;
}

/* ============================================================
   S5 · PROVA
   ============================================================ */
.prova {
	background: var(--surface-2);
}
.prova-lede {
	font-size: 17px;
	color: var(--text-2);
	line-height: 1.6;
	max-width: 60ch;
	margin: 14px 0 0;
}
.prova-lede b {
	color: var(--text);
	font-weight: 600;
}
.founder-card {
	background: var(--ink);
	border: 1px solid var(--ink-line);
	border-radius: var(--r-2xl);
	padding: 32px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: var(--e3);
}
.founder-card::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -40%;
	width: 80%;
	height: 80%;
	background: radial-gradient(
		circle,
		rgba(106, 46, 230, 0.25) 0%,
		transparent 70%
	);
	pointer-events: none;
}
.founder-card h3 {
	font-size: 24px;
	color: #fff;
	margin-top: 14px;
	letter-spacing: -0.02em;
}
.fd-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--violet-300);
	background: rgba(122, 70, 245, 0.16);
	border: 1px solid rgba(149, 108, 255, 0.35);
	padding: 6px 12px;
	border-radius: var(--r-pill);
}
.founder-card .fd-badge svg {
	width: 14px;
	height: 14px;
}
.fd-desc {
	font-size: 14.5px;
	color: var(--ink-soft);
	line-height: 1.5;
	margin: 10px 0 24px;
}
.fd-benefit {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 18px;
}
.fd-benefit .fd-check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(14, 143, 92, 0.18);
	border: 1px solid rgba(14, 143, 92, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4ade80;
	flex: none;
	margin-top: 2px;
}
.fd-benefit .fd-check svg {
	width: 12px;
	height: 12px;
}
.fd-benefit .fd-text {
	font-size: 13.5px;
	color: var(--ink-soft);
	line-height: 1.45;
}
.fd-benefit .fd-text b {
	color: #fff;
	font-weight: 600;
}
.fd-progress-box {
	margin: 24px 0;
	background: var(--ink-2);
	border: 1px solid var(--ink-line);
	border-radius: var(--r-xl);
	padding: 16px;
}
.fd-progress-lbl {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	color: var(--ink-soft);
	margin-bottom: 8px;
}
.fd-progress-lbl b {
	color: #fff;
}
.fd-progress-bar {
	height: 8px;
	background: var(--ink-line);
	border-radius: 4px;
	overflow: hidden;
}
.fd-progress-fill {
	height: 100%;
	background: var(--primary);
	border-radius: 4px;
	box-shadow: 0 0 12px var(--primary);
}
.fd-progress-note {
	font-size: 11.5px;
	color: var(--warning-ink);
	margin-top: 8px;
}
.founder-card .btn {
	margin-top: 10px;
}
.risk {
	margin-top: 30px;
	background: var(--surface);
	border: 1px solid var(--violet-200);
	border-radius: var(--r-xl);
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	box-shadow: var(--e1);
}
.risk .ri {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.risk .ri svg {
	width: 22px;
	height: 22px;
	flex: none;
	color: var(--success);
	margin-top: 1px;
}
.risk .ri .h {
	font-size: 15px;
	font-weight: 600;
}
.risk .ri .d {
	font-size: 13.5px;
	color: var(--text-2);
	margin-top: 2px;
}

/* ============================================================
   S6 · PREÇO
   ============================================================ */
.price-toggle {
	display: inline-flex;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--r-pill);
	padding: 4px;
	gap: 2px;
	margin: 20px auto 0;
}
.price-toggle button {
	border: none;
	background: transparent;
	font-family: var(--font-sans);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--text-2);
	padding: 9px 16px;
	border-radius: var(--r-pill);
	cursor: pointer;
	transition: all 0.18s ease;
}
.price-toggle button.on {
	background: var(--surface);
	color: var(--text);
	box-shadow: var(--e1);
}
.price-toggle button .save {
	color: var(--success-ink);
	font-size: 11px;
	margin-left: 4px;
}
.plans {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 32px;
}
.plan {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-2xl);
	padding: 26px 24px;
	position: relative;
	box-shadow: var(--e1);
}
.plan.feat {
	border-color: var(--violet-300);
	box-shadow: 0 12px 34px rgba(106, 46, 230, 0.16);
}
.plan .tag {
	position: absolute;
	top: -12px;
	left: 24px;
	background: var(--primary);
	color: #fff;
	font-family: var(--font-mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: var(--r-pill);
	font-weight: 500;
}
.plan .pname {
	font-size: 16px;
	font-weight: 600;
}
.plan .pfor {
	font-size: 13px;
	color: var(--text-3);
	margin-top: 2px;
}
.plan .pprice {
	margin: 18px 0 4px;
	display: flex;
	align-items: baseline;
	gap: 4px;
}
.plan .pprice .cur {
	font-size: 19px;
	font-weight: 600;
	color: var(--text-2);
}
.plan .pprice .amt {
	font-size: 40px;
	font-weight: 800;
	letter-spacing: -0.03em;
}
.plan .pprice .per {
	font-size: 14px;
	color: var(--text-3);
}
.plan .pnote {
	font-size: 12.5px;
	color: var(--text-3);
	min-height: 18px;
}
.plan ul {
	list-style: none;
	padding: 0;
	margin: 20px 0 22px;
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.plan li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	color: var(--text);
}
.plans .plan li svg {
	width: 18px;
	height: 18px;
	flex: none;
	color: var(--success);
	margin-top: 1px;
}
.plan .btn {
	width: 100%;
}
.plan.feat .btn {
	background: var(--primary);
}
.plan:not(.feat) .btn {
	background: var(--surface);
	color: var(--text);
	border: 1px solid var(--border-strong);
	box-shadow: none;
}
.plan:not(.feat) .btn:hover {
	background: var(--surface-2);
	border-color: var(--text-3);
	transform: none;
}
.price-foot {
	text-align: center;
	font-size: 13.5px;
	color: var(--text-3);
	margin-top: 22px;
}

/* ============================================================
   S7 · FAQ
   ============================================================ */
.faq {
	max-width: 760px;
	margin: 0 auto;
}
.faq-list {
	margin-top: 28px;
	border-top: 1px solid var(--border);
}
.faq-item {
	border-bottom: 1px solid var(--border);
}
.faq-q {
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-sans);
	text-align: left;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 4px;
	font-size: 16.5px;
	font-weight: 600;
	color: var(--text);
	letter-spacing: -0.01em;
}
.faq-q .ico {
	margin-left: auto;
	width: 24px;
	height: 24px;
	flex: none;
	color: var(--text-3);
	transition: transform 0.3s ease;
}
.faq-item.open .faq-q .ico {
	transform: rotate(45deg);
	color: var(--violet-600);
}
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-a .inner {
	padding: 0 4px 22px;
	font-size: 15px;
	color: var(--text-2);
	line-height: 1.6;
	max-width: 62ch;
}
.faq-a .inner b {
	color: var(--text);
	font-weight: 600;
}

/* ============================================================
   S8 · CTA FINAL + footer
   ============================================================ */
.final {
	background: var(--ink);
	color: #fff;
	text-align: center;
	overflow: hidden;
	position: relative;
}
.final::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(
		70% 80% at 50% 120%,
		rgba(122, 70, 245, 0.28),
		transparent 60%
	);
}
.final .wrap {
	position: relative;
	z-index: 1;
}
.final h2 {
	font-size: clamp(32px, 9vw, 48px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.02;
	max-width: 16ch;
	margin: 0 auto;
}
.final .fsub {
	font-size: 16px;
	color: var(--ink-soft);
	margin: 18px auto 0;
	max-width: 40ch;
}
.final .btn {
	margin-top: 30px;
}
.footer {
	background: var(--ink);
	color: var(--ink-soft);
	border-top: 1px solid var(--ink-line);
	padding: 40px 0 120px;
}
.footer .wrap {
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.footer .brand {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
}
.footer .brand svg {
	width: 24px;
	height: 24px;
	color: var(--violet-300);
}
.footer .socials {
	display: flex;
	gap: 10px;
}
.footer .socials a {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid var(--ink-line);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ink-soft);
	transition: all 0.15s ease;
}
.footer .socials a:hover {
	color: #fff;
	border-color: #3a3745;
}
.footer .socials svg {
	width: 19px;
	height: 19px;
}
.footer .flinks {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 13.5px;
}
.footer .flinks a {
	color: var(--ink-soft);
	text-decoration: none;
}
.footer .flinks a:hover {
	color: #fff;
}
.footer .legal {
	font-family: var(--font-mono);
	font-size: 11.5px;
	color: #6d6a7a;
	letter-spacing: 0.02em;
}

/* ---------- mobile sticky CTA ---------- */
.sticky-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 70;
	padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
	background: rgba(251, 251, 252, 0.9);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid var(--border);
	transform: translateY(120%);
	transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.sticky-cta.show {
	transform: translateY(0);
}
.sticky-cta .btn {
	width: 100%;
}

/* ============================================================
   ENTRANCE ANIMATIONS (reveal once) — base = visible
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
	.reveal {
		opacity: 0;
		transform: translateY(22px);
		transition:
			opacity 0.6s ease,
			transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
	}
	.reveal.in {
		opacity: 1;
		transform: none;
	}
	.reveal.d1 {
		transition-delay: 0.08s;
	}
	.reveal.d2 {
		transition-delay: 0.16s;
	}
	.reveal.d3 {
		transition-delay: 0.24s;
	}
	.reveal.d4 {
		transition-delay: 0.32s;
	}
	.reveal.d5 {
		transition-delay: 0.4s;
	}
	.reveal.d6 {
		transition-delay: 0.48s;
	}
	.hero h1 .wd {
		transform: translateY(105%);
		transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	}
	.hero.kin h1 .wd {
		transform: translateY(0);
	}
	.hero h1 .wd:nth-child(1) {
		transition-delay: 0.05s;
	}
	.hero h1 .wd:nth-child(2) {
		transition-delay: 0.12s;
	}
	.hero h1 .wd:nth-child(3) {
		transition-delay: 0.19s;
	}
	.hero h1 .wd:nth-child(4) {
		transition-delay: 0.26s;
	}
	.floatchip {
		opacity: 0;
		transform: scale(0.9) translateY(8px);
		transition:
			opacity 0.5s ease,
			transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	.hero.kin .floatchip {
		opacity: 1;
		transform: none;
	}
	.hero.kin .fc-wa {
		transition-delay: 0.6s;
	}
	.hero.kin .fc-pix {
		transition-delay: 0.78s;
	}
}

/* ============================================================
   DESKTOP (≥ 960px) — 1440 layout
   ============================================================ */
@media (min-width: 960px) {
	.wrap {
		padding: 0 40px;
	}
	.sec-pad {
		padding: 110px 0;
	}
	.h2 {
		font-size: 42px;
	}
	.sec-head {
		margin-bottom: 56px;
	}

	.nav .nav-cta {
		font-size: 14px;
	}

	/* hero two-col */
	.hero-grid {
		flex-direction: row;
		align-items: center;
		gap: 56px;
	}
	.hero-grid .hero-left {
		flex: 1;
		max-width: 600px;
	}
	.hero-grid .hero-phone-wrap {
		flex: none;
	}
	.hero h1 {
		font-size: clamp(60px, 5.4vw, 80px);
	}
	.hero-cta {
		flex-direction: row;
		align-items: center;
		gap: 18px;
		flex-wrap: wrap;
	}
	.hero-cta .btn {
		width: auto;
	}
	.phone {
		width: 320px;
	}
	.hero .fc-wa {
		right: -14%;
	}
	.hero .fc-pix {
		left: -16%;
	}

	/* dor two-col */
	.dor-grid {
		flex-direction: row;
		align-items: center;
		gap: 64px;
	}
	.dor-copy {
		flex: 1;
	}
	.calc {
		flex: none;
		width: 420px;
	}

	/* virada scrollytelling: sticky phone left, acts right */
	.story {
		display: grid;
		grid-template-columns: minmax(340px, 1fr) 1.1fr;
		gap: 64px;
		align-items: start;
	}
	.story-phone-col {
		display: block;
		position: sticky;
		top: 120px;
		height: min-content;
		justify-self: center;
	}
	.story-phone-col .phone {
		width: 340px;
	}
	.acts {
		padding: 0;
		gap: 0;
	}
	.act {
		background: transparent;
		border: none;
		border-radius: 0;
		padding: 0;
		min-height: 78vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		opacity: 0.4;
		transition: opacity 0.4s ease;
	}
	.act.active {
		opacity: 1;
	}
	.act h3 {
		font-size: 30px;
	}
	.act p {
		font-size: 17px;
		max-width: 44ch;
	}
	.act-visual {
		display: none;
	}
	.story-phone-col .floatchip {
		opacity: 0;
		transform: scale(0.92);
		transition:
			opacity 0.4s ease,
			transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	}
	.story-phone-col .floatchip.on {
		opacity: 1;
		transform: none;
	}
	.story-phone-col .fc-wa {
		top: 20%;
		right: -10%;
	}
	.story-phone-col .fc-pix {
		bottom: 14%;
		left: -12%;
	}

	/* bento 3-col with feature spans */
	.bento {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
	.bcard {
		padding: 26px;
	}

	.risk {
		flex-direction: row;
		justify-content: space-between;
		gap: 32px;
	}
	.risk .ri {
		flex: 1;
	}

	/* pricing 3-col */
	.plans {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		align-items: start;
	}
	.plan.feat {
		transform: scale(1.04);
	}

	/* hide mobile sticky cta on desktop */
	.sticky-cta {
		display: none;
	}

	.prova-two {
		display: grid;
		grid-template-columns: 1.2fr 1fr;
		gap: 56px;
		align-items: start;
	}
}

/* ---------- cookie banner styles ---------- */
.cookie-banner {
	position: fixed;
	bottom: 84px;
	left: 16px;
	right: 16px;
	z-index: 100;
	background: rgba(14, 13, 18, 0.94);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--ink-line);
	border-radius: var(--r-xl);
	padding: 16px 20px;
	box-shadow: var(--e3);
	transform: translateY(150%);
	transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.cookie-banner.show {
	transform: translateY(0);
}
.cookie-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: stretch;
}
.cookie-content p {
	font-size: 13.5px;
	color: var(--ink-soft);
	margin: 0;
	line-height: 1.45;
}
.cookie-content a {
	color: #fff;
	text-decoration: underline;
}
.cookie-accept {
	padding: 10px 20px;
	min-height: 38px;
	font-size: 13.5px;
	align-self: flex-end;
}
@media (min-width: 600px) {
	.cookie-banner {
		bottom: 24px;
		left: 24px;
		right: auto;
		width: 380px;
	}
	.cookie-content {
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}
	.cookie-accept {
		align-self: center;
	}
}
