/*
 * Gabriel Pontes Dev — folha de estilo principal
 * Organização: 1) variáveis  2) base  3) componentes  4) seções  5) responsivo
 */

/* ============================================================ 1. VARIÁVEIS */
:root {
	--gp-bg: #070b16;
	--gp-bg-2: #0b1224;
	--gp-bg-3: #101a33;
	--gp-surface: rgba(255, 255, 255, 0.035);
	--gp-surface-2: rgba(255, 255, 255, 0.06);
	--gp-border: rgba(255, 255, 255, 0.09);
	--gp-border-2: rgba(255, 255, 255, 0.16);
	--gp-text: #e9eef8;
	--gp-muted: #96a3bd;
	--gp-accent: #6366f1;
	--gp-accent-2: #22d3ee;
	--gp-ok: #34d399;
	--gp-err: #f87171;

	--gp-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	--gp-font-title: "Sora", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--gp-wrap: 1200px;
	--gp-radius: 18px;
	--gp-radius-sm: 12px;
	--gp-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
	--gp-header-h: 76px;
}

/* ================================================================= 2. BASE */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--gp-header-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--gp-bg);
	color: var(--gp-text);
	font-family: var(--gp-font);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--gp-accent-2);
	text-decoration: none;
	transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
	color: var(--gp-text);
}

h1,
h2,
h3,
h4 {
	font-family: var(--gp-font-title);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

ul,
ol {
	padding-left: 1.2em;
}

:focus-visible {
	outline: 2px solid var(--gp-accent-2);
	outline-offset: 3px;
	border-radius: 4px;
}

.icon {
	width: 22px;
	height: 22px;
	flex: none;
}

.wrap {
	width: 100%;
	max-width: var(--gp-wrap);
	margin: 0 auto;
	padding: 0 24px;
}

.wrap--narrow {
	max-width: 820px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--gp-accent);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 10px 0;
}

.skip-link:focus {
	left: 0;
}

/* ========================================================== 3. COMPONENTES */

/* --- Botões --- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--gp-font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn .icon {
	width: 18px;
	height: 18px;
	transition: transform 0.18s ease;
}

.btn:hover .icon {
	transform: translateX(3px);
}

.btn--primary {
	background: linear-gradient(120deg, var(--gp-accent), var(--gp-accent-2));
	color: #05070f;
	font-weight: 700;
	box-shadow: 0 10px 30px -10px color-mix(in srgb, var(--gp-accent) 70%, transparent);
}

.btn--primary:hover {
	color: #05070f;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px -12px color-mix(in srgb, var(--gp-accent) 80%, transparent);
}

.btn--outline {
	border-color: var(--gp-border-2);
	color: var(--gp-text);
	background: transparent;
}

.btn--outline:hover {
	background: var(--gp-surface-2);
	border-color: var(--gp-accent-2);
	color: var(--gp-text);
	transform: translateY(-2px);
}

.btn--ghost {
	background: var(--gp-surface);
	border-color: var(--gp-border);
	color: var(--gp-text);
}

.btn--ghost:hover {
	background: var(--gp-surface-2);
	color: var(--gp-text);
}

.btn--wa {
	background: #25d366;
	color: #05210f;
	font-weight: 700;
}

.btn--wa:hover {
	color: #05210f;
	transform: translateY(-2px);
}

.btn--sm {
	padding: 10px 18px;
	font-size: 14px;
}

.btn--lg {
	padding: 17px 32px;
	font-size: 16.5px;
}

.btn--block {
	width: 100%;
}

/* --- Cabeçalho --- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--gp-bg) 82%, transparent);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-stuck {
	border-bottom-color: var(--gp-border);
	background: color-mix(in srgb, var(--gp-bg) 94%, transparent);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: var(--gp-header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--gp-text);
}

.brand:hover {
	color: var(--gp-text);
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--gp-accent), var(--gp-accent-2));
	color: #05070f;
	font-family: var(--gp-font-title);
	font-weight: 800;
	font-size: 16px;
	letter-spacing: -0.03em;
	flex: none;
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.site-title {
	font-family: var(--gp-font-title);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.02em;
}

.site-description {
	font-size: 11.5px;
	color: var(--gp-muted);
	letter-spacing: 0.02em;
	max-width: 260px;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

/* --- Navegação --- */
.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-list a {
	display: block;
	padding: 9px 13px;
	border-radius: 999px;
	color: var(--gp-muted);
	font-size: 14.5px;
	font-weight: 500;
}

.nav-list a:hover,
.nav-list .current-menu-item > a {
	color: var(--gp-text);
	background: var(--gp-surface-2);
}

.nav-list .sub-menu {
	display: none;
}

.site-nav__cta {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	cursor: pointer;
}

.nav-toggle__bars {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 20px;
}

.nav-toggle__bars span {
	display: block;
	height: 2px;
	background: var(--gp-text);
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* --- Seções genéricas --- */
.section {
	padding: clamp(72px, 10vw, 130px) 0;
	position: relative;
}

.section--why,
.section--about {
	background: linear-gradient(180deg, transparent, var(--gp-bg-2) 12%, var(--gp-bg-2) 88%, transparent);
}

.section__head {
	max-width: 720px;
	margin: 0 0 clamp(40px, 5vw, 64px);
}

.section--faq .section__head,
.section--process .section__head,
.section--tech .section__head {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gp-accent-2);
}

.section__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--gp-accent), var(--gp-accent-2));
}

.section--faq .section__eyebrow,
.section--process .section__eyebrow,
.section--tech .section__eyebrow {
	justify-content: center;
}

.section__title {
	font-size: clamp(1.9rem, 4vw, 3rem);
	margin: 0 0 16px;
}

.section__text {
	color: var(--gp-muted);
	font-size: 1.05rem;
	margin: 0;
}

.section__foot {
	margin: 48px 0 0;
	text-align: center;
	color: var(--gp-muted);
}

/* --- Animação de entrada --- */
.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ============================================================== 4. SEÇÕES */

/* --- HERO --- */
.hero {
	position: relative;
	padding: clamp(70px, 12vw, 140px) 0 clamp(60px, 8vw, 110px);
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.5;
}

.hero__glow--1 {
	width: 620px;
	height: 620px;
	top: -240px;
	left: -160px;
	background: radial-gradient(circle, color-mix(in srgb, var(--gp-accent) 60%, transparent), transparent 70%);
}

.hero__glow--2 {
	width: 560px;
	height: 560px;
	top: -140px;
	right: -180px;
	background: radial-gradient(circle, color-mix(in srgb, var(--gp-accent-2) 45%, transparent), transparent 70%);
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

.hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 28px;
	padding: 8px 18px;
	border: 1px solid var(--gp-border-2);
	border-radius: 999px;
	background: var(--gp-surface);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--gp-text);
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gp-ok);
	box-shadow: 0 0 0 0 color-mix(in srgb, var(--gp-ok) 70%, transparent);
	animation: gp-pulse 2.4s infinite;
}

@keyframes gp-pulse {
	0% {
		box-shadow: 0 0 0 0 color-mix(in srgb, var(--gp-ok) 60%, transparent);
	}
	70% {
		box-shadow: 0 0 0 10px transparent;
	}
	100% {
		box-shadow: 0 0 0 0 transparent;
	}
}

/* O título principal do site — propositalmente enorme. */
.hero__title {
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.12em;
	text-wrap: balance;
}

.hero__title-name {
	font-family: var(--gp-font-title);
	font-weight: 800;
	font-size: clamp(3.1rem, 11.5vw, 8.5rem);
	line-height: 0.92;
	letter-spacing: -0.045em;
	background: linear-gradient(100deg, #ffffff 20%, color-mix(in srgb, var(--gp-accent-2) 85%, #fff) 55%, color-mix(in srgb, var(--gp-accent) 90%, #fff) 90%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	padding-bottom: 0.05em;
}

.hero__title-sep {
	display: none;
}

.hero__title-role {
	font-family: var(--gp-font-title);
	font-weight: 600;
	font-size: clamp(1.35rem, 4.4vw, 3.1rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	color: var(--gp-text);
	max-width: 16ch;
}

.hero__text {
	max-width: 720px;
	margin: 0 auto 36px;
	font-size: clamp(1.02rem, 1.6vw, 1.2rem);
	color: var(--gp-muted);
	text-wrap: pretty;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 0 clamp(48px, 7vw, 80px);
}

.hero__wa {
	font-size: 14.5px;
	color: var(--gp-muted);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1px;
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--gp-border);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	overflow: hidden;
}

.hero__stats li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 26px 20px;
	background: var(--gp-bg);
}

.hero__stat-value {
	font-family: var(--gp-font-title);
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	background: linear-gradient(120deg, var(--gp-accent-2), var(--gp-accent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__stat-label {
	font-size: 14px;
	color: var(--gp-muted);
}

/* --- Serviços --- */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
	gap: 20px;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
	overflow: hidden;
}

.card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), color-mix(in srgb, var(--gp-accent) 12%, transparent), transparent 45%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.card:hover {
	transform: translateY(-4px);
	border-color: var(--gp-border-2);
	background: var(--gp-surface-2);
}

.card:hover::after {
	opacity: 1;
}

.card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	border-radius: 14px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--gp-accent) 26%, transparent), color-mix(in srgb, var(--gp-accent-2) 20%, transparent));
	border: 1px solid var(--gp-border-2);
	color: var(--gp-accent-2);
}

.card__icon .icon {
	width: 25px;
	height: 25px;
}

.card__title {
	font-size: 1.22rem;
	margin: 0 0 10px;
}

.card__text {
	margin: 0;
	color: var(--gp-muted);
	font-size: 15.5px;
}

/* Faixa de preço e prazo, sempre colada no rodapé do card. */
.card__meta {
	position: relative;
	margin: 22px 0 0;
	padding-top: 16px;
	border-top: 1px dashed var(--gp-border-2);
	font-size: 13.5px;
	font-weight: 700;
	color: var(--gp-accent-2);
	letter-spacing: 0.01em;
}

.card__text + .card__meta {
	margin-top: auto;
}

/* --- Diferenciais --- */
.why {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 32px 40px;
}

.why__item {
	display: flex;
	gap: 18px;
}

.why__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 50%;
	background: color-mix(in srgb, var(--gp-accent) 18%, transparent);
	border: 1px solid var(--gp-border-2);
	color: var(--gp-accent-2);
}

.why__title {
	font-size: 1.1rem;
	margin: 4px 0 8px;
}

.why__text {
	margin: 0;
	color: var(--gp-muted);
	font-size: 15.5px;
}

/* --- Processo --- */
.steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}

.steps__item {
	position: relative;
	padding: 30px 24px;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.steps__item:hover {
	border-color: var(--gp-border-2);
	transform: translateY(-3px);
}

.steps__num {
	display: block;
	margin-bottom: 14px;
	font-family: var(--gp-font-title);
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	background: linear-gradient(160deg, color-mix(in srgb, var(--gp-accent) 90%, #fff), color-mix(in srgb, var(--gp-accent-2) 60%, transparent));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0.9;
}

.steps__title {
	font-size: 1.05rem;
	margin: 0 0 8px;
}

.steps__text {
	margin: 0;
	color: var(--gp-muted);
	font-size: 14.8px;
}

/* --- Tecnologias --- */
.tech {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tech__item {
	padding: 10px 20px;
	border: 1px solid var(--gp-border);
	border-radius: 999px;
	background: var(--gp-surface);
	font-size: 14.5px;
	font-weight: 500;
	color: var(--gp-text);
	transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.tech__item:hover {
	border-color: var(--gp-accent-2);
	color: var(--gp-accent-2);
	transform: translateY(-2px);
}

/* --- Sobre --- */
.about {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(36px, 5vw, 70px);
	align-items: center;
}

.about__text {
	color: var(--gp-muted);
}

.checklist {
	list-style: none;
	margin: 28px 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.checklist li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15.5px;
}

.checklist .icon {
	width: 20px;
	height: 20px;
	margin-top: 3px;
	padding: 3px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--gp-ok) 20%, transparent);
	color: var(--gp-ok);
	flex: none;
}

.codewin {
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	background: linear-gradient(160deg, var(--gp-bg-3), var(--gp-bg));
	box-shadow: var(--gp-shadow);
	overflow: hidden;
}

.codewin__bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--gp-border);
	background: rgba(255, 255, 255, 0.02);
}

.codewin__bar span {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--gp-border-2);
}

.codewin__bar span:first-child {
	background: #ff5f57;
}

.codewin__bar span:nth-child(2) {
	background: #febc2e;
}

.codewin__bar span:nth-child(3) {
	background: #28c840;
}

.codewin__bar em {
	margin-left: 10px;
	font-style: normal;
	font-size: 12.5px;
	color: var(--gp-muted);
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

.codewin__code {
	margin: 0;
	padding: 24px 22px 28px;
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	font-size: 13.5px;
	line-height: 1.75;
	color: #cbd6ee;
	overflow-x: auto;
	white-space: pre;
}

.codewin__code .c {
	color: #64748b;
}

.codewin__code .k {
	color: var(--gp-accent-2);
}

.codewin__code .t {
	color: #fbbf24;
}

.codewin__code .f {
	color: #a78bfa;
}

.codewin__code .s {
	color: var(--gp-ok);
}

/* --- Condições comerciais --- */
.section--terms .section__head {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section--terms .section__eyebrow {
	justify-content: center;
}

.terms {
	margin: 0;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	overflow: hidden;
}

.terms__row {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 8px 24px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--gp-border);
}

.terms__row:last-child {
	border-bottom: 0;
}

.terms__row:nth-child(odd) {
	background: rgba(255, 255, 255, 0.018);
}

.terms__item {
	margin: 0;
	font-family: var(--gp-font-title);
	font-weight: 700;
	font-size: 15px;
	color: var(--gp-text);
}

.terms__cond {
	margin: 0;
	color: var(--gp-muted);
	font-size: 15.5px;
}

.terms__note {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 24px 0 0;
	padding: 20px 24px;
	border: 1px solid color-mix(in srgb, var(--gp-ok) 35%, transparent);
	border-radius: var(--gp-radius-sm);
	background: color-mix(in srgb, var(--gp-ok) 8%, transparent);
	font-size: 15.5px;
}

.terms__note .icon {
	flex: none;
	margin-top: 3px;
	color: var(--gp-ok);
}

/* --- Condição de lançamento --- */
.offer {
	padding: 0 0 clamp(20px, 4vw, 40px);
}

.offer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px 40px;
	align-items: center;
	padding: clamp(28px, 4vw, 44px);
	border: 1px solid color-mix(in srgb, var(--gp-accent) 50%, transparent);
	border-radius: var(--gp-radius);
	background:
		radial-gradient(700px circle at 10% 0%, color-mix(in srgb, var(--gp-accent) 26%, transparent), transparent 60%),
		linear-gradient(120deg, var(--gp-bg-3), var(--gp-bg-2));
	box-shadow: var(--gp-shadow);
}

.offer__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin: 0 0 14px;
	padding: 7px 16px;
	border: 1px solid var(--gp-border-2);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.25);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gp-accent-2);
}

.offer__badge .icon {
	width: 17px;
	height: 17px;
}

.offer__title {
	font-size: clamp(1.5rem, 3vw, 2.15rem);
	margin: 0 0 12px;
	text-wrap: balance;
}

.offer__text {
	margin: 0;
	color: var(--gp-muted);
	font-size: 15.5px;
	max-width: 62ch;
}

.offer__action .btn {
	white-space: nowrap;
}

/* --- FAQ --- */
.faq {
	display: grid;
	gap: 12px;
}

.faq__item {
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius-sm);
	background: var(--gp-surface);
	transition: border-color 0.2s ease, background 0.2s ease;
}

.faq__item[open] {
	border-color: var(--gp-border-2);
	background: var(--gp-surface-2);
}

.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 22px;
	cursor: pointer;
	font-family: var(--gp-font-title);
	font-weight: 600;
	font-size: 1.02rem;
	list-style: none;
}

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

.faq__mark {
	position: relative;
	width: 18px;
	height: 18px;
	flex: none;
}

.faq__mark::before,
.faq__mark::after {
	content: "";
	position: absolute;
	inset: 50% 0 auto 0;
	height: 2px;
	background: var(--gp-accent-2);
	border-radius: 2px;
	transition: transform 0.25s ease;
}

.faq__mark::after {
	transform: rotate(90deg);
}

.faq__item[open] .faq__mark::after {
	transform: rotate(0deg);
}

.faq__a {
	padding: 0 22px 22px;
	color: var(--gp-muted);
	font-size: 15.5px;
}

.faq__a p {
	margin: 0;
}

/* --- Contato --- */
.section--contact {
	background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--gp-accent) 8%, var(--gp-bg-2)));
}

.contact {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(36px, 5vw, 64px);
	align-items: start;
}

.contact__list {
	list-style: none;
	margin: 32px 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.contact__list li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 15.5px;
}

.contact__list .icon {
	color: var(--gp-accent-2);
	width: 20px;
	height: 20px;
}

.contact__form-wrap {
	padding: clamp(26px, 3.5vw, 40px);
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	box-shadow: var(--gp-shadow);
}

.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0 0 16px;
}

.form__field label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--gp-text);
	letter-spacing: 0.01em;
}

.req {
	color: var(--gp-accent-2);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea,
.search-form__input,
.widget input[type="search"],
.widget input[type="text"] {
	width: 100%;
	padding: 13px 15px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius-sm);
	color: var(--gp-text);
	font-family: var(--gp-font);
	font-size: 15.5px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form textarea {
	resize: vertical;
	min-height: 130px;
}

.form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--gp-muted) 50%), linear-gradient(135deg, var(--gp-muted) 50%, transparent 50%);
	background-position: calc(100% - 20px) center, calc(100% - 14px) center;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

.form select option {
	background: var(--gp-bg-2);
	color: var(--gp-text);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
	outline: none;
	border-color: var(--gp-accent-2);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--gp-accent-2) 22%, transparent);
}

.form input::placeholder,
.form textarea::placeholder {
	color: color-mix(in srgb, var(--gp-muted) 70%, transparent);
}

/* Campo-armadilha para robôs: precisa existir no HTML, mas ficar invisível. */
.form__hp {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.form__note {
	margin: 16px 0 0;
	font-size: 13px;
	color: var(--gp-muted);
	text-align: center;
}

.alert {
	margin: 0 0 22px;
	padding: 15px 18px;
	border-radius: var(--gp-radius-sm);
	font-size: 15px;
	border: 1px solid transparent;
}

.alert--ok {
	background: color-mix(in srgb, var(--gp-ok) 14%, transparent);
	border-color: color-mix(in srgb, var(--gp-ok) 45%, transparent);
	color: #b8f5dd;
}

.alert--erro {
	background: color-mix(in srgb, var(--gp-err) 14%, transparent);
	border-color: color-mix(in srgb, var(--gp-err) 45%, transparent);
	color: #ffd5d5;
}

/* --- Rodapé --- */
.site-footer {
	padding: clamp(56px, 7vw, 84px) 0 32px;
	background: var(--gp-bg-2);
	border-top: 1px solid var(--gp-border);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}

.site-footer__name {
	font-family: var(--gp-font-title);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 10px;
}

.site-footer__text {
	color: var(--gp-muted);
	max-width: 420px;
	font-size: 15px;
}

.site-footer__title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gp-muted);
	margin: 0 0 16px;
}

.footer-list,
.social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	font-size: 15px;
}

.footer-list a,
.social a {
	color: var(--gp-muted);
}

.footer-list a:hover,
.social a:hover {
	color: var(--gp-text);
}

.social {
	grid-auto-flow: column;
	justify-content: start;
	gap: 20px;
	margin-top: 20px;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-top: 26px;
	border-top: 1px solid var(--gp-border);
	font-size: 13.5px;
	color: var(--gp-muted);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__cnpj {
	margin-left: 8px;
	opacity: 0.8;
}

.to-top {
	color: var(--gp-muted);
}

/* --- Botão flutuante do WhatsApp --- */
.wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #062e14;
	box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
	transition: transform 0.2s ease;
}

.wa-float:hover {
	color: #062e14;
	transform: scale(1.07);
}

.wa-float svg {
	width: 30px;
	height: 30px;
}

/* --- Páginas internas / blog --- */
.page-hero {
	padding: clamp(56px, 8vw, 90px) 0 clamp(28px, 4vw, 44px);
	background: linear-gradient(180deg, color-mix(in srgb, var(--gp-accent) 10%, var(--gp-bg)), var(--gp-bg));
	border-bottom: 1px solid var(--gp-border);
	text-align: center;
}

.page-hero__eyebrow {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gp-accent-2);
	margin: 0 0 12px;
}

.page-hero__eyebrow a {
	color: inherit;
}

.page-hero__title {
	font-size: clamp(1.9rem, 4.5vw, 3.1rem);
	margin: 0 0 10px;
	text-wrap: balance;
}

.page-hero__text {
	color: var(--gp-muted);
	margin: 0;
}

.content-area {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 56px;
	padding-top: clamp(40px, 6vw, 70px);
	padding-bottom: clamp(56px, 8vw, 100px);
}

.no-sidebar .content-area {
	grid-template-columns: minmax(0, 1fr);
	max-width: 880px;
}

.post-list {
	display: grid;
	gap: 24px;
}

.post-card {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 24px;
	padding: 20px;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.post-card:hover {
	border-color: var(--gp-border-2);
	transform: translateY(-3px);
}

/* Post sem imagem destacada ocupa a largura toda. */
.post-card:not(:has(.post-card__thumb)) {
	grid-template-columns: minmax(0, 1fr);
}

.post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--gp-radius-sm);
	aspect-ratio: 16 / 10;
}

.post-card__title {
	font-size: 1.35rem;
	margin: 0 0 6px;
}

.post-card__title a {
	color: var(--gp-text);
}

.post-card__title a:hover {
	color: var(--gp-accent-2);
}

.post__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	font-size: 13.5px;
	color: var(--gp-muted);
}

.post__meta .dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--gp-muted);
}

.post-card__excerpt {
	color: var(--gp-muted);
	font-size: 15.5px;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 14.5px;
}

.link-arrow .icon {
	width: 17px;
	height: 17px;
	transition: transform 0.2s ease;
}

.link-arrow:hover .icon {
	transform: translateX(4px);
}

.entry__thumb {
	margin: 0 0 32px;
}

.entry__thumb img {
	width: 100%;
	border-radius: var(--gp-radius);
}

.entry__content {
	font-size: 17.5px;
}

.entry__content h2 {
	font-size: 1.7rem;
	margin-top: 1.8em;
}

.entry__content h3 {
	font-size: 1.3rem;
	margin-top: 1.6em;
}

.entry__content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry__content img {
	border-radius: var(--gp-radius-sm);
}

.entry__content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--gp-accent);
	color: var(--gp-muted);
	font-size: 1.08em;
}

.entry__content code {
	padding: 2px 7px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
	font-size: 0.9em;
}

.entry__content pre {
	padding: 20px;
	border-radius: var(--gp-radius-sm);
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid var(--gp-border);
	overflow-x: auto;
}

.entry__content pre code {
	background: none;
	padding: 0;
}

.entry__content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15.5px;
}

.entry__content th,
.entry__content td {
	padding: 10px 12px;
	border: 1px solid var(--gp-border);
	text-align: left;
}

.entry__content hr {
	border: 0;
	border-top: 1px solid var(--gp-border);
	margin: 2.4em 0;
}

.entry__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
}

.entry__tags a {
	padding: 6px 14px;
	border: 1px solid var(--gp-border);
	border-radius: 999px;
	font-size: 13.5px;
	color: var(--gp-muted);
}

.post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 48px;
	padding-top: 26px;
	border-top: 1px solid var(--gp-border);
	font-size: 15px;
}

.post-nav__next {
	margin-left: auto;
	text-align: right;
}

.cta-band {
	padding: clamp(48px, 7vw, 80px) 0;
	background: linear-gradient(120deg, color-mix(in srgb, var(--gp-accent) 22%, var(--gp-bg-2)), color-mix(in srgb, var(--gp-accent-2) 14%, var(--gp-bg-2)));
	border-top: 1px solid var(--gp-border);
	border-bottom: 1px solid var(--gp-border);
	text-align: center;
}

.cta-band h2 {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	margin: 0 0 24px;
	text-wrap: balance;
}

.empty {
	text-align: center;
	padding: 40px 0;
}

.pagination {
	margin-top: 44px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid var(--gp-border);
	border-radius: 12px;
	color: var(--gp-muted);
	font-size: 14.5px;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--gp-surface-2);
	border-color: var(--gp-border-2);
	color: var(--gp-text);
}

/* --- Widgets / busca --- */
.widget {
	margin-bottom: 32px;
	padding: 24px;
	background: var(--gp-surface);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius);
}

.widget__title {
	font-size: 1.05rem;
	margin: 0 0 14px;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	font-size: 15px;
}

.widget a {
	color: var(--gp-muted);
}

.widget a:hover {
	color: var(--gp-text);
}

.search-form {
	display: flex;
	gap: 10px;
}

/* --- Comentários --- */
.comments-area {
	margin: 56px 0;
	padding-top: 32px;
	border-top: 1px solid var(--gp-border);
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--gp-border);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	background: rgba(0, 0, 0, 0.28);
	border: 1px solid var(--gp-border);
	border-radius: var(--gp-radius-sm);
	color: var(--gp-text);
	font-family: var(--gp-font);
}

.comment-form .submit {
	padding: 13px 26px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--gp-accent), var(--gp-accent-2));
	color: #05070f;
	font-weight: 700;
	cursor: pointer;
}

/* --- Classes do editor do WordPress --- */
.alignleft {
	float: left;
	margin: 0 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin: 1em auto;
}

.alignwide {
	width: min(100vw - 48px, 1100px);
	margin-left: calc(50% - min(50vw - 24px, 550px));
}

.wp-caption-text,
.wp-element-caption {
	font-size: 13.5px;
	color: var(--gp-muted);
	text-align: center;
}

.sticky .post-card {
	border-color: var(--gp-accent);
}

/* ============================================================ 5. RESPONSIVO */
@media (min-width: 1100px) {
	.hero__title-role {
		max-width: 24ch;
	}
}

@media (max-width: 980px) {
	.about,
	.contact,
	.offer__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.offer__action .btn {
		width: 100%;
	}

	.about__card {
		order: -1;
	}

	.content-area {
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 880px) {
	.nav-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		inset: var(--gp-header-h) 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 20px 24px 28px;
		background: var(--gp-bg-2);
		border-bottom: 1px solid var(--gp-border);
		box-shadow: var(--gp-shadow);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
		max-height: calc(100vh - var(--gp-header-h));
		overflow-y: auto;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.nav-list a {
		padding: 14px 12px;
		font-size: 16px;
		border-radius: var(--gp-radius-sm);
	}

	.site-nav__cta {
		margin-top: 18px;
		padding-top: 18px;
		border-top: 1px solid var(--gp-border);
	}

	.site-nav__cta .btn {
		flex: 1;
	}

	.site-description {
		display: none;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 16px;
	}

	.wrap {
		padding: 0 20px;
	}

	.form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.post-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.terms__row {
		grid-template-columns: minmax(0, 1fr);
		gap: 4px;
		padding: 16px 20px;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.hero__wa {
		text-align: center;
		margin-top: 4px;
	}

	.wa-float {
		width: 52px;
		height: 52px;
		right: 16px;
		bottom: 16px;
	}

	.section__head {
		text-align: left;
	}

	.section--faq .section__head,
	.section--process .section__head,
	.section--tech .section__head {
		text-align: center;
	}
}

@media (max-width: 420px) {
	.hero__stats li {
		padding: 20px 16px;
	}

	.hero__stat-value {
		font-size: 1.6rem;
	}
}

/* Fallback para navegadores sem color-mix(). */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
	.site-header {
		background: rgba(7, 11, 22, 0.9);
	}

	.card__icon,
	.why__icon {
		background: rgba(99, 102, 241, 0.2);
	}

	.alert--ok {
		background: rgba(52, 211, 153, 0.14);
		border-color: rgba(52, 211, 153, 0.45);
	}

	.alert--erro {
		background: rgba(248, 113, 113, 0.14);
		border-color: rgba(248, 113, 113, 0.45);
	}
}
