/* ==========================================================================
   DevRocket LP Frenet — Design System devrocket.com.br (corrigido)
   Escala 8pt: 8 / 16 / 24 / 32 / 64 / 96
   Botões: sm / md / lg — padding simétrico
   ========================================================================== */
:root {
	--bg: #010513;
	--bg-2: #010821;
	--bg-pill: #02081d;
	--bg-soft: rgba(2, 8, 29, 0.6);
	--text: #ebf3fe;
	--text-2: rgba(235, 243, 254, 0.87);
	--text-3: rgba(235, 243, 254, 0.62);
	--blue: #0871e0;
	--blue-2: #2b8fff;
	--blue-border: rgba(41, 137, 255, 0.15);
	--glow-a: rgba(116, 176, 253, 0.12);
	--glow-b: rgba(212, 232, 255, 0.08);
	--glow-c: rgba(212, 232, 255, 0.12);
	--orange: #fd9500;
	--orange-soft: rgba(253, 149, 0, 0.14);
	--red: #e52e2e;
	--green: #2ecc71;
	--font-head: "Sora", "Inter Tight", system-ui, sans-serif;
	--font-body: "Inter Tight", system-ui, sans-serif;
	--font-menu: "Inter", system-ui, sans-serif;
	--r-btn: 8px;
	--r-card: 16px;
	--r-card-sm: 12px;
	--r-pill: 100px;
	--space-1: 8px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 32px;
	--space-8: 64px;
	--space-12: 96px;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.01em;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}
::selection {
	background: rgba(253, 149, 0, 0.35);
}
a {
	text-decoration: none;
	color: inherit;
}
strong,
b {
	font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head);
	margin: 0;
	font-weight: 600;
}
p {
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
}
.container {
	max-width: 1360px;
	padding-left: 20px;
	padding-right: 20px;
}
.text-warning {
	color: var(--orange) !important;
}
.text-danger {
	color: #ff8080 !important;
}
.text-muted {
	color: var(--text-2) !important;
}
.text-white-50 {
	color: var(--text-3) !important;
}

/* ===== Botões: 3 tamanhos padronizados ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	padding: 14px 24px;
	border-radius: var(--r-btn);
	border: 1px solid transparent;
	cursor: pointer;
	will-change: transform;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease;
}
.btn-sm {
	padding: 10px 16px;
	font-size: 14px;
}
.btn-lg {
	padding: 16px 32px;
	font-size: 17px;
}
@media (hover: hover) {
	.btn:hover {
		transform: translateY(-2px);
	}
}
.btn:focus-visible,
.lp-copy:focus-visible,
a:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 2px;
}
.btn-primary,
.btn-success {
	background: linear-gradient(
		180deg,
		rgb(43, 143, 255) 0%,
		rgb(8, 113, 224) 100%
	);
	color: #fff;
	border-color: transparent;
	box-shadow:
		0 8px 20px rgba(8, 113, 224, 0.16),
		0 4px 40px rgba(8, 113, 224, 0.3);
}
.btn-warning {
	background: linear-gradient(180deg, #ffa726 0%, var(--orange) 100%);
	color: #1a0e00;
	border-color: transparent;
	box-shadow:
		0 8px 20px rgba(253, 149, 0, 0.18),
		0 4px 40px rgba(253, 149, 0, 0.22);
}
.btn-success {
	background: linear-gradient(180deg, #2ecc71, #1eb85a);
}
.btn-dark {
	background: linear-gradient(180deg, rgb(1, 7, 29), rgb(1, 7, 29));
	border-color: var(--blue-border);
	color: var(--text);
}
.btn-dark:hover {
	border-color: rgba(41, 137, 255, 0.45);
}
.btn-outline-light {
	background: rgba(235, 243, 254, 0.06);
	border: 1px solid rgba(235, 243, 254, 0.35);
	color: var(--text);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 4px 16px rgba(0, 0, 0, 0.25);
}
.btn-outline-light:hover {
	border-color: rgba(235, 243, 254, 0.6);
	background: rgba(235, 243, 254, 0.1);
}

/* ===== Topbar ===== */
.lp-topbar {
	background: var(--bg);
	border-bottom: 1px solid var(--blue-border);
	position: sticky;
	top: 0;
	z-index: 100;
}
.lp-logos {
	min-height: 32px;
}
.lp-logo {
	height: 32px;
	width: auto;
	display: block;
	background: none;
	padding: 0;
	border-radius: 0;
}
.lp-topbar .lp-x {
	opacity: 0.5;
	font-weight: 600;
}
.btn-cta-top {
	padding: 12px 20px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(180deg, #3ce882 0%, #1eb85a 100%);
	border: 1px solid rgba(46, 204, 113, 0.5);
	box-shadow:
		0 8px 24px rgba(46, 204, 113, 0.25),
		0 2px 8px rgba(0, 0, 0, 0.35);
	white-space: nowrap;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
@media (hover: hover) {
	.btn-cta-top:hover {
		filter: brightness(1.06);
	}
}

/* ===== Hero ===== */
.lp-hero {
	position: relative;
	overflow: hidden;
	padding: var(--space-12) 0;
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	border-bottom: 1px solid var(--blue-border);
}
.lp-hero::before {
	content: "";
	position: absolute;
	top: -460px;
	left: 50%;
	transform: translateX(-50%);
	width: 1400px;
	height: 840px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.34) 0%,
		rgba(10, 99, 244, 0) 70%
	);
	filter: blur(16px);
	pointer-events: none;
}
.lp-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(235, 243, 254, 0.09) 1px,
		transparent 1px
	);
	background-size: 24px 24px;
	-webkit-mask-image: radial-gradient(
		60% 55% at 50% 30%,
		#000 0%,
		transparent 100%
	);
	mask-image: radial-gradient(60% 55% at 50% 30%, #000 0%, transparent 100%);
	opacity: 0.5;
	pointer-events: none;
}
.lp-hero .container {
	position: relative;
	z-index: 2;
}
.lp-hero h1 {
	font-size: 52px;
	line-height: 1.1;
	letter-spacing: -2px;
}
.lp-hero-logo {
	max-width: 220px;
	margin: 0 0 16px;
}
.lp-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: var(--r-pill);
	background: var(--bg-soft);
	border: 1px solid var(--blue-border);
	box-shadow: inset 0 4px 12px rgba(6, 128, 250, 0.12);
	font-size: 14px;
	color: var(--text-2);
	max-width: 100%;
}
.lp-sub {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-2);
	max-width: 640px;
}
.lp-checks {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 8px;
	color: var(--text-2);
	font-size: 15px;
}

/* cupom */
.lp-cupom-box {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	padding: 24px;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
}
.lp-cupom-box small {
	letter-spacing: 0.08em;
	font-weight: 600;
	color: var(--text-3);
	font-size: 12px;
}
.lp-cupom-code {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 8px 0;
	flex-wrap: wrap;
}
.lp-cupom-code span {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 0.06em;
	border: 1px dashed rgba(253, 149, 0, 0.6);
	border-radius: 10px;
	padding: 8px 16px;
	background: var(--orange-soft);
	color: var(--orange);
}
.lp-copy {
	border: 1px solid var(--blue-border);
	background: var(--bg-pill);
	color: var(--text);
	border-radius: 8px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
}
.lp-copy:hover {
	border-color: rgba(41, 137, 255, 0.45);
}
.lp-cupom-off {
	color: var(--orange);
	font-size: 15px;
}
.lp-cupom-actions {
	display: grid;
	gap: 16px;
}
.lp-hero-card {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	padding: 24px;
	box-shadow: inset 0 0 32px var(--glow-a);
}
.lp-steps-mini {
	padding-left: 20px;
	display: grid;
	gap: 8px;
	font-size: 15px;
	color: var(--text-2);
	margin: 16px 0;
}
.lp-transportadoras {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}
.lp-transportadoras span {
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: var(--r-pill);
	padding: 6px 12px;
	font-size: 13px;
	color: var(--text-2);
}

/* ===== Seções: ritmo único 96/64 ===== */
section {
	scroll-margin-top: 90px;
}
.lp-dor,
.lp-beneficios,
.lp-como,
.lp-estrategias,
.lp-planos,
.section-contato {
	padding: var(--space-12) 0;
}
.lp-dor {
	background: var(--bg);
	border-top: 1px solid var(--blue-border);
}
.lp-dor h2,
.lp-beneficios h2,
.lp-estrategias h2,
.lp-planos h2,
.lp-como h2 {
	font-size: 40px;
	letter-spacing: -1.5px;
	line-height: 1.1;
	margin-bottom: 16px;
}
.lp-lead {
	/* max-width: 720px; */
	color: var(--text-2);
	font-size: 18px;
	line-height: 1.5;
	margin: 0 auto;
}

.lp-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	font-size: 14px;
	color: var(--text-2);
	max-width: 100%;
	white-space: normal;
	text-align: center;
	line-height: 1.4;
}
.lp-pill::before {
	content: "";
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 10px var(--orange);
}
.lp-pill-dark {
	border-color: rgba(253, 149, 0, 0.35);
}

/* cards: padding único 24px */
.lp-dor-card,
.lp-ben-card,
.lp-est-card {
	padding: 24px;
	border-radius: var(--r-card-sm);
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border: 1px solid var(--blue-border);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	transition:
		transform 0.25s ease,
		border-color 0.25s ease;
}
@media (hover: hover) {
	.lp-dor-card:hover,
	.lp-ben-card:hover {
		transform: translateY(-4px);
		border-color: rgba(41, 137, 255, 0.45);
	}
}
.lp-emoji {
	width: 52px; height: 52px; border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(180deg, rgba(43,143,255,.2), rgba(8,113,224,.12));
	border: 1px solid var(--blue-border);
}
.lp-emoji svg { width: 26px; height: 26px; color: var(--blue-2); }
.lp-dor-card h5,
.lp-ben-card h5 {
	font-size: 20px;
	letter-spacing: -0.02em;
	margin: 16px 0 8px;
}
.lp-est-card h6 { font-size: 17px; letter-spacing: -.02em; margin: 0 0 8px; display: flex; gap: 10px; align-items: center; }
.lp-dor-card p,
.lp-ben-card p,
.lp-est-card p {
	color: var(--text-3);
	font-size: 15px;
}
.lp-ben-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		180deg,
		rgba(43, 143, 255, 0.2),
		rgba(8, 113, 224, 0.12)
	);
	border: 1px solid var(--blue-border);
}
.lp-ben-icon svg { width: 26px; height: 26px; color: var(--blue-2); }
.lp-ben-icon.orange svg { color: var(--orange); }
.lp-ben-icon.orange {
	background: linear-gradient(180deg, rgba(253,149,0,.2), rgba(253,149,0,.08));
	border-color: rgba(253,149,0,.35);
}
.lp-check-icon, .lp-est-icon, .lp-mini-icon {
	display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.lp-check-icon svg { width: 18px; height: 18px; color: var(--green); }
.lp-est-icon svg { width: 22px; height: 22px; color: var(--blue-2); }
.lp-mini-icon svg { width: 18px; height: 18px; color: var(--orange); }
.lp-badge svg { width: 16px; height: 16px; color: var(--orange); }
.lp-li-check { display: flex; gap: 10px; align-items: flex-start; }
.lp-li-check svg { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; color: var(--blue-2); }
.lp-whats-float svg { width: 28px; height: 28px; color: #fff; }
.lp-beneficios {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border-top: 1px solid var(--blue-border);
}
.lp-ben-wide {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.lp-como {
	background: var(--bg);
	border-top: 1px solid var(--blue-border);
}
.lp-como p {
	color: var(--text-3);
}
.lp-como a {
	color: var(--orange);
}
.lp-timeline {
	display: grid;
	gap: 16px;
}
.lp-tl-item {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card-sm);
	box-shadow: inset 0 0 32px var(--glow-a);
}
.lp-tl-item span {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(180deg, #ffa726, var(--orange));
	color: #1a0e00;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lp-tl-item h6 {
	margin: 0 0 4px;
	color: var(--text);
}
.lp-tl-item p {
	margin: 0;
	font-size: 15px;
}
.lp-cupom-destaque {
	background: linear-gradient(
		180deg,
		rgba(253, 149, 0, 0.18),
		rgba(253, 149, 0, 0.06)
	);
	border: 1px solid rgba(253, 149, 0, 0.45);
	border-radius: var(--r-card);
	padding: 24px;
	box-shadow: inset 0 4px 12px rgba(253, 149, 0, 0.16);
}
.lp-cupom-destaque h3 {
	letter-spacing: 0.06em;
	font-size: 34px;
	margin: 8px 0;
	color: var(--orange);
}
.lp-cupom-destaque ul {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 8px;
	font-size: 15px;
	margin: 16px 0 24px;
	color: var(--text-2);
}
.lp-estrategia-mini {
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: 12px;
	padding: 16px;
}
.lp-estrategia-mini h6 {
	margin: 0 0 12px;
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 15px;
}
.lp-estrategia-mini span {
	background: rgba(41, 137, 255, 0.12);
	border: 1px solid var(--blue-border);
	border-radius: var(--r-pill);
	padding: 6px 12px;
	font-size: 13px;
	color: var(--text-2);
}

.lp-estrategias {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border-top: 1px solid var(--blue-border);
}
.lp-est-cta {
	border-color: rgba(253, 149, 0, 0.35);
}

/* ===== Planos ===== */
.lp-planos {
	background: var(--bg);
	border-top: 1px solid var(--blue-border);
}
.lp-cupom-inline {
	background: var(--orange-soft);
	border: 1px solid rgba(253, 149, 0, 0.45);
	color: var(--orange);
	padding: 2px 10px;
	border-radius: var(--r-pill);
	white-space: nowrap;
}
.lp-plano {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px 24px 24px;
	border-radius: var(--r-card);
	border: 1px solid var(--blue-border);
	background: linear-gradient(180deg, rgba(1, 5, 19, 0.4), rgba(1, 8, 33, 0.4));
	transition:
		border-color 0.25s ease,
		transform 0.25s ease;
}
@media (hover: hover) {
	.lp-plano:hover {
		border-color: rgba(41, 137, 255, 0.45);
	}
}
.lp-plano.destaque {
	border-color: rgba(8, 113, 224, 0.7);
	background: linear-gradient(
		180deg,
		rgba(8, 113, 224, 0.14),
		rgba(1, 8, 33, 0.5)
	);
	box-shadow:
		inset 0 0 40px rgba(8, 113, 224, 0.18),
		0 20px 60px rgba(8, 113, 224, 0.22);
}
.lp-plano-selo {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(180deg, #ffa726 0%, var(--orange) 100%);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #1a0e00;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: var(--r-pill);
	white-space: nowrap;
	box-shadow: 0 6px 20px rgba(253, 149, 0, 0.35);
}
.lp-plano h4 {
	font-size: 22px;
	letter-spacing: -0.5px;
}
.lp-plano-preco {
	font-family: var(--font-head);
	font-size: 32px;
	letter-spacing: -1px;
	margin-top: 8px;
}
.lp-plano.destaque .lp-plano-preco {
	color: var(--blue-2);
}
.lp-plano ul {
	list-style: none;
	padding: 0;
	margin: 16px 0 24px;
	display: grid;
	gap: 8px;
	font-size: 14px;
	color: var(--text-2);
}
.lp-plano ul li {
	display: flex;
	gap: 8px;
	padding: 4px 0;
	line-height: 1.45;
}

/* CTA */
.lp-cta-dev {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border-top: 1px solid var(--blue-border);
	text-align: center;
	padding: var(--space-12) 0;
	position: relative;
	overflow: hidden;
}
.lp-cta-dev::before {
	content: "";
	position: absolute;
	top: -460px;
	left: 50%;
	transform: translateX(-50%);
	width: 1400px;
	height: 880px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.3),
		transparent 70%
	);
	pointer-events: none;
}
.lp-cta-dev h2 {
	font-size: 40px;
	letter-spacing: -1.5px;
	position: relative;
	margin-bottom: 16px;
}
.lp-cta-dev .lp-lead,
.lp-cta-dev .d-flex {
	position: relative;
}

/* ===== Contato / footer ===== */
.section-secundaria {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border-top: 1px solid var(--blue-border);
}
.section-contato label {
	color: var(--text-2);
	font-size: 14px;
	margin-bottom: 4px;
	display: block;
}
.section-contato .form-control,
.section-contato .form-select {
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	color: var(--text);
	border-radius: 8px;
	padding: 12px 14px;
	min-height: 48px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	width: 100%;
}
.section-contato .form-control::placeholder {
	color: var(--text-3);
	opacity: 1;
}
.section-contato .form-control:focus,
.section-contato .form-select:focus {
	border-color: rgba(41, 137, 255, 0.5);
	box-shadow: none;
	background: var(--bg-pill);
	color: var(--text);
}
/* form-select: mesmo estilo do form-control + seta no tema dark */
.section-contato .form-select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ebf3fe' stroke-opacity='.62' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 16px 12px;
	cursor: pointer;
}
.section-contato .form-select option {
	background: var(--bg-2);
	color: var(--text);
}
.lp-footer {
	border-top: 1px solid var(--blue-border);
	background: var(--bg);
	padding: 32px 0;
	color: var(--text-2);
}
.lp-footer a {
	color: var(--text-2);
	margin-right: 20px;
}
.lp-footer a:hover {
	color: var(--orange);
}
.devrocket-logo {
	font-family: var(--font-head);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: auto;
}
.lp-whats-float {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
	z-index: 99;
}
.lp-link-ghost { color: var(--text-2); font-weight: 500; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; padding: 12px 4px; }
.lp-link-ghost:hover { color: var(--orange); }
.lp-proof { background: var(--bg); border-top: 1px solid var(--blue-border); border-bottom: 1px solid var(--blue-border); padding: 24px 0; }
.lp-proof-item { color: var(--text-2); font-size: 15px; }
.lp-proof-item strong { color: var(--text); }
.lp-proof-sep { color: var(--orange); }
.lp-stars { color: var(--orange); letter-spacing: 2px; }
.lp-form-micro { color: var(--text-3); font-size: 13px; }

@media only screen and (max-width: 991px) {
	.lp-hero {
		padding: var(--space-8) 0;
	}
	.lp-hero h1 {
		font-size: 36px;
		letter-spacing: -1px;
	}
	.lp-dor h2,
	.lp-beneficios h2,
	.lp-estrategias h2,
	.lp-planos h2,
	.lp-como h2,
	.lp-cta-dev h2 {
		font-size: 30px;
		letter-spacing: -1px;
	}
	.lp-dor,
	.lp-beneficios,
	.lp-como,
	.lp-estrategias,
	.lp-planos,
	.section-contato {
		padding: var(--space-8) 0;
	}
}
.btn-cta-top.btn-icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.btn-cta-top.btn-icon svg { width: 22px; height: 22px; flex: 0 0 auto; }
@media only screen and (max-width: 767px) {
	.lp-logo { height: 30px; }
	.btn-cta-top.btn-icon { padding: 10px; min-width: 44px; min-height: 44px; }
	.lp-hero .row.g-5 { --bs-gutter-y: 1.5rem; }
	.lp-hero h1 { font-size: 32px; }
	.lp-dor h2, .lp-beneficios h2, .lp-estrategias h2, .lp-planos h2, .lp-como h2, .lp-cta-dev h2 { font-size: 28px; }
	.lp-cupom-box { flex-direction: column; align-items: stretch; }
	.lp-cupom-actions { display: grid; gap: 16px; }
	.lp-cupom-actions .btn { width: 100%; }
	.lp-cta-dev .d-flex .btn { width: 100%; }
	.lp-copy { padding: 12px 20px; min-height: 44px; }
	.lp-transportadoras span { padding: 8px 14px; }
	.lp-whats-float { bottom: calc(16px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.btn {
		transition: none;
	}
}

/* modal cupom copiado */
.lp-modal-cupom {
	background: linear-gradient(180deg, rgb(1, 5, 19), rgb(1, 8, 33));
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	padding: 32px 24px 24px;
	text-align: center;
	color: var(--text);
	position: relative;
	box-shadow: inset 0 0 32px var(--glow-a), 0 24px 64px rgba(0,0,0,.5);
}
.lp-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--blue-border);
	background: var(--bg-pill);
	color: var(--text-2);
	font-size: 16px;
	line-height: 1;
}
.lp-modal-close:hover { border-color: rgba(41,137,255,.45); color: var(--text); }
.lp-modal-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 12px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(46,204,113,.15);
	border: 1px solid rgba(46,204,113,.4);
	color: var(--green);
}
.lp-modal-icon svg { width: 28px; height: 28px; }
.lp-modal-sub { color: var(--text-2); font-size: 15px; margin: 8px 0 16px; }
.lp-modal-sub strong { color: var(--text); }
.lp-modal-code {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.lp-modal-code span {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: .06em;
	border: 1px dashed rgba(253,149,0,.6);
	border-radius: 10px;
	padding: 8px 16px;
	background: var(--orange-soft);
	color: var(--orange);
}
#modalCupom .btn-dark {
	background: transparent;
	border: 1px solid var(--blue-border);
	color: var(--text-2);
}
#modalCupom .btn-dark:hover { border-color: rgba(41,137,255,.45); color: var(--text); }
