/* ============================================================
   NAVEZ — LANDING V3  (/landingv3)
   Conversão fiel da landing criada no Lovable.
   CSS próprio e isolado: tudo escopado em .lpv3 para não vazar
   nem herdar nada do app primário.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ============================================================
   TOKENS — LIGHT por padrão (tema principal do Lovable)
   ============================================================ */
.lpv3 {
	/* Marca */
	--lp3-brand: #ff3d00;
	--lp3-brand-strong: #d63100;
	--lp3-navy: #101f2e;
	--lp3-dark: #0d0f1a;
	--lp3-cream: #f0ede5;

	/* Superfícies (light) */
	--lp3-bg: #fbfaf8;
	--lp3-card: #ffffff;
	--lp3-muted: #f4f3f0;
	--lp3-accent: #f1efea;

	/* Texto (light) */
	--lp3-fg: #101f2e;
	--lp3-fg-muted: #5d6b78;

	/* Faixa escura (secondary = navy) */
	--lp3-secondary: #101f2e;
	--lp3-secondary-fg: #f0ede5;
	--lp3-secondary-fg-soft: rgba(240, 237, 229, 0.7);

	/* Bordas */
	--lp3-border: #e7e3dd;

	--lp3-font-display: 'Space Grotesk', system-ui, sans-serif;
	--lp3-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

	--lp3-radius: 0.625rem;
	--lp3-shell: min(100% - 3rem, 80rem);
	--lp3-glow: 0 0 40px -10px var(--lp3-brand);
	--lp3-elevated: 0 20px 60px -20px rgba(0, 0, 0, 0.25);

	min-height: 100vh;
	background: var(--lp3-bg);
	color: var(--lp3-fg);
	font-family: var(--lp3-font-sans);
	font-weight: 400;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* ---------- DARK via SO (sem escolha manual) ---------- */
@media (prefers-color-scheme: dark) {
	.lpv3:not([data-lp3-light]) {
		--lp3-bg: #0d0f1a;
		--lp3-card: #1a1f2b;
		--lp3-muted: #1d2230;
		--lp3-accent: #242b3a;
		--lp3-fg: #f0ede5;
		--lp3-fg-muted: #aba79e;
		--lp3-secondary: #1a1f2b;
		--lp3-border: rgba(255, 255, 255, 0.1);
	}
}

/* ---------- DARK manual ---------- */
:root[data-theme="dark"] .lpv3,
body.dark-mode .lpv3 {
	--lp3-bg: #0d0f1a;
	--lp3-card: #1a1f2b;
	--lp3-muted: #1d2230;
	--lp3-accent: #242b3a;
	--lp3-fg: #f0ede5;
	--lp3-fg-muted: #aba79e;
	--lp3-secondary: #1a1f2b;
	--lp3-border: rgba(255, 255, 255, 0.1);
}

/* ---------- LIGHT manual (vence prefers dark) ---------- */
:root[data-theme="light"] .lpv3,
body.light-mode .lpv3 {
	--lp3-bg: #fbfaf8;
	--lp3-card: #ffffff;
	--lp3-muted: #f4f3f0;
	--lp3-accent: #f1efea;
	--lp3-fg: #101f2e;
	--lp3-fg-muted: #5d6b78;
	--lp3-secondary: #101f2e;
	--lp3-border: #e7e3dd;
}

/* ============================================================
   RESET LOCAL
   ============================================================ */
.lpv3 *,
.lpv3 *::before,
.lpv3 *::after {
	box-sizing: border-box;
}

.lpv3 h1,
.lpv3 h2,
.lpv3 h3,
.lpv3 h4,
.lpv3 p,
.lpv3 ul,
.lpv3 dl,
.lpv3 dd,
.lpv3 dt {
	margin: 0;
}

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

.lpv3 ul {
	list-style: none;
	padding: 0;
}

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

.lpv3 :where(a, button, summary):focus {
	outline: none;
}

.lpv3 :where(a, button, summary):focus-visible {
	outline: 2px solid var(--lp3-brand);
	outline-offset: 3px;
	border-radius: 8px;
}

.lpv3 h1,
.lpv3 h2,
.lpv3 h3,
.lpv3 h4,
.lpv3-display {
	font-family: var(--lp3-font-display);
	letter-spacing: -0.02em;
	line-height: 1.08;
}

.lpv3-balance {
	text-wrap: balance;
}

.lpv3-shell {
	width: var(--lp3-shell);
	margin-inline: auto;
}

/* Compensa a navbar fixa ao navegar por âncoras */
.lpv3 :where(#recursos, #planos, #faq) {
	scroll-margin-top: 5rem;
}

.lpv3-hero__anchor {
	position: absolute;
	top: -4rem;
	left: 0;
}

.lpv3-kicker {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--lp3-brand);
}

/* ---------- Ícones ---------- */
.lpv3-ico {
	display: inline-flex;
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	line-height: 1;
	color: currentColor;
}

.lpv3-ico i {
	display: inline-flex;
	width: 1em;
	height: 1em;
	align-items: center;
	justify-content: center;
	font-size: 1em;
	line-height: 1;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.lpv3-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.6rem;
	padding: 0 1.2rem;
	border: 1px solid transparent;
	border-radius: var(--lp3-radius);
	font-family: var(--lp3-font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lpv3-btn--lg {
	min-height: 3.1rem;
	padding: 0 1.5rem;
}

.lpv3-btn--primary {
	background: var(--lp3-brand);
	border-color: var(--lp3-brand);
	color: #ffffff !important;
	box-shadow: var(--lp3-glow);
}

.lpv3-btn--primary :where(.lpv3-ico, .lpv3-ico i, span) {
	color: #ffffff !important;
}

.lpv3-btn--primary:hover {
	transform: scale(1.02);
}

.lpv3-btn--outline {
	background: var(--lp3-card);
	border-color: var(--lp3-border);
	color: var(--lp3-fg);
}

.lpv3-btn--outline:hover {
	background: var(--lp3-accent);
}

.lpv3-btn--ghost {
	background: transparent;
	border-color: var(--lp3-border);
	color: var(--lp3-fg);
}

.lpv3-btn--ghost:hover {
	background: var(--lp3-accent);
}

.lpv3-btn .lpv3-ico {
	font-size: 1rem;
}

.lpv3-store-ico {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	object-fit: contain;
}

.lpv3-btn .lpv3-arrow {
	transition: transform 180ms ease;
}

.lpv3-btn:hover .lpv3-arrow {
	transform: translateX(2px);
}

.lpv3-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 1px solid var(--lp3-border);
	border-radius: var(--lp3-radius);
	background: transparent;
	color: var(--lp3-fg);
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lpv3-icon-btn:hover {
	background: var(--lp3-accent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lpv3-nav {
	position: sticky;
	top: 0;
	z-index: 80;
	width: 100%;
	border-bottom: 1px solid transparent;
	transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.lpv3-nav.is-scrolled {
	border-bottom-color: color-mix(in srgb, var(--lp3-border) 60%, transparent);
	background: color-mix(in srgb, var(--lp3-bg) 80%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.lpv3-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
	gap: 1rem;
}

.lpv3-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: 8rem;
	overflow: hidden;
}

.lpv3-brand__logo {
	width: 14.4rem;
	max-width: none;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.lpv3-brand__logo--light {
	display: none !important;
}

:root[data-theme="dark"] .lpv3 .lpv3-brand__logo--dark,
body.dark-mode .lpv3 .lpv3-brand__logo--dark {
	display: none !important;
}

:root[data-theme="dark"] .lpv3 .lpv3-brand__logo--light,
body.dark-mode .lpv3 .lpv3-brand__logo--light {
	display: block !important;
}

:root[data-theme="light"] .lpv3 .lpv3-brand__logo--light,
body.light-mode .lpv3 .lpv3-brand__logo--light {
	display: none !important;
}

:root[data-theme="light"] .lpv3 .lpv3-brand__logo--dark,
body.light-mode .lpv3 .lpv3-brand__logo--dark {
	display: block !important;
}

.lpv3-nav__links {
	display: none;
	align-items: center;
	gap: 2rem;
}

.lpv3-nav__links a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--lp3-fg-muted);
	transition: color 160ms ease;
}

.lpv3-nav__links a:hover {
	color: var(--lp3-fg);
}

.lpv3-nav__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.lpv3-nav__login {
	display: none;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--lp3-fg-muted);
	padding-inline: 0.5rem;
	transition: color 160ms ease;
}

.lpv3-nav__login:hover {
	color: var(--lp3-fg);
}

.lpv3-nav__cta {
	display: none;
}

.lpv3-nav__burger {
	display: inline-flex;
}

.lpv3-nav__mobile {
	border-top: 1px solid var(--lp3-border);
	background: var(--lp3-bg);
}

.lpv3-nav__mobile-inner {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	width: var(--lp3-shell);
	margin-inline: auto;
	padding-block: 1rem;
}

.lpv3-nav__mobile-inner a {
	border-radius: var(--lp3-radius);
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--lp3-fg-muted);
}

.lpv3-nav__mobile-inner a:hover {
	background: var(--lp3-accent);
	color: var(--lp3-fg);
}

.lpv3-nav__mobile-inner .lpv3-btn {
	margin-top: 0.5rem;
	width: 100%;
}

/* ============================================================
   1 — HERO
   ============================================================ */
.lpv3-hero {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--lp3-border);
}

.lpv3-hero__bg {
	position: absolute;
	inset: 0;
	opacity: 0.6;
	background-image:
		linear-gradient(to right, color-mix(in oklab, var(--lp3-fg) 6%, transparent) 1px, transparent 1px),
		linear-gradient(to bottom, color-mix(in oklab, var(--lp3-fg) 6%, transparent) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}


.lpv3-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding-block: clamp(3.5rem, 8vw, 7rem);
}

.lpv3-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid var(--lp3-border);
	border-radius: 999px;
	background: color-mix(in srgb, var(--lp3-card) 60%, transparent);
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--lp3-fg-muted);
	backdrop-filter: blur(8px);
}

.lpv3-badge__dot {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 999px;
	background: var(--lp3-brand);
}

.lpv3-hero__title {
	margin-top: 1.5rem;
	font-weight: 700;
	font-size: clamp(2.6rem, 7vw, 4.5rem);
	line-height: 1.05;
}

.lpv3-hero__highlight {
	position: relative;
	display: inline-block;
	color: var(--lp3-brand);
}

.lpv3-hero__highlight::after {
	content: "";
	position: absolute;
	bottom: 0.25rem;
	left: 0;
	width: 100%;
	height: 0.7rem;
	background: color-mix(in srgb, var(--lp3-brand) 20%, transparent);
	z-index: -1;
}

.lpv3-hero__sub {
	margin-top: 1.5rem;
	max-width: 36rem;
	font-size: 1.125rem;
	color: var(--lp3-fg-muted);
}

.lpv3-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}

.lpv3-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 32rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--lp3-border);
}

.lpv3-hero__stat-v {
	font-family: var(--lp3-font-display);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--lp3-fg);
}

.lpv3-hero__stat-l {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--lp3-fg-muted);
}

/* Card de imagem */
.lpv3-hero__media {
	position: relative;
}

.lpv3-hero__frame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid var(--lp3-border);
	background: var(--lp3-secondary);
	box-shadow: var(--lp3-elevated);
}

.lpv3-hero__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lpv3-hero__frame-fade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--lp3-secondary) 90%, transparent), color-mix(in srgb, var(--lp3-secondary) 20%, transparent), transparent);
}

.lpv3-hero__chip {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.4);
	padding: 1rem;
	backdrop-filter: blur(12px);
}

.lpv3-hero__chip-l {
	font-family: var(--lp3-font-display);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lp3-cream);
}

.lpv3-hero__chip-v {
	margin-top: 0.25rem;
	font-family: var(--lp3-font-display);
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--lp3-brand);
}

.lpv3-hero__chip-s {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: rgba(240, 237, 229, 0.7);
}

/* ---- Mockup Slider ---- */
.lpv3-mockup-slider {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
}

.lpv3-mockup-stage {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.lpv3-mockup-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	border: 1.5px solid var(--lp3-border);
	background: var(--lp3-surface);
	color: var(--lp3-fg);
	cursor: pointer;
	transition: background 150ms, border-color 150ms, color 150ms, transform 150ms;
}

.lpv3-mockup-nav:hover {
	background: var(--lp3-brand);
	border-color: var(--lp3-brand);
	color: #fff;
	transform: scale(1.08);
}

.lpv3-mockup-nav .lpv3-ico {
	font-size: 1.1rem;
	pointer-events: none;
}

.lpv3-mockup-phone {
	width: min(280px, 65vw);
	overflow: hidden;
}

.lpv3-mockup-track {
	display: grid;
	width: 100%;
}

.lpv3-mockup-slide {
	grid-area: 1 / 1;
	opacity: 0;
	transform: scale(0.88);
	transition: opacity 420ms ease, transform 420ms ease;
	pointer-events: none;
	z-index: 0;
}

.lpv3-mockup-slide.is-active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
	z-index: 1;
}

.lpv3-mockup-slide img {
	width: 100%;
	height: auto;
	display: block;
}

.lpv3-mockup-dots {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.lpv3-mockup-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	border: none;
	padding: 0;
	cursor: pointer;
	background: color-mix(in srgb, var(--lp3-fg) 25%, transparent);
	transition: background 220ms, width 220ms;
}

.lpv3-mockup-dot.is-active {
	width: 1.5rem;
	background: var(--lp3-brand);
}

/* ============================================================
   SEÇÃO GENÉRICA / CABEÇALHO
   ============================================================ */
.lpv3-section {
	border-bottom: 1px solid var(--lp3-border);
	padding-block: clamp(4rem, 8vw, 6rem);
}

.lpv3-section__head {
	max-width: 42rem;
}

.lpv3-section__head--center {
	margin-inline: auto;
	text-align: center;
}

.lpv3-section__title {
	margin-top: 0.75rem;
	font-weight: 700;
	font-size: clamp(2rem, 4.4vw, 3rem);
}

.lpv3-section__sub {
	margin-top: 1rem;
	font-size: 1.125rem;
	color: var(--lp3-fg-muted);
}

/* ============================================================
   2 — RECURSOS
   ============================================================ */
.lpv3-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	margin-top: 3.5rem;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid var(--lp3-border);
	background: var(--lp3-border);
}

.lpv3-feature {
	background: var(--lp3-card);
	padding: 1.5rem;
	transition: background-color 180ms ease;
}

.lpv3-feature:hover {
	background: var(--lp3-accent);
}

.lpv3-feature__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.75rem;
	background: color-mix(in srgb, var(--lp3-brand) 10%, transparent);
	color: var(--lp3-brand);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}

.lpv3-feature__title {
	margin-top: 0;
	font-family: var(--lp3-font-display);
	font-weight: 600;
	font-size: 1rem;
	color: var(--lp3-fg);
}

.lpv3-feature__desc {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--lp3-fg-muted);
}

/* ============================================================
   3 — SCREENS (faixa navy)
   ============================================================ */
.lpv3-screens {
	background: var(--lp3-secondary);
	color: var(--lp3-secondary-fg);
	border-bottom: 1px solid var(--lp3-border);
	padding-block: clamp(4rem, 8vw, 6rem);
}

.lpv3-screens__head {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.lpv3-screens__head .lpv3-section__title {
	color: var(--lp3-secondary-fg);
}

.lpv3-screens__note {
	max-width: 24rem;
	font-size: 0.875rem;
	color: var(--lp3-secondary-fg-soft);
}

.lpv3-screens__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.lpv3-screen {
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.3);
	padding: 0.25rem;
}

.lpv3-screen__shot {
	border-radius: 0.75rem;
	overflow: hidden;
}

.lpv3-screen__shot img {
	width: 100%;
	height: auto;
	display: block;
}

.lpv3-screen__body {
	padding: 1.25rem;
}

.lpv3-screen__title {
	font-family: var(--lp3-font-display);
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--lp3-secondary-fg);
}

.lpv3-screen__desc {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--lp3-secondary-fg-soft);
}

/* ============================================================
   4 — PLANOS
   ============================================================ */
.lpv3-pricing {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 3.5rem auto 0;
}

.lpv3-plan {
	display: flex;
	flex-direction: column;
	border-radius: 1rem;
	border: 1px solid var(--lp3-border);
	background: var(--lp3-card);
	padding: 2rem;
}

.lpv3-plan--featured {
	position: relative;
	overflow: hidden;
	border-color: color-mix(in srgb, var(--lp3-brand) 40%, transparent);
	background: var(--lp3-secondary);
	color: var(--lp3-secondary-fg);
	box-shadow: var(--lp3-glow);
}

.lpv3-plan__badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	border-radius: 999px;
	background: var(--lp3-brand);
	padding: 0.25rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #ffffff;
}

.lpv3-plan__name {
	font-family: var(--lp3-font-display);
	font-weight: 600;
	font-size: 1.25rem;
}

.lpv3-plan__name span {
	color: var(--lp3-brand);
}

.lpv3-plan__desc {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: var(--lp3-fg-muted);
}

.lpv3-plan--featured .lpv3-plan__desc {
	color: var(--lp3-secondary-fg-soft);
}

.lpv3-plan__price {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin-top: 1.5rem;
}

.lpv3-plan__price strong {
	font-family: var(--lp3-font-display);
	font-weight: 700;
	font-size: 3rem;
}

.lpv3-plan__price span {
	font-size: 0.875rem;
	color: var(--lp3-fg-muted);
}

.lpv3-plan--featured .lpv3-plan__price span {
	color: var(--lp3-secondary-fg-soft);
}

.lpv3-plan__cta {
	width: 100%;
	margin-top: 1.5rem;
	margin-bottom: 2.5rem;
}

.lpv3-plan__list {
	margin-top: 0;
	padding-top: 2rem;
	border-top: 1px solid var(--lp3-border);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lpv3-plan--featured .lpv3-plan__list {
	border-top-color: rgba(255, 255, 255, 0.1);
}

.lpv3-plan__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.875rem;
}

.lpv3-plan__row > span:first-child {
	flex: 1;
	min-width: 0;
	color: var(--lp3-fg-muted);
}

.lpv3-plan--featured .lpv3-plan__row > span:first-child {
	color: var(--lp3-secondary-fg-soft);
}

.lpv3-plan__val {
	font-weight: 500;
	flex-shrink: 0;
	min-width: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lpv3-cell-yes {
	color: var(--lp3-brand);
	font-size: 1.1rem;
}

.lpv3-cell-no {
	color: color-mix(in srgb, var(--lp3-fg-muted) 40%, transparent);
	font-size: 1.1rem;
}

/* ============================================================
   5 — FAQ
   ============================================================ */
.lpv3-faq {
	max-width: 56rem;
}

.lpv3-faq__list {
	margin-top: 3rem;
	border-top: 1px solid var(--lp3-border);
	border-bottom: 1px solid var(--lp3-border);
}

.lpv3-faq__item {
	border-top: 1px solid var(--lp3-border);
}

.lpv3-faq__item:first-child {
	border-top: none;
}

.lpv3-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	padding-block: 1.25rem;
	cursor: pointer;
	font-family: var(--lp3-font-display);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--lp3-fg);
	list-style: none;
}

.lpv3-faq__q::-webkit-details-marker {
	display: none;
}

.lpv3-faq__plus {
	flex-shrink: 0;
	color: var(--lp3-brand);
	font-size: 1.25rem;
	transition: transform 220ms ease;
}

.lpv3-faq__item[open] .lpv3-faq__plus {
	transform: rotate(45deg);
}

.lpv3-faq__a {
	padding: 0 2.5rem 1.5rem 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--lp3-fg-muted);
	animation: lpv3-faq-open 240ms ease;
}

@keyframes lpv3-faq-open {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ============================================================
   FOOTER (faixa navy)
   ============================================================ */
.lpv3-footer {
	background: var(--lp3-secondary);
	color: var(--lp3-secondary-fg);
}

.lpv3-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	padding-block: 4rem;
}

.lpv3-footer__brand-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 8rem;
	overflow: hidden;
}

.lpv3-footer__logo {
	width: 14.4rem;
	max-width: none;
	height: auto;
	object-fit: contain;
	object-position: left center;
}

.lpv3-footer__about {
	margin-top: 1rem;
	max-width: 24rem;
	font-size: 0.875rem;
	color: var(--lp3-secondary-fg-soft);
}

.lpv3-footer__social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.lpv3-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: var(--lp3-radius);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--lp3-secondary-fg-soft);
	font-size: 1rem;
	transition: background-color 160ms ease, color 160ms ease;
}

.lpv3-footer__social a:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--lp3-brand);
}

.lpv3-footer__cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.lpv3-footer__col h4 {
	font-family: var(--lp3-font-display);
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lp3-brand);
}

.lpv3-footer__col ul {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lpv3-footer__col a {
	font-size: 0.875rem;
	color: var(--lp3-secondary-fg-soft);
	transition: color 160ms ease;
}

.lpv3-footer__col a:hover {
	color: var(--lp3-secondary-fg);
}

.lpv3-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: var(--lp3-shell);
	margin-inline: auto;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
	color: rgba(240, 237, 229, 0.6);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.lpv3-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 620ms ease, transform 620ms ease;
	will-change: opacity, transform;
}

.lpv3-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.lpv3-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.lpv3-btn:hover,
	.lpv3-btn--primary:hover {
		transform: none;
	}
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* >= 640px */
@media (min-width: 640px) {
	.lpv3-hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.lpv3-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.lpv3-screens__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.lpv3-screens__grid {
		grid-template-columns: repeat(3, 1fr);
		max-width: 860px;
		margin-inline: auto;
	}

	.lpv3-footer__cols {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* >= 768px */
@media (min-width: 768px) {
	.lpv3-nav__links {
		display: flex;
	}

	.lpv3-nav__login {
		display: inline-flex;
	}

	.lpv3-nav__cta {
		display: inline-flex;
	}

	.lpv3-nav__burger {
		display: none;
	}

	.lpv3-footer__inner {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}

	.lpv3-footer__brand {
		grid-column: span 1;
	}

	.lpv3-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

/* >= 1024px */
@media (min-width: 1024px) {
	.lpv3-hero__grid {
		grid-template-columns: 7fr 5fr;
		align-items: center;
	}

	.lpv3-pricing {
		grid-template-columns: repeat(2, 1fr);
	}

	.lpv3-features {
		grid-template-columns: repeat(4, 1fr);
	}
}
