/* ==========================================================================
   DevRocket Manuais — Tema Prism (espelho devrocket.com.br)
   Cores, efeitos e estrutura: cabecalho / corpo / rodape
   ========================================================================== */
: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.5);
	--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);
	--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;
}

/* ---------- Base / corpo ---------- */
html {
	scroll-behavior: smooth;
}
body {
	background: var(--bg) !important;
	color: var(--text) !important;
	font-family: var(--font-body) !important;
	-webkit-font-smoothing: antialiased;
	padding-top: 70px; /* compensa navbar fixa */
}
body::before {
	content: "";
	position: fixed;
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	width: 900px;
	height: 520px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.28) 0%,
		rgba(10, 99, 244, 0) 70%
	);
	filter: blur(16px);
	pointer-events: none;
	z-index: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-head) !important;
	color: var(--text) !important;
}
a {
	color: var(--blue-2);
}
a:hover {
	color: var(--orange);
}
.text-orange {
	color: var(--orange) !important;
}

/* Container padrão devrocket.com.br */
.container {
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
}
@media (min-width: 1200px) {
	.container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1360px !important;
	}
}

/* ---------- CABECALHO / NAVBAR ---------- */
.dr-navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: rgba(1, 5, 19, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 0.5px solid var(--blue-border);
	transition: box-shadow 0.3s ease;
}
.dr-navbar.scrolled {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.dr-nav-inner {
	max-width: 1360px;
	width: 100%;
	margin: 0 auto;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.dr-logo img {
	height: 44px;
	width: auto;
}
.dr-links {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.dr-link {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-menu);
	font-size: 15px;
	color: var(--text-2);
	padding: 8px 10px;
	border-radius: 8px;
	transition:
		color 0.25s ease,
		background 0.25s ease;
	white-space: nowrap;
}
.dr-link:hover {
	color: #fff;
	background: rgba(41, 137, 255, 0.12);
	text-decoration: none;
}
.dr-link.active {
	color: #fff;
}
.dr-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	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: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-2);
}
.dr-badge .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 10px var(--orange);
}

/* Botao primario = devrocket.com.br */
.btn-dr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 500;
	font-size: 15px;
	padding: 12px 18px 12px 22px;
	border-radius: var(--r-btn);
	border: none;
	background: linear-gradient(
		180deg,
		rgb(43, 143, 255) 0%,
		rgb(8, 113, 224) 100%
	);
	color: #fff !important;
	box-shadow:
		0 2.5px 2.8px rgba(8, 113, 224, 0.03),
		0 3.6px 3.9px rgba(8, 113, 224, 0.06),
		0 6px 8px rgba(8, 113, 224, 0.08),
		0 8px 20px rgba(8, 113, 224, 0.16),
		0 4px 4px rgba(0, 0, 0, 0.25),
		0 4px 40px rgba(8, 113, 224, 0.3);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}
.btn-dr:hover {
	transform: translateY(-2px);
	color: #fff !important;
	text-decoration: none;
}
.btn-dr svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}
.btn-dr:hover svg {
	transform: translateX(3px);
}
.btn-dr-dark {
	background: linear-gradient(180deg, rgb(1, 7, 29) 0%, rgb(1, 7, 29) 100%);
	border: 1px solid var(--blue-border);
	box-shadow: none;
}
.btn-dr-dark:hover {
	border-color: rgba(41, 137, 255, 0.45);
}

/* Burger / mobile */
.dr-burger {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	border-radius: 10px;
	cursor: pointer;
}
.dr-burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	position: relative;
}
.dr-burger span::before,
.dr-burger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s ease;
}
.dr-burger span::before {
	top: -6px;
}
.dr-burger span::after {
	top: 6px;
}
.dr-burger.open span {
	background: transparent;
}
.dr-burger.open span::before {
	transform: rotate(45deg);
	top: 0;
}
.dr-burger.open span::after {
	transform: rotate(-45deg);
	top: 0;
}
.dr-mobile {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 190;
	padding: 100px 24px 32px;
	background: rgba(1, 5, 19, 0.985);
	border-bottom: 1px solid var(--blue-border);
	transform: translateY(-110%);
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
	max-height: 100vh;
	overflow-y: auto;
}
.dr-mobile.open {
	transform: translateY(0);
}
.dr-mobile a.m-link {
	display: block;
	padding: 12px 4px;
	font-size: 17px;
	color: var(--text);
	border-bottom: 0.5px solid var(--blue-border);
}
.dr-mobile a.m-link:hover {
	color: var(--orange);
	text-decoration: none;
}

/* Faixa hero do cabecalho (titulo Manuais) */
.dr-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	border-bottom: 1px solid var(--blue-border);
	padding: 52px 0 44px;
	margin-bottom: 0;
}
.dr-hero::before {
	content: "";
	position: absolute;
	top: -140px;
	left: 50%;
	transform: translateX(-50%);
	width: 760px;
	height: 420px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.32) 0%,
		rgba(10, 99, 244, 0) 70%
	);
	filter: blur(14px);
	pointer-events: none;
}
.dr-hero-dots {
	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% 60% at 50% 30%,
		#000 0%,
		transparent 100%
	);
	mask-image: radial-gradient(60% 60% at 50% 30%, #000 0%, transparent 100%);
	opacity: 0.5;
	pointer-events: none;
}
.dr-hero h3 {
	font-size: clamp(28px, 4vw, 44px);
	letter-spacing: -1.5px;
	margin: 14px 0 0;
}

/* ---------- CORPO ---------- */
.pagina-plataformas,
.pagina-manuais {
	position: relative;
	z-index: 1;
}
.titulo {
	color: var(--text) !important;
	font-family: var(--font-head) !important;
	letter-spacing: -0.5px;
}
.linha-titulo {
	border: none !important;
	border-radius: 3px;
	height: 4px;
	width: 60px;
	background: linear-gradient(90deg, var(--orange), #ffa726) !important;
	box-shadow: 0 0 16px rgba(253, 149, 0, 0.55);
	margin-top: 10px;
}
.menu .linha-titulo {
	float: none !important;
}

/* Pills de secao */
.dr-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	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: 13px;
	color: var(--text-2);
	white-space: nowrap;
}
.dr-pill .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 10px var(--orange);
}

/* Cards de plataforma = benefit-card */
.box-itens {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.box-item,
.box-item-manual {
	position: relative;
	overflow: hidden;
	background: linear-gradient(
		180deg,
		rgb(1, 5, 19) 0%,
		rgb(1, 8, 33) 100%
	) !important;
	border: 1px solid var(--blue-border) !important;
	border-radius: var(--r-card-sm) !important;
	border-left-width: 1px !important;
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b);
	padding: 28px 24px !important;
	transition:
		transform 0.4s ease,
		border-color 0.4s ease,
		box-shadow 0.4s ease !important;
}
.box-item::before,
.box-item-manual::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		rgba(235, 243, 254, 0.14) 1px,
		transparent 1px
	);
	background-size: 18px 18px;
	opacity: 0.1;
	pointer-events: none;
}
.box-item:hover,
.box-item-manual:hover {
	transform: translateY(-6px);
	border-color: rgba(41, 137, 255, 0.45) !important;
	box-shadow:
		inset 0 0 32px var(--glow-a),
		0 18px 44px rgba(8, 113, 224, 0.22) !important;
}
.box-item h2,
.box-item-titulo strong {
	color: var(--text) !important;
}
.box-item-imagem-box{
	background: #fafafa;
	border-radius: 10px;
	padding: 10px 14px;
}
.box-item img {
	filter: none !important;
	max-height: 40px;
}
.box-item-seta {
	color: var(--orange);
}
.plataformas .box-itens .box-item {
	min-height: 184px;
}

/* Bloco do manual */
.plataformas.mt-4.px-3.py-5.bg-light.rounded,
.pagina-manuais .plataformas {
	background: linear-gradient(
		180deg,
		rgb(1, 5, 19) 0%,
		rgb(1, 8, 33) 100%
	) !important;
	border: 1px solid var(--blue-border) !important;
	border-radius: var(--r-card) !important;
	box-shadow: inset 0 0 32px var(--glow-a);
}
.manual-conteudo {
	background: rgba(2, 8, 29, 0.7) !important;
	border: 1px solid var(--blue-border) !important;
	border-radius: var(--r-card-sm) !important;
	color: var(--text-2) !important;
	box-shadow: inset 0 0 32px var(--glow-a);
}
.manual-conteudo h1,
.manual-conteudo h2,
.manual-conteudo h3 {
	color: var(--text) !important;
}
.manual-conteudo a {
	color: var(--orange) !important;
}
.manual-conteudo img {
	border-radius: 10px;
	border: 1px solid var(--blue-border);
}
.manual-conteudo-titulo {
	color: var(--text) !important;
}
.manual-conteudo-codigo {
	background: #010821 !important;
	border: 1px solid var(--blue-border) !important;
	border-left: 2px solid var(--orange) !important;
	color: var(--text-2) !important;
	border-radius: 8px;
}

/* Sidebar links */
.manual-links-itens {
	gap: 4px;
}
.menu-titulo {
	border-bottom: 1px solid var(--blue-border) !important;
	border-radius: 8px;
	padding: 0 8px;
}
.menu-titulo:hover {
	background: rgba(41, 137, 255, 0.1);
	border-bottom-color: rgba(41, 137, 255, 0.45) !important;
}
.manual-link {
	color: var(--text-2) !important;
}
.manual-link:hover {
	color: #fff !important;
}
.manual-link.active {
	color: var(--orange) !important;
}
.sub-menu .manual-link:hover {
	color: var(--orange) !important;
}
.menu-seta {
	color: var(--text-3);
}
.menu-seta:hover {
	color: var(--orange);
}

/* Inputs dark */
.form-control,
.input-group-text {
	background: var(--bg-pill) !important;
	border: 1px solid var(--blue-border) !important;
	color: var(--text) !important;
	border-radius: 10px;
}
.form-control::placeholder {
	color: var(--text-3);
}
.form-control:focus {
	border-color: rgba(41, 137, 255, 0.55) !important;
	box-shadow: 0 0 0 3px rgba(43, 143, 255, 0.18) !important;
}
.input-group-text {
	color: var(--orange) !important;
}
.manual-itens-pesquisa {
	background: var(--bg-pill) !important;
	border: 1px solid var(--blue-border) !important;
	border-radius: 12px;
}
.text-info {
	color: var(--blue-2) !important;
}

/* Breadcrumb do manual */
.pagina-manuais .titulo a,
.pagina-temas .titulo a {
	color: var(--text-2);
}
.pagina-manuais .titulo a:hover,
.pagina-temas .titulo a:hover {
	color: var(--orange);
	text-decoration: none;
}
.pagina-manuais .titulo i,
.pagina-temas .titulo i {
	color: var(--orange);
	font-size: 13px;
}
.titulo-imagem img {
	background: #fafafa;
	border-radius: 10px;
	padding: 10px 14px;
	border: 1px solid var(--blue-border);
}

/* Tabelas dentro do conteudo */
.manual-conteudo table {
	color: var(--text-2);
}
.manual-conteudo table th,
.manual-conteudo table td {
	border-color: var(--blue-border) !important;
}

/* ---------- RODAPE ---------- */
.dr-footer {
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	border-top: 1px solid var(--blue-border);
	position: relative;
	overflow: hidden;
}
.dr-footer::before {
	content: "";
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 340px;
	background: radial-gradient(
		50% 50% at 50% 50%,
		rgba(10, 99, 244, 0.22) 0%,
		rgba(10, 99, 244, 0) 70%
	);
	filter: blur(14px);
	pointer-events: none;
}
.dr-footer-grid {
	position: relative;
	z-index: 1;
}
.dr-footer h5,
.dr-footer strong.dr-h {
	color: #fff !important;
	font-family: var(--font-head);
	font-size: 15px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.dr-footer p,
.dr-footer address {
	color: var(--text-3);
	line-height: 1.7;
	font-size: 14px;
}
.dr-footer a.f-link {
	display: inline-block;
	padding: 6px 0;
	color: var(--text-2);
	font-size: 14px;
	transition:
		color 0.2s ease,
		padding-left 0.2s ease;
}
.dr-footer a.f-link:hover {
	color: var(--orange);
	padding-left: 4px;
	text-decoration: none;
}
.dr-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	color: var(--text-2);
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease;
}
.dr-social:hover {
	transform: translateY(-3px);
	border-color: rgba(253, 149, 0, 0.5);
	color: var(--orange);
}
.dr-bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid var(--blue-border);
	padding: 18px 0;
	color: var(--text-3);
	font-size: 13px;
}
.dr-bottom a {
	color: var(--text-2);
}
.dr-bottom a:hover {
	color: var(--orange);
}

/* Flutuantes — idênticos ao devrocket.com.br */
.fab-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 180;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(180deg, #25d366 0%, #1eb85a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
	transition: transform 0.3s ease;
}
.fab-whatsapp:hover {
	transform: scale(1.08);
}
.fab-whatsapp svg {
	width: 28px;
	height: 28px;
	color: #fff;
}
.fab-top {
	position: fixed;
	right: 32px;
	bottom: 96px;
	z-index: 180;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	color: var(--text-2);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.fab-top.visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.fab-top:hover {
	color: var(--text);
	border-color: rgba(41, 137, 255, 0.45);
}
.fab-top svg {
	width: 20px;
	height: 20px;
}
/* Legado: mantém escondido caso o JS antigo tente exibir */
.voltar-topo,
.whatsapp-flutuante {
	display: none !important;
}

/* ==========================================================================
   PLANOS — igual a https://devrocket.com.br/nuvemshop
   (botões .btn* com escopo #planos para não conflitar com o Bootstrap)
   ========================================================================== */
.section {
	border-top: 1px solid var(--blue-border);
	position: relative;
}
.section-head {
	max-width: 1100px;
	margin: 0 auto 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}
.section-head .pill {
	margin-bottom: 8px;
}
.h-section {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 40px;
	line-height: 1.1;
	letter-spacing: -2px;
	color: var(--text);
	text-align: center;
	text-wrap: balance;
}
.sub-text {
	font-size: 18px;
	line-height: 24px;
	color: var(--text-2);
	text-align: center;
	text-wrap: balance;
}
.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),
		inset 0 0.5px 0.5px var(--glow-c);
	font-size: 14px;
	line-height: 1em;
	color: var(--text-2);
	white-space: nowrap;
}
.pill-orange {
	border-color: rgba(253, 149, 0, 0.35);
	box-shadow:
		inset 0 0 32px rgba(253, 149, 0, 0.12),
		inset 0 3px 12px rgba(255, 214, 150, 0.08);
}
.pill .pill-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 10px var(--orange);
}
.plan-badge {
	display: inline-block;
	padding: 7px 16px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	box-shadow: inset 0 4px 12px rgba(6, 128, 250, 0.12);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-2);
}
.plan-badge.hot {
	background: linear-gradient(
		180deg,
		rgba(253, 149, 0, 0.18) 0%,
		rgba(253, 149, 0, 0.05) 100%
	);
	border-color: rgba(253, 149, 0, 0.45);
	color: var(--orange);
	box-shadow: inset 0 4px 12px rgba(253, 149, 0, 0.16);
}
#planos .btn, #servicos .btn, #black-friday .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--font-body);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	padding: 14px 20px 14px 24px;
	border-radius: var(--r-btn);
	border: none;
	cursor: pointer;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background 0.3s ease;
	will-change: transform;
}
#planos .btn-primary, #servicos .btn-primary, #black-friday .btn-primary {
	background: linear-gradient(
		180deg,
		rgb(43, 143, 255) 0%,
		rgb(8, 113, 224) 100%
	);
	color: #fff;
	box-shadow:
		0 2.5px 2.8px rgba(8, 113, 224, 0.03),
		0 3.6px 3.9px rgba(8, 113, 224, 0.06),
		0 6px 8px rgba(8, 113, 224, 0.08),
		0 8px 20px rgba(8, 113, 224, 0.16),
		0 4px 4px rgba(0, 0, 0, 0.25),
		0 4px 40px rgba(8, 113, 224, 0.3);
}
#planos .btn-primary:hover, #servicos .btn-primary:hover, #black-friday .btn-primary:hover {
	transform: translateY(-2px);
	color: #fff;
	text-decoration: none;
}
#planos .btn-dark, #servicos .btn-dark, #black-friday .btn-dark {
	background: linear-gradient(180deg, rgb(1, 7, 29) 0%, rgb(1, 7, 29) 100%);
	border: 1px solid var(--blue-border);
	color: var(--text);
}
#planos .btn-dark:hover, #servicos .btn-dark:hover, #black-friday .btn-dark:hover {
	transform: translateY(-2px);
	border-color: rgba(41, 137, 255, 0.45);
	color: var(--text);
	text-decoration: none;
}
#planos .btn .arrow, #servicos .btn .arrow, #black-friday .btn .arrow {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	transition: transform 0.3s ease;
}
#planos .btn:hover .arrow, #servicos .btn:hover .arrow, #black-friday .btn:hover .arrow {
	transform: translateX(3px);
}
#planos .btn-block, #servicos .btn-block, #black-friday .btn-block {
	width: 100%;
}
.plans-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	align-items: stretch;
}
.plan-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 36px 24px 26px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(
		180deg,
		rgba(1, 5, 19, 0.4) 0%,
		rgba(1, 8, 33, 0.4) 100%
	);
	transition:
		transform 0.4s ease,
		border-color 0.4s ease,
		box-shadow 0.4s ease;
}
.plan-card:hover {
	border-color: rgba(41, 137, 255, 0.45);
}
.plan-card .plan-badge {
	margin-bottom: 20px;
	align-self: flex-start;
}
.plan-name {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.5px;
	margin-bottom: 4px;
	color: var(--text);
}
.plan-delivery {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--text-3);
	margin-bottom: 20px;
}
.plan-delivery svg {
	width: 14px;
	height: 14px;
	color: var(--orange);
}
.plan-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 4px;
}
.plan-price .currency {
	font-family: var(--font-head);
	font-size: 20px;
	color: var(--text-2);
}
.plan-price .value {
	font-family: var(--font-head);
	font-size: 38px;
	font-weight: 500;
	letter-spacing: -1.5px;
	color: var(--text);
	line-height: 1;
}
.plan-price .value .dim {
	font-size: 26px;
	color: var(--text-3);
}
.plan-payment {
	font-size: 13px;
	color: var(--text-3);
	margin-bottom: 22px;
}
#planos ul.plan-features {
	list-style: none;
	margin: 0 0 26px;
	padding: 0 8px 0 0;
	flex: 1;
	max-height: 460px;
	overflow-y: auto;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: rgba(41, 137, 255, 0.35) transparent;
	transition: box-shadow 0.3s ease, scrollbar-color 0.3s ease;
}
.plan-features::-webkit-scrollbar {
	width: 6px;
}
.plan-features::-webkit-scrollbar-track {
	background: transparent;
}
.plan-features::-webkit-scrollbar-thumb {
	background: rgba(41, 137, 255, 0.35);
	border-radius: 8px;
}
.plan-features:hover {
	box-shadow: inset 0 0 24px rgba(8, 113, 224, 0.1);
	scrollbar-color: rgba(41, 137, 255, 0.7) transparent;
}
.plan-features:hover::-webkit-scrollbar-thumb {
	background: rgba(41, 137, 255, 0.7);
}
.plan-features li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	padding: 6px 0 6px 0;
	font-size: 14px;
	line-height: 1.45;
	color: var(--text-2);
	border-radius: 8px;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
.plan-features:hover li {
	padding-left: 6px;
}
.plan-features li:hover {
	transform: translateX(4px);
	background-color: rgba(41, 137, 255, 0.08);
	color: var(--text);
	padding-left: 10px;
}
.plan-features li svg {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
	margin-top: 1px;
	color: var(--blue-2);
	transition: color 0.25s ease, transform 0.25s ease;
}
.plan-features li:hover svg {
	color: var(--orange);
	transform: scale(1.12);
}
.plan-note {
	margin-top: 14px;
	text-align: center;
	font-size: 12px;
	color: var(--text-3);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.plan-note svg {
	width: 13px;
	height: 13px;
	color: var(--orange);
}
.plan-card.featured {
	border-color: rgba(8, 113, 224, 0.7);
	background: linear-gradient(
		180deg,
		rgba(8, 113, 224, 0.14) 0%,
		rgba(1, 8, 33, 0.5) 60%
	);
	box-shadow:
		inset 0 0 40px rgba(8, 113, 224, 0.18),
		0 20px 60px rgba(8, 113, 224, 0.22),
		inset 0 3px 12px rgba(212, 232, 255, 0.08);
	transform: translateY(-10px);
}
.plan-card.featured:hover {
	transform: translateY(-6px);
}
.plan-card.featured .plan-price .value {
	color: var(--blue-2);
}
@media (max-width: 1199px) {
	.plans-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.plan-card.featured {
		transform: none;
	}
	.plan-card.featured:hover {
		transform: translateY(-6px);
	}
}
@media (max-width: 700px) {
	.section {
		padding: 64px 20px;
	}
	.h-section {
		font-size: 28px;
		letter-spacing: -1px;
	}
	.plans-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   SERVIÇOS — igual a https://devrocket.com.br/#servicos
   ========================================================================== */
.section-surface {
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
}
.ticker-track {
	display: flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: ticker 30s linear infinite;
}
.ticker-track:hover {
	animation-play-state: paused;
}
@keyframes ticker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 32px));
	}
}
.services-ticker {
	width: 100%;
	overflow: hidden;
	padding: 14px 0;
	margin: 0 0 48px;
	border-top: 1px solid var(--blue-border);
	border-bottom: 1px solid var(--blue-border);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.services-ticker:hover .ticker-track { animation-play-state: paused; }
.services-ticker .ticker-track { animation: ticker 45s linear infinite; }
.services-ticker .ticker-item {
	text-transform: none;
	font-weight: 500;
	font-size: 16px;
	color: var(--text-2);
	display: inline-flex;
	align-items: center;
	gap: 0;
	white-space: nowrap;
}
.services-ticker .ticker-item::after {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	margin-left: 40px;
	display: inline-block;
}
.services-stack {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.service-card {
	position: sticky;
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 40px;
	align-items: center;
	padding: 32px;
	border: 1px solid var(--blue-border);
	border-radius: var(--r-card);
	background: linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 32px var(--glow-a),
		inset 0 3px 12px var(--glow-b),
		inset 0 0.5px 0.5px var(--glow-c);
	transition:
		transform 0.4s ease,
		border-color 0.4s ease;
}
.service-card:hover {
	border-color: rgba(41, 137, 255, 0.45);
}
.service-card.sticky-0 { top: 96px; }
.service-card.sticky-1 { top: 148px; }
.service-card.sticky-2 { top: 200px; }
.service-card.sticky-3 { top: 252px; }
.service-card.sticky-4 { top: 304px; }
.service-media {
	border-radius: var(--r-card-sm);
	overflow: hidden;
	position: relative;
	background: linear-gradient(180deg, #011131 0%, #010513 100%);
}
.service-media img {
	max-width: 100%;
	margin: auto;
	transition:
		transform 0.6s ease,
		opacity 0.4s ease;
}
.service-card:hover .service-media img {
	transform: scale(1.04);
	opacity: 1;
}
.service-num {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-3);
	margin-bottom: 18px;
}
.service-num::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--blue-border);
}
.service-card h3 {
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -1.5px;
	line-height: 1.1;
	margin-bottom: 14px;
	color: var(--text);
}
.service-card p {
	color: var(--text-3);
	line-height: 1.6;
	margin-bottom: 22px;
}
.service-proof {
	font-size: 13.5px;
	color: var(--text-3);
	line-height: 1.5;
	margin-bottom: 18px;
}
.service-proof strong { color: var(--text); }
.service-trust {
	font-size: 12.5px;
	color: var(--text-3);
	line-height: 1.5;
	margin-top: 12px;
}
.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 26px;
}
.service-tags .tag {
	font-size: 13px;
	padding: 6px 12px;
	border-radius: var(--r-pill);
	background: var(--bg-pill);
	border: 1px solid var(--blue-border);
	color: var(--text-2);
}
@media (max-width: 1023px) {
	.service-card {
		grid-template-columns: 1fr;
	}
	.service-card.sticky-0,
	.service-card.sticky-1,
	.service-card.sticky-2,
	.service-card.sticky-3,
	.service-card.sticky-4 {
		position: relative;
		top: auto;
	}
}
@media (max-width: 700px) {
	.service-card {
		padding: 24px;
	}
	.service-card h3 {
		font-size: 24px;
	}
}

/* ==========================================================================
   BLACK FRIDAY — igual a https://devrocket.com.br/
   ========================================================================== */
.cta-card {
	margin: 0 auto;
	padding: 80px 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3rem;
	border: 1px dashed rgba(41, 137, 255, 0.45);
	border-radius: var(--r-card);
	background:
		radial-gradient(
			60% 100% at 50% 0%,
			rgba(8, 113, 224, 0.16) 0%,
			rgba(8, 113, 224, 0) 70%
		),
		linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
	box-shadow:
		inset 0 0 48px rgba(116, 176, 253, 0.1),
		inset 0 3px 12px rgba(212, 232, 255, 0.06);
}
.cta-card p {
	max-width: 680px;
}
.hero-cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
}
.hero-trust {
	font-size: 14px;
	color: var(--text-3);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
}
.bf-card {
	background:
		radial-gradient(60% 100% at 50% 0%, rgba(229, 46, 46, 0.18) 0%, rgba(229, 46, 46, 0) 60%),
		radial-gradient(60% 100% at 50% 0%, rgba(229, 46, 46, 0.08) 0%, rgba(229, 46, 46, 0) 70%),
		radial-gradient(60% 100% at 50% 100%, rgba(229, 46, 46, 0.18) 0%, rgba(229, 46, 46, 0) 60%),
		radial-gradient(60% 100% at 50% 100%, rgba(229, 46, 46, 0.08) 0%, rgba(229, 46, 46, 0) 70%),
		linear-gradient(180deg, rgb(1, 5, 19) 0%, rgb(1, 8, 33) 100%);
}
#black-friday {
	background:
		radial-gradient(60% 100% at 50% 0%, rgba(229, 46, 46, 0.12) 0%, rgba(229, 46, 46, 0) 60%),
		radial-gradient(60% 100% at 50% 100%, rgba(229, 46, 46, 0.12) 0%, rgba(229, 46, 46, 0) 60%);
}
.bf-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.bf-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
}
.bf-info .h-section,
.bf-info .sub-text { text-align: left; }
.bf-offer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.bf-label {
	color: var(--text-3);
	font-size: 15px;
	margin: 8px 0 14px;
}
.bf-timer-item {
	min-width: 96px;
	padding: 18px 16px;
	border: 1px solid var(--blue-border);
	border-radius: 14px;
	background: var(--bg-pill);
	box-shadow: inset 0 0 24px var(--glow-a);
	text-align: center;
}
.bf-timer-item strong {
	display: block;
	font-family: var(--font-head);
	font-size: 34px;
	font-weight: 600;
	letter-spacing: -1px;
	line-height: 1;
	color: var(--orange);
}
.bf-timer-item span {
	color: var(--text-3);
	font-size: 13px;
}
.bf-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 32px;
	margin-top: 24px;
}
.bf-stats span {
	font-size: 13.5px;
	color: var(--text-3);
	line-height: 1.5;
}
.bf-stats strong { color: var(--text); }
@media (max-width: 1023px) {
	.bf-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.bf-info,
	.bf-info .h-section,
	.bf-info .sub-text { text-align: center; }
	.bf-info { align-items: center; }
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Responsivo */
@media (max-width: 991px) {
	body {
		padding-top: 74px;
	}
	.dr-links,
	.dr-cta {
		display: none;
	}
	.dr-burger {
		display: inline-flex;
	}
	.box-itens {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 992px) {
	.dr-mobile {
		display: none;
	}
}
