/* =========================================================
   1000 Soluções — Landing Page
   Paleta: azul cobalto do logo (#1A4DA1) + acento amarelo (#FBC02D)
   ========================================================= */

:root{
	--brand: #1A4DA1;
	--brand-deep: #133D82;
	--brand-darker: #0E2E63;
	--brand-soft: #E9EFFA;
	--brand-softer: #F4F7FC;
	--brand-grad: linear-gradient(135deg, #1A4DA1 0%, #2D6BD8 100%);
	--brand-grad-deep: linear-gradient(135deg, #133D82 0%, #1A4DA1 100%);

	--accent: #FBC02D;
	--accent-deep: #E0A91F;
	--accent-soft: #FFF4D6;

	--ink: #0F172A;
	--ink-soft: #334155;
	--muted: #64748B;
	--mutest: #94A3B8;

	--bg: #FFFFFF;
	--bg-soft: #F7F9FC;
	--bg-section: #F1F5FB;

	--border: #E2E8F0;
	--border-strong: #CBD5E1;

	--ok: #10B981;
	--err: #EF4444;

	--shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
	--shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
	--shadow-lg: 0 20px 50px rgba(26, 77, 161, .18);

	--radius: 14px;
	--radius-lg: 20px;
	--radius-pill: 999px;

	--container: 1200px;
	--container-narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.lp-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.lp-container--narrow { max-width: var(--container-narrow); }

/* ===== Tipografia ===== */
.lp-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--brand);
	letter-spacing: .04em;
	text-transform: uppercase;
	background: var(--brand-soft);
	padding: 6px 12px;
	border-radius: var(--radius-pill);
	margin-bottom: 16px;
}
.lp-eyebrow--light { color: #fff; background: rgba(255,255,255,.16); }
.lp-h1 {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.05;
	margin: 0 0 16px;
}
.lp-grad {
	background: var(--brand-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.lp-h2 {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	letter-spacing: -.015em;
	line-height: 1.15;
	margin: 0 0 12px;
}
.lp-h2--light { color: #fff; }
.lp-lead {
	font-size: clamp(16px, 1.4vw, 19px);
	color: var(--ink-soft);
	margin: 0 0 28px;
	max-width: 56ch;
}
.lp-lead--light { color: rgba(255,255,255,.88); }
.lp-section__lead {
	font-size: 16px;
	color: var(--ink-soft);
	max-width: 60ch;
	margin: 8px auto 0;
}

/* ===== Botões ===== */
.lp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	font-size: 15px;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	line-height: 1;
	white-space: nowrap;
	font-family: inherit;
}
.lp-btn--lg { padding: 16px 28px; font-size: 16px; }
.lp-btn--block { width: 100%; }
.lp-btn--primary {
	background: var(--brand);
	color: #fff;
	box-shadow: 0 6px 18px rgba(26, 77, 161, .38);
}
.lp-btn--primary:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(26, 77, 161, .48); }
.lp-btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--border-strong);
}
.lp-btn--ghost:hover { background: var(--bg-soft); border-color: var(--brand); color: var(--brand); }

/* ===== Nav (invertido: azul + branco) ===== */
.lp-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--brand);
	border-bottom: 1px solid rgba(255,255,255,.08);
	transition: box-shadow .2s ease, background .2s ease;
}
.lp-nav.is-scrolled {
	background: var(--brand-deep);
	box-shadow: 0 6px 24px rgba(11, 28, 65, .25);
}
.lp-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 24px;
	position: relative;
}
.lp-brand { display: inline-flex; align-items: center; }
.lp-brand__logo {
	height: 56px;
	width: auto;
	display: block;
}

.lp-nav__links {
	display: flex;
	gap: 28px;
	margin-left: auto;
}
.lp-nav__links a {
	color: rgba(255,255,255,.88);
	font-weight: 600;
	font-size: 15px;
	transition: color .15s, opacity .15s;
}
.lp-nav__links a:hover { color: #fff; }

/* CTA do nav: invertido - branco com texto azul */
.lp-nav .lp-btn--primary {
	background: #fff;
	color: var(--brand);
	border-color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.lp-nav .lp-btn--primary:hover {
	background: var(--accent-soft);
	color: var(--brand-deep);
	box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}
.lp-nav__cta { margin-left: 8px; }

.lp-nav__toggle {
	display: none;
	width: 44px; height: 44px;
	border: 0; background: transparent;
	cursor: pointer;
	color: #fff;
	font-size: 22px;
	align-items: center; justify-content: center;
}

/* ===== Hero ===== */
.lp-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 88px;
	background:
		radial-gradient(80% 60% at 90% 10%, rgba(26, 77, 161, .08), transparent 60%),
		radial-gradient(60% 50% at 0% 100%, rgba(26, 77, 161, .05), transparent 60%),
		#fff;
}
.lp-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 60px;
	align-items: center;
}
.lp-hero__cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.lp-trust {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 500;
}
.lp-trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.lp-trust i {
	color: var(--brand);
	font-size: 16px;
	width: 18px;
	text-align: center;
}

.lp-hero__card {
	position: relative;
	height: 100%;
	min-height: 360px;
}
.lp-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 24px 26px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
}
.lp-card--floating {
	position: relative;
	z-index: 2;
	max-width: 400px;
	margin: 20px auto 0;
}
.lp-card__row { display: flex; flex-direction: column; gap: 4px; }
.lp-card__row small { color: var(--muted); font-size: 13px; font-weight: 500; }
.lp-card__big {
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ink);
	margin-top: 2px;
}
.lp-card__sep { height: 1px; background: var(--border); margin: 18px 0; }
.lp-card__methods {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 4px;
}
.lp-card__methods span {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--ink-soft);
	font-weight: 600;
	padding: 12px 4px;
	background: var(--brand-softer);
	border-radius: 12px;
}
.lp-card__methods i {
	font-size: 18px;
	color: var(--brand);
}
.lp-card__pill {
	margin-top: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent-soft);
	color: var(--brand-deep);
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	font-size: 13px;
	font-weight: 700;
}
.lp-card__pill i { color: var(--accent-deep); }

.lp-card--mini {
	position: absolute;
	right: -16px;
	bottom: 24px;
	z-index: 3;
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 16px 20px;
	max-width: 280px;
}
.lp-card--mini strong { display: block; font-size: 15px; font-weight: 700; }
.lp-card--mini small { color: var(--muted); font-size: 13px; }
.lp-card__avatar {
	width: 46px; height: 46px;
	border-radius: 12px;
	background: var(--brand-grad);
	color: #fff;
	display: grid; place-items: center;
	font-size: 20px;
	flex-shrink: 0;
}
.lp-card__avatar i { line-height: 1; }
.lp-blob {
	position: absolute;
	z-index: 1;
	inset: 0;
	background:
		radial-gradient(circle at 70% 30%, rgba(26, 77, 161, .25), transparent 50%),
		radial-gradient(circle at 30% 70%, rgba(251, 192, 45, .15), transparent 55%);
	filter: blur(24px);
}

/* ===== Stats ===== */
.lp-stats {
	background: var(--bg-soft);
	border-block: 1px solid var(--border);
}
.lp-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 36px 24px;
	text-align: center;
}
.lp-stats__grid > div { display: flex; flex-direction: column; gap: 4px; }
.lp-stats__grid strong {
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 800;
	letter-spacing: -.01em;
	color: var(--brand-deep);
}
.lp-stats__grid span { color: var(--muted); font-size: 14px; font-weight: 500; }

/* ===== Seções ===== */
.lp-section {
	padding: 88px 0;
	background: #fff;
}
.lp-section--alt { background: var(--bg-section); }
.lp-section__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 48px;
}

/* Cards de soluções */
.lp-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.lp-feature {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lp-feature:hover {
	transform: translateY(-4px);
	border-color: var(--brand-soft);
	box-shadow: var(--shadow-md);
}
.lp-feature__icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: var(--brand-soft);
	color: var(--brand);
	display: grid; place-items: center;
	font-size: 24px;
	margin-bottom: 18px;
}
.lp-feature h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.lp-feature p { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* Passos */
.lp-steps {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.lp-step {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	border: 1px solid var(--border);
	position: relative;
}
.lp-step__num {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--brand-grad);
	color: #fff;
	font-weight: 800;
	font-size: 18px;
	display: grid; place-items: center;
	margin-bottom: 18px;
	box-shadow: 0 8px 20px rgba(26, 77, 161, .35);
}
.lp-step h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.lp-step p { color: var(--ink-soft); margin: 0; }

/* FAQ */
.lp-faq { display: grid; gap: 10px; }
.lp-faq details {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 4px 8px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.lp-faq details[open] { border-color: var(--brand-soft); box-shadow: var(--shadow-sm); }
.lp-faq summary {
	cursor: pointer;
	font-weight: 600;
	padding: 16px 12px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	font-size: 16px;
	color: var(--ink);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
	content: '\f067'; /* fa-plus */
	font-family: 'FontAwesome';
	font-weight: 400;
	color: var(--brand);
	font-size: 14px;
	transition: transform .25s ease;
	width: 28px; height: 28px;
	display: grid; place-items: center;
	background: var(--brand-soft);
	border-radius: 50%;
	flex-shrink: 0;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq p { margin: 0 12px 14px; color: var(--ink-soft); }

/* CTA + Formulário */
.lp-cta {
	background:
		radial-gradient(circle at 85% 10%, rgba(255,255,255,.16), transparent 50%),
		linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
	color: #fff;
	padding: 88px 0;
}
.lp-cta__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.lp-cta__list {
	list-style: none;
	padding: 0; margin: 20px 0 0;
	display: grid; gap: 10px;
}
.lp-cta__list li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,.95);
	font-weight: 500;
}
.lp-cta__list i {
	width: 22px; height: 22px;
	background: var(--accent);
	color: var(--brand-deep);
	border-radius: 50%;
	display: grid; place-items: center;
	font-size: 11px;
	font-weight: 900;
	flex-shrink: 0;
}

.lp-form {
	background: #fff;
	color: var(--ink);
	padding: 32px;
	border-radius: var(--radius-lg);
	box-shadow: 0 30px 60px rgba(14, 46, 99, .42);
}
.lp-form__title {
	font-size: 22px;
	font-weight: 800;
	margin: 0 0 20px;
	letter-spacing: -.01em;
	color: var(--ink);
}
.lp-field {
	display: block;
	margin-bottom: 14px;
}
.lp-field > span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--ink-soft);
	margin-bottom: 6px;
}
.lp-field input, .lp-field textarea {
	width: 100%;
	padding: 13px 14px;
	border-radius: 10px;
	border: 1.5px solid var(--border);
	font-size: 15px;
	font-family: inherit;
	color: var(--ink);
	background: #fff;
	transition: border-color .15s ease, box-shadow .15s ease;
	resize: vertical;
}
.lp-field input:focus, .lp-field textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 4px rgba(26, 77, 161, .12);
}
.lp-form__btnText { transition: opacity .15s; display: inline-flex; align-items: center; gap: 8px; }
.lp-form__spinner {
	width: 18px; height: 18px;
	border-radius: 50%;
	border: 2.5px solid rgba(255,255,255,.5);
	border-top-color: #fff;
	animation: lp-spin .8s linear infinite;
	display: none;
}
.lp-btn.is-loading .lp-form__btnText { opacity: 0; position: absolute; }
.lp-btn.is-loading .lp-form__spinner { display: inline-block; }
@keyframes lp-spin { to { transform: rotate(360deg); } }
.lp-form__msg {
	margin: 14px 0 0;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.lp-form__msg i { font-size: 18px; line-height: 1.4; flex-shrink: 0; }
.lp-form__msg--ok { background: rgba(16, 185, 129, .1); color: #047857; border: 1px solid rgba(16, 185, 129, .25); }
.lp-form__msg--err { background: rgba(239, 68, 68, .08); color: #b91c1c; border: 1px solid rgba(239, 68, 68, .25); }
.lp-form__legal { display: block; margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Footer */
.lp-footer {
	background: #0B1220;
	color: #CBD5E1;
	padding: 56px 0 32px;
}
.lp-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
}
.lp-footer h4 { color: #fff; font-size: 15px; margin: 0 0 14px; }
.lp-footer a {
	display: block;
	color: #CBD5E1;
	font-size: 14px;
	padding: 4px 0;
	transition: color .15s;
}
.lp-footer a:hover { color: #fff; }
.lp-footer__logo {
	height: 56px;
	width: auto;
	margin-bottom: 18px;
}
.lp-footer__about {
	color: #94A3B8;
	font-size: 14px;
	margin: 0 0 16px;
	max-width: 42ch;
	line-height: 1.6;
}
.lp-footer__legal { color: #94A3B8; font-size: 13px; line-height: 1.7; margin: 0; }

/* FAB (mobile) */
.lp-fab {
	display: none;
	position: fixed;
	right: 16px; bottom: 16px;
	z-index: 60;
	background: #25D366;
	color: #fff;
	padding: 14px 22px;
	border-radius: var(--radius-pill);
	box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
	font-weight: 700;
	font-size: 15px;
	align-items: center;
	gap: 10px;
}
.lp-fab i { font-size: 20px; }

/* ===== Responsivo ===== */
@media (max-width: 980px) {
	.lp-hero { padding: 48px 0 56px; }
	.lp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
	.lp-hero__card { min-height: 340px; }
	.lp-card--mini { right: 0; bottom: 0; }
	.lp-cards { grid-template-columns: repeat(2, 1fr); }
	.lp-steps { grid-template-columns: 1fr; }
	.lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.lp-cta__grid { grid-template-columns: 1fr; gap: 40px; }
	.lp-footer__grid { grid-template-columns: 1fr 1fr; }
	.lp-section { padding: 64px 0; }
	.lp-nav__links { display: none; }
	.lp-nav__cta { display: none; }
	.lp-nav__toggle { display: inline-flex; }
	.lp-brand__logo { height: 48px; }
	.lp-nav.is-open .lp-nav__links {
		display: flex;
		position: absolute;
		top: 100%; left: 0; right: 0;
		flex-direction: column;
		gap: 0;
		background: #fff;
		border-top: 1px solid var(--border);
		box-shadow: var(--shadow-md);
		padding: 8px 16px 16px;
	}
	.lp-nav.is-open .lp-nav__links a {
		padding: 14px 8px;
		border-bottom: 1px solid var(--border);
		color: var(--ink-soft); /* dentro do dropdown branco volta a ser escuro */
	}
	.lp-nav.is-open .lp-nav__links a:hover { color: var(--brand); }
	.lp-nav.is-open .lp-nav__cta {
		display: inline-flex;
		margin: 16px;
		width: calc(100% - 32px);
		justify-content: center;
	}
	/* No dropdown mobile (fundo branco), o CTA volta para azul+branco padrao */
	.lp-nav.is-open .lp-btn--primary {
		background: var(--brand);
		color: #fff;
		border-color: var(--brand);
		box-shadow: 0 6px 18px rgba(26, 77, 161, .38);
	}
	.lp-nav.is-open .lp-btn--primary:hover {
		background: var(--brand-deep);
	}
	.lp-fab { display: inline-flex; }
}

@media (max-width: 560px) {
	.lp-container { padding: 0 20px; }
	.lp-cards { grid-template-columns: 1fr; }
	.lp-stats__grid { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; }
	.lp-form { padding: 24px; }
	.lp-footer__grid { grid-template-columns: 1fr; gap: 28px; }
	.lp-brand__logo { height: 42px; }
}
