/* ===== TOKENS ===== */
:root {
	--green: #01ea6b;
	--green-40: #01ea6b66;
	--green-10: #01ea6b1a;
	--black: #000000;
	--white: #ffffff;
	--red: #eb0048;
	--purple: #9000eb;
	--indigo: #1000eb;
	--cyan: #00f6e2;
	--yellow: #ffe900;
	--g900: #0a0a0a;
	--g800: #111;
	--g700: #1a1a1a;
	--g600: #2a2a2a;
	--g400: #555;
	--g300: #808285;
	--g200: #b0b2b5;
	--g100: #e8e9ea;
	--g50: #f5f5f5;
	--fw-x: 800;
	--fw-b: 700;
	--fw-sb: 600;
	--fw-m: 500;
	--fw-r: 400;
	--fw-l: 300;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 32px;
	--radius-full: 9999px;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--tf: 150ms ease-in-out;
	--tb: 250ms ease-in-out;
	--font: "Outfit", sans-serif;
	--border-dark: rgba(255, 255, 255, 0.08);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	background: #000;
	color: #fff;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	max-width: 100%;
	display: block;
}

#header > div > a.logo > div > svg > g > g:nth-child(2){
	opacity: 0 !important;
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #000;
}
::-webkit-scrollbar-thumb {
	background: var(--green-40);
	border-radius: 5px;
}

#lottie {
	width: 142px;
	display: block;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
	text-align: center;
	opacity: 1;
}

/* ===== UTILITY ===== */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-l {
	opacity: 0;
	transform: translateX(-60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-l.visible {
	opacity: 1;
	transform: translateX(0);
}
.reveal-r {
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-r.visible {
	opacity: 1;
	transform: translateX(0);
}

.glass {
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--radius-full);
	font-family: "Outfit", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	transition: all 0.35s ease;
}
.btn-p {
	background: var(--green);
	color: #000;
	min-width: 260px;
	justify-content: center;
}
.btn-p:hover {
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.35);
	transform: translateY(-3px);
}
.btn-o {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	min-width: 260px;
	justify-content: center;
}
.btn-o:hover {
	color: var(--black);
	border-color: var(--green);
	background-color: var(--green);
	transform: translateY(-3px);
}

/* ===== DECORATIVE BLOBS ===== */
.blob {
	position: fixed;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
	z-index: 0;
	animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-1 {
	width: 500px;
	height: 500px;
	background: rgba(1, 234, 107, 0.08);
	top: -150px;
	right: -100px;
}
.blob-2 {
	width: 400px;
	height: 400px;
	background: rgba(0, 246, 226, 0.05);
	bottom: -100px;
	left: -100px;
	animation-delay: -4s;
}
.blob-3 {
	width: 350px;
	height: 350px;
	background: rgba(144, 0, 235, 0.06);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: -8s;
}

@keyframes blobFloat {
	0% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(40px, -30px) scale(1.05);
	}
	66% {
		transform: translate(-20px, 20px) scale(0.95);
	}
	100% {
		transform: translate(30px, 30px) scale(1.02);
	}
}

/* ===== PARTICLES ===== */
#particles {
	position: relative;
	inset: 0;
	z-index: -1;
	margin-bottom: -1200px;
	pointer-events: none;
	max-width: 100%;
}

/* ===== HEADER / NAVBAR ===== */
/* .header {
        position: fixed;
        top: var(--space-4);
        left: var(--space-4);
        right: var(--space-4);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 24px;
        border-radius: var(--radius-lg);
        background: rgba(1, 234, 107, 0.02);
        border: 1px solid rgba(1, 234, 107, 0.06);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        transition: all 0.5s ease;
        max-width: 1200px;
        margin: 0 auto;
      }
      .header.scrolled {
        background: rgba(0, 0, 0, 0.5);
        border-color: rgba(1, 234, 107, 0.08);
        backdrop-filter: blur(32px);
        -webkit-backdrop-filter: blur(32px);
        box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(1, 234, 107, 0.03);
      }
      @supports not (backdrop-filter: blur()) {
        .header { background: rgba(0, 0, 0, 0.7); }
        .header.scrolled { background: rgba(0, 0, 0, 0.85); }
      }
      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
      }
      .header-left {
        display: flex;
        align-items: center;
        gap: 32px;
      } */

/* ===== OVERLAY ===== */
.nav-overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	pointer-events: none;
}
.nav-overlay.active {
	pointer-events: all;
}

/* ===== HEADER ===== */
.header {
	position: fixed;
	top: 16px;
	left: 16px;
	right: 16px;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	border-radius: var(--radius-lg);
	background: rgba(1, 234, 107, 0.02);
	border: 1px solid rgba(1, 234, 107, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: all 0.5s ease;
	max-width: 1200px;
	margin: 0 auto;
}
.header.scrolled {
	background: rgba(0, 0, 0, 0.6);
	border-color: rgba(1, 234, 107, 0.08);
	backdrop-filter: blur(32px);
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 8px;
}

/* NAV ITEMS */
.nav-items {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 1;
	margin: 0 8px;
}
.nav-item {
	position: relative;
}
.nav-btn {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 7px 12px;
	background: none;
	border: none;
	color: var(--g200);
	font-family: var(--font);
	font-size: 13.5px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 8px;
	white-space: nowrap;
	transition:
		color var(--tf),
		background var(--tf);
}
.nav-btn:hover,
.nav-btn.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}
.nav-btn.active {
	color: var(--green);
}
.nav-btn .chev {
	width: 11px;
	height: 11px;
	transition: transform var(--tb);
	flex-shrink: 0;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
}
.nav-btn.active .chev {
	transform: rotate(180deg);
}
.nav-btn:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 3px;
}

/* CTA */
.btn-cta {
	padding: 9px 20px;
	background: var(--green);
	color: #000;
	font-family: var(--font);
	font-size: 13.5px;
	font-weight: 700;
	border: none;
	border-radius: var(--radius-full);
	cursor: pointer;
	transition:
		background var(--tf),
		transform var(--tf);
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}
.btn-cta:hover {
	background: #00cc5c;
	transform: scale(1.02);
}
.btn-cta:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 3px;
}
.btn-cta .icon-svg {
	width: 14px;
	height: 14px;
	color: currentColor;
}

/* ===== DROPDOWNS ===== */
.dd {
	position: fixed;
	top: 72px;
	/* left: 0; */
	background: var(--g800);
	border: 1px solid var(--border-dark);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	transition:
		opacity var(--tb),
		transform var(--tb);
	z-index: 200;
	overflow: hidden;
}
.dd.open {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);
}

.ddh {
	padding: 16px 22px 13px;
	border-bottom: 1px solid var(--border-dark);
}
.dde {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 2px;
}
.ddhl {
	font-size: 11.5px;
	color: var(--g300);
	font-weight: 400;
}
.ddg {
	display: grid;
}
.tc {
	grid-template-columns: 1fr 1fr;
}
.dc {
	padding: 12px 18px 16px;
}
.dc + .dc {
	border-left: 1px solid var(--border-dark);
}
.cl {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--g400);
	margin-bottom: 8px;
}

/* MENU ITEM — hover negativo */
.mi {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 9px;
	border-radius: 8px;
	cursor: pointer;
	transition: background var(--tf);
	margin-bottom: 2px;
	text-decoration: none;
}
.mi:hover {
	background: var(--green);
}
.mi:hover .it {
	color: #000;
}
.mi:hover .id {
	color: rgba(0, 0, 0, 0.58);
}
.mi:hover .ic {
	background: rgba(0, 0, 0, 0.12);
}
.mi:hover .ic .icon-svg {
	color: #000;
}
.mi:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 2px;
}

.mi-all {
	border: 1px dashed rgba(1, 234, 107, 0.28);
	margin-top: 5px;
}
.mi-all:hover {
	border-color: transparent;
}
.mi-all .it {
	color: var(--green);
}
.mi-all:hover .it {
	color: #000;
}

/* ITEM ICON — SVG inline embutido no HTML */
.ic {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(1, 234, 107, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
	transition: background var(--tf);
}
.ic .icon-svg, .ic .ph, .ic i {
	width: 16px;
	height: 16px;
	color: var(--green);
	transition: color var(--tf);
	line-height: 1;
}

.page-cases.page-cases-categoria .icon-svg{
	width: 16px;
}

.it {
	font-size: 12.5px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1px;
	transition: color var(--tf);
	line-height: 1.3;
}
.id {
	font-size: 11px;
	color: var(--g400);
	line-height: 1.4;
	font-weight: 400;
	transition: color var(--tf);
}

/* DROPDOWN SIMPLES */
.dds {
	width: 260px;
	padding: 8px 6px;
}
.si {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 11px;
	border-radius: 8px;
	cursor: pointer;
	transition:
		background var(--tf),
		color var(--tf);
	color: var(--g200);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}
.si:hover {
	background: var(--green);
	color: #000;
}
.si .icon-svg {
	width: 15px;
	height: 15px;
	color: var(--g400);
	transition: color var(--tf);
	flex-shrink: 0;
	line-height: 1;
}
.si:hover .icon-svg {
	color: #000;
}
.si:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 2px;
}
.dv {
	height: 1px;
	background: var(--border-dark);
	margin: 4px 10px;
}

/* PRODUTOS CARDS */
.pg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	padding: 12px;
}
.pc {
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid var(--border-dark);
	cursor: pointer;
	transition:
		border-color var(--tf),
		background var(--tf);
	background: rgba(255, 255, 255, 0.02);
	text-decoration: none;
	display: block;
}
.pc:hover {
	background: var(--green);
	border-color: var(--green);
}
.pc:hover .pt {
	color: rgba(0, 0, 0, 0.55);
}
.pc:hover .pn {
	color: #000;
}
.pc:hover .pd {
	color: rgba(0, 0, 0, 0.55);
}
.pc:focus-visible {
	outline: 3px solid var(--green);
	outline-offset: 2px;
}
.pt {
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
	margin-bottom: 4px;
	transition: color var(--tf);
}
.pn {
	font-size: 12.5px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 2px;
	transition: color var(--tf);
}
.pd {
	font-size: 11px;
	color: var(--g400);
	line-height: 1.4;
	transition: color var(--tf);
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.125rem;
}
.logo-lottie-hover {
	width: 195px;
	height: 36px;
	display: block;
}
@keyframes wecogno-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
.logo-mark-anim {
	transform-box: fill-box;
	transform-origin: center;
}
.logo:hover .logo-mark-anim {
	animation: wecogno-spin 0.65s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.logo-mrk {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	background: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-weight: 800;
	font-size: 17px;
}
.logo img {
	width: 100%;
	max-width: 142px;
	max-height: 34px;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.nav-links a {
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s;
	padding: 4px 0;
}
.nav-links a:hover {
	color: var(--green);
}
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	padding: 4px;
}

/* ===== HERO (home) =====
   Escopado em .page-home porque .hero / .hero-strip / .hero-visual /
   .hero-img-wrap / .hero-img-glow são reaproveitados pelas páginas de
   serviço com um layout diferente (hero-grid, alinhado à esquerda).
   Sem esse escopo essas regras "vazavam" para todas as páginas e
   centralizavam o conteúdo das páginas de serviço. */
.page-home .hero {
	position: relative;
	z-index: 1;
	min-height: 100dvh;
	gap: 40px;
	align-items: center;
	padding: 120px 24px 120px;
	max-width: 1200px;
	margin: 0 auto;
	isolation: isolate;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-content {
	z-index: 2;
}
.page-home .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	border-radius: var(--radius-full);
	background: rgba(1, 234, 107, 0.1);
	border: 1px solid rgba(1, 234, 107, 0.2);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--green);
	margin-bottom: 24px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.page-home .hero h1 {
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 24px;
}
.page-home .hero h1 .hl {
	background: linear-gradient(135deg, var(--green), #6effb5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.page-home .hero p {
	font-size: 1.125rem;
	color: var(--g300);
	max-width: 640px;
	font-weight: 300;
	margin: auto;
	margin-bottom: 32px;
}
.page-home .hero-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
.page-home .hero-strip {
	display: flex;
	gap: 24px;
	margin-top: 40px;
	flex-wrap: wrap;
	justify-content: center;
}
.page-home .hero-strip-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	color: var(--g300);
}
.page-home .hero-strip-item i {
	color: var(--green);
	font-size: 1.25rem;
}

.page-home .hero-visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.page-home .hero-img-wrap {
	position: relative;
	width: 100%;
	max-width: 560px;
	aspect-ratio: 4/3;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}
.page-home .hero-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 8s ease;
}
.page-home .hero-img-wrap:hover img {
	transform: scale(1.06);
}
.page-home .hero-img-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.15), transparent 60%);
	pointer-events: none;
}
.page-home .hero-img-tag {
	position: absolute;
	bottom: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: var(--radius-md);
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.75rem;
	font-weight: 500;
}
.page-home .hero-img-tag i {
	color: var(--green);
	font-size: 1rem;
}

.hero-scroll {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	color: var(--g400);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(8px);
	}
}

/* ===== SECTION ===== */
.section {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--green);
	margin-bottom: 16px;
}
.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 12px;
}
.section-sub {
	font-size: 1rem;
	color: var(--g300);
	max-width: 600px;
	font-weight: 300;
}
.ta-c {
	text-align: center;
}
.mx-a {
	margin-left: auto;
	margin-right: auto;
}

/* ===== SECTION BG COLORS ===== */
.bg-about::before {
	background: radial-gradient(
		ellipse at 0% 50%,
		rgba(1, 234, 107, 0.1),
		transparent 70%
	);
}
.bg-process::before {
	background: radial-gradient(
		ellipse at 100% 50%,
		rgba(0, 246, 226, 0.1),
		transparent 70%
	);
}
.bg-solutions::before {
	background: radial-gradient(
		ellipse at 50% 0%,
		rgba(1, 234, 107, 0.05),
		transparent 70%
	);
}
.bg-diff::before {
	background: radial-gradient(
		ellipse at 50% 100%,
		rgba(144, 0, 235, 0.04),
		transparent 70%
	);
}
.bg-cases::before {
	background: radial-gradient(
		ellipse at 0% 50%,
		rgba(1, 234, 107, 0.05),
		rgba(0, 246, 226, 0.03) 70%,
		transparent 80%
	);
}
.bg-blog::before {
	background: radial-gradient(
		ellipse at 100% 30%,
		rgba(1, 234, 107, 0.04),
		transparent 70%
	);
}
.bg-about {
	background-color: rgba(0, 0, 0, 0.6);
}
.bg-partners,
.bg-cases,
.bg-process {
	background-color: rgba(1, 234, 107, 0.06);
}
.bg-partners::before {
	background: radial-gradient(
		ellipse at 50% 50%,
		rgba(255, 233, 0, 0.03),
		transparent 70%
	);
}
.bg-contact::before {
	background: radial-gradient(
		ellipse at 50% 100%,
		rgba(1, 234, 107, 0.06),
		transparent 60%
	);
}
.bg-gray {
	color: var(--g900);
	background-color: var(--g100);
}
.bg-gray.bg-pessoa-1 h2 {
	font-size: 80px;
}
.bg-gray.bg-pessoa-1 h2 span {
	color: var(--green);
}
.bg-gray.bg-pessoa-1 > div {
	display: flex;
	justify-content: end;
}
.bg-gray .section-title {
	max-width: 620px;
}

.bg-white {
	color: var(--g900);
	background-color: var(--white);
}
.bg-white::before {
	background: none;
}
.bg-white .section-title {
	color: var(--g900);
}
.bg-white .section-sub {
	color: var(--g600);
}
.bg-white .process-step,
.bg-white .case-card,
.bg-white .testimonial {
	background: #ffffff;
	border-color: rgba(10, 10, 10, 0.12);
	box-shadow: 0 14px 34px rgba(10, 10, 10, 0.08);
}
.bg-white .process-step:hover,
.bg-white .case-card:hover,
.bg-white .testimonial:hover {
	background: rgba(1, 234, 107, 0.06);
	border-color: rgba(1, 234, 107, 0.24);
	box-shadow: 0 12px 28px rgba(10, 10, 10, 0.08);
}
.bg-white .process-step h4,
.bg-white .case-body h3 {
	color: var(--g900);
}
.bg-white .process-step p,
.bg-white .case-body p {
	color: var(--g600);
}
.bg-white .testimonial p {
	color: var(--g600);
	font-weight: 400;
}
.bg-white .testimonial-author-role {
	color: var(--g500);
	font-weight: 500;
}

.bg-green {
	color: var(--g900);
	background-color: var(--green);
}
.bg-green h2 {
	font-size: 40px;
	line-height: 1;
}
.bg-green > div {
	max-width: 800px;
}
.bg-green span {
	color: var(--g100);
}

.not-found-page {
	background: #000;
	color: #fff;
	min-height: 100vh;
}
.not-found-hero {
	min-height: calc(100vh - 88px);
	padding: 150px 0 110px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.not-found-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 30%, rgba(1, 234, 107, 0.16), transparent 48%),
		radial-gradient(ellipse at 84% 70%, rgba(0, 246, 226, 0.1), transparent 44%);
	pointer-events: none;
}
.not-found-content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}
.not-found-content h1 {
	font-size: clamp(2.2rem, 5vw, 4.7rem);
	line-height: 1.04;
	font-weight: 800;
	margin-bottom: 20px;
}
.not-found-content p {
	max-width: 560px;
	color: var(--g200);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 300;
	line-height: 1.55;
	margin-bottom: 32px;
}

.bg-pessoa-1 {
	background-image: url(../img/bg-pessoa-1.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto;
}

.sprite-1::before {
	background-image: url(../img/sprites/sprite-ribbon-fill.svg);
	background-position: top 20px left;
	background-repeat: no-repeat;
	background-size: 1500px;
	/* opacity: 0.6; */
}

.sprite-2::before {
	background-image: url(../img/sprites/sprite-c-stroke.svg);
	background-position: top 20px left;
	background-repeat: no-repeat;
	background-size: 1000px;
	opacity: 0.08;
}

.sprite-3::before {
	background-image: url(../img/sprites/sprite-ribbon-fill.svg);
	background-position: top 20px left;
	background-repeat: no-repeat;
	background-size: 1600px;
	opacity: 0.06;
}

.sprite-4::before {
	background-image: url(../img/sprites/sprite-vertical.svg);
	background-position: top 20px left;
	background-repeat: no-repeat;
	background-size: 800px;
	opacity: 0.08;
}

.sprite-5::before {
	background-image: url(../img/sprites/sprite-c-fill-black.svg);
	background-position: right top -100px;
	background-repeat: no-repeat;
	background-size: 660px;
	opacity: 0.08;
	z-index: 2;
}

/* ===== ABOUT ===== */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.about-img-wrap {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.06);
	aspect-ratio: 4/3;
}
.about-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-img-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.1), transparent 50%);
}
.about-text h2 {
	margin-bottom: 16px;
}
.about-text p {
	color: var(--g300);
	font-weight: 300;
	margin-bottom: 20px;
	font-size: 1rem;
	line-height: 1.7;
}
.about-text strong {
	color: #fff;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 16px;
}
.about-feat {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.875rem;
	color: var(--g200);
}
.about-feat i {
	color: var(--green);
	font-size: 1.125rem;
}

/* Stats row */
.stats-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 60px;
}
.stat-card {
	padding: 24px 16px;
	text-align: center;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
}
.stat-card:hover {
	background: rgba(1, 234, 107, 0.06);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 0 24px rgba(1, 234, 107, 0.15);
}
.stat-num {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	color: var(--green);
	line-height: 1;
	margin-bottom: 6px;
}
.stat-lbl {
	font-size: 0.8rem;
	color: var(--g300);
}

/* ===== PROCESS ===== */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
	gap: 20px;
	margin-top: 48px;
}
.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	text-align: center;
	padding: 32px 16px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
	position: relative;
}
.process-step:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-6px);
	box-shadow: 0 0 24px rgba(1, 234, 107, 0.12);
}
.process-num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(1, 234, 107, 0.12);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.25rem;
	margin: 0 auto 16px;
}
.process-step h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 8px;
}
.process-step p {
	font-size: 0.875rem;
	color: var(--g300);
	font-weight: 300;
}
.process-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-40);
	font-size: 1.5rem;
}
@media (min-width: 901px) {
	.process-grid {
		grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
	}
	.process-step {
		min-width: 200px;
	}
	.process-arrow {
		padding: 0 8px;
	}
}

/* ===== SOLUTIONS ===== */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 48px;
}
.sol-card {
	padding: 40px 28px;
	border-radius: var(--radius-lg);
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
}
.sol-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}
.sol-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-6px);
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.12);
}
.sol-card:hover::before {
	transform: scaleX(1);
}
.sol-icon {
	font-size: 2.25rem;
	color: var(--green);
	margin-bottom: 20px;
	display: inline-block;
}
.sol-card h3 {
	font-size: 1.375rem;
	font-weight: 600;
	margin-bottom: 12px;
}
.sol-card p {
	font-size: 0.875rem;
	color: var(--g300);
	font-weight: 300;
	line-height: 1.7;
}
.sol-card .btn-o {
	margin-top: 20px;
	padding: 10px 20px;
	font-size: 0.8rem;
}

/* ===== WHY ===== */
.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.why-card {
	padding: 28px 20px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
	text-align: center;
}
.why-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-4px);
}
.why-card i {
	font-size: 1.75rem;
	color: var(--green);
	margin-bottom: 12px;
}
.why-card h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 6px;
}
.why-card p {
	font-size: 0.8rem;
	color: var(--g300);
	font-weight: 300;
}

/* ===== CASES ===== */
.cases-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}
.case-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
}
.case-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 0 24px rgba(1, 234, 107, 0.1);
}
.case-img {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
}
.case-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s ease;
}
.case-card:hover .case-img img {
	transform: scale(1.05);
}
.case-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.12), transparent 60%);
}
.case-body {
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.case-tag {
	display: inline-block;
	width: fit-content;
	padding: 4px 12px;
	border-radius: var(--radius-full);
	background: rgba(1, 234, 107, 0.1);
	color: var(--green);
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 12px;
}
.case-body h3 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 10px;
	line-height: 1.3;
}
.case-body p {
	font-size: 0.85rem;
	color: var(--g300);
	font-weight: 300;
	margin-bottom: 16px;
	line-height: 1.6;
}
.case-result {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--green);
}

/* ===== BLOG ===== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 32px;
}
.blog-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
}
.blog-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 0 24px rgba(1, 234, 107, 0.1);
}
.blog-img {
	aspect-ratio: 16/9;
	overflow: hidden;
	position: relative;
}
.blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s ease;
}
.blog-card:hover .blog-img img {
	transform: scale(1.05);
}
.blog-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.08), transparent 50%);
}
.blog-body {
	padding: 20px;
}
.blog-date {
	font-size: 0.75rem;
	color: var(--g400);
	font-weight: 500;
	margin-bottom: 8px;
}
.blog-body h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.3;
}
.blog-body p {
	font-size: 0.8rem;
	color: var(--g300);
	font-weight: 300;
	line-height: 1.5;
}
.blog-src {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 10px;
}

/* ===== PARTNERS ===== */
.partners-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 40px;
	margin-top: 40px;
	opacity: 0.4;
}
.partners-row span {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--g300);
}

/* ===== TESTIMONIAL ===== */
.testimonial {
	/* max-width: 700px; */
	margin: 48px auto 0;
	padding: 40px 32px;
	border-radius: var(--radius-xl);
	text-align: center;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.07), transparent 60%);
	border: 1px solid rgba(1, 234, 107, 0.1);
	position: relative;
}
.testimonial::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 24px;
	font-size: 5rem;
	line-height: 1;
	color: rgba(1, 234, 107, 0.15);
	font-weight: 800;
}
.testimonial p {
	font-size: 1.125rem;
	font-weight: 300;
	font-style: italic;
	color: var(--g200);
	margin-bottom: 16px;
	line-height: 1.6;
}
.testimonial-author {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--green);
}
.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}
.testimonials-grid .testimonial {
	margin: 0;
	text-align: left;
}
.testimonials-grid .testimonial p {
	font-size: 1rem;
}
.testimonial-author-name {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--green);
}
.testimonial-author-role {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--g300);
	margin-top: 2px;
}

/* ===== CTA ===== */
.cta-box {
	/* max-width: 800px; */
	margin: 0 auto;
	padding: 80px 40px;
	border-radius: var(--radius-xl);
	text-align: center;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.08), transparent 50%);
	border: 1px solid rgba(1, 234, 107, 0.12);
}
.cta-box h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 16px;
}
.cta-box p {
	color: var(--g300);
	margin-bottom: 32px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.cta-email {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	font-weight: 500;
	margin-top: 20px;
	transition: opacity 0.3s;
}
.cta-email:hover {
	opacity: 0.8;
}

/* ===== CONTACT FORM ===== */
.bg-contact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1rem;
	background-image: url("../img/sprites/sprite-c-fill.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.05;
	z-index: -1;
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 48px;
}
.contact-info h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 12px;
}
.contact-info p {
	color: var(--g300);
	font-weight: 300;
	margin-bottom: 24px;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.9rem;
}
.contact-item i {
	color: var(--green);
	font-size: 1.25rem;
}
.form-group {
	margin-bottom: 16px;
}
.form-group label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 6px;
	color: var(--g200);
}
.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-size: 0.9rem;
	transition: border 0.3s;
	outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--green);
}
.form-group textarea {
	height: 120px;
	resize: vertical;
}
.form-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 8px;
}
.form-check input {
	width: auto;
	margin-top: 3px;
	accent-color: var(--green);
}
.form-check label {
	font-size: 0.8rem;
	color: var(--g300);
	font-weight: 300;
	cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
	border-top: 1px solid var(--border-dark);
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(16px);
	position: relative;
	z-index: 1;
}
.footer-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 56px 24px 40px;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
}
.footer-brand .logo-fallback {
	font-size: 16px;
}
.footer-brand p {
	color: var(--g300);
	font-weight: 300;
	font-size: 0.85rem;
	margin-top: 14px;
	max-width: 280px;
	line-height: 1.7;
}
.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--g300);
	transition:
		border-color var(--tf),
		color var(--tf),
		background var(--tf);
}
.footer-social a:hover {
	border-color: var(--green);
	color: #000;
	background: var(--green);
}

.footer-col h5 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--g200);
	margin-bottom: 16px;
}
.footer-col h5.mt {
	margin-top: 24px;
}
.footer-col a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--g400);
	margin-bottom: 10px;
	transition: color var(--tf);
}
.footer-col a:hover {
	color: var(--green);
}
.footer-social .icon-svg {
	width: 16px;
	height: 16px;
	color: currentColor;
}
.footer-col a .icon-svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	line-height: 1;
	color: currentColor;
}

.icon-svg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.icon-svg svg {
	width: 100%;
	height: 100%;
	display: block;
	fill: currentColor;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 24px;
	border-top: 1px solid var(--border-dark);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.footer-tag {
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 11px;
	color: var(--g400);
}
.footer-tag span {
	color: var(--green);
}
.footer-copy {
	font-size: 12px;
	color: var(--g400);
}
.footer-bottom-links {
	display: flex;
	gap: 20px;
}
.footer-bottom-links a {
	font-size: 12px;
	color: var(--g400);
	transition: color var(--tf);
}
.footer-bottom-links a:hover {
	color: var(--green);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.footer-brand {
		justify-content: center;
		grid-column: 1 / -1;
	}
	.footer-social {
		justify-content: center;
	}
	.footer-brand p {
		margin: auto;
		text-align: center;
	}
	.footer-social .icon-svg {
		width: 24px;
		height: 24px;
	}
	footer .logo {
		justify-content: center;
	}
}

@media (max-width: 900px) {
	.page-home .hero {
		grid-template-columns: 1fr;
		padding-top: 100px;
		gap: 32px;
		min-height: auto;
	}
	.page-home .hero-visual {
		order: -1;
	}
	.page-home .hero-img-wrap {
		max-width: 100%;
	}
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.stats-row {
		grid-template-columns: repeat(2, 1fr);
	}
	.process-grid {
		grid-template-columns: 1fr 1fr;
	}
	.process-arrow {
		display: none;
	}
	.solutions-grid {
		grid-template-columns: 1fr;
	}
	.why-grid {
		grid-template-columns: 1fr 1fr;
	}
	.cases-grid {
		grid-template-columns: 1fr;
	}
	.case-card {
		grid-template-columns: 1fr;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
	.header {
		left: 0;
		right: 0;
		top: 0;
		border-radius: 0;
		border-left: none;
		border-right: none;
		max-width: 100%;
	}
	.header .btn-p {
		display: none;
	}
	.nav-links {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.75);
		backdrop-filter: blur(40px);
		-webkit-backdrop-filter: blur(40px);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.25rem;
		gap: 32px;
	}
	.nav-links.open {
		display: flex;
	}
	.nav-toggle {
		display: block;
		z-index: 101;
	}
}
@media (max-width: 640px) {
	.footer-main {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 40px 20px 24px;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
	.nav-items {
		display: none;
	}
	.header {
		top: 0;
		left: 0;
		right: 36px;
		padding: 12px;
	}
	.header-inner {
	}
	.footer-bottom {
		justify-content: center;
	}
	.footer-col {
		padding: 28px 20px;
		border-radius: var(--radius-md);
		background: rgba(255, 255, 255, 0.05);
		border: 1px solid rgba(255, 255, 255, 0.08);
		transition: all 0.4s ease;
		text-align: center;
	}
}
@media (max-width: 480px) {
	.stats-row {
		grid-template-columns: 1fr 1fr;
	}
	.process-grid {
		grid-template-columns: 1fr;
	}
	.why-grid {
		grid-template-columns: 1fr;
	}
	.cta-box {
		padding: 40px 24px;
	}
}

/* ===== TIMELINE-SPECIFIC CSS ===== */
html {
	scroll-behavior: smooth;
}
body {
	background: #000;
	color: #fff;
	font-family: "Outfit", system-ui, sans-serif;
	font-weight: 400;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
	cursor: pointer;
}
::selection {
	background: #01ea6b;
	color: #000;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: #000;
}
::-webkit-scrollbar-thumb {
	background: #01ea6b66;
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: #01ea6b;
}

@keyframes blobFloat {
	0% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(40px, -30px) scale(1.06);
	}
	100% {
		transform: translate(-30px, 40px) scale(0.96);
	}
}
@keyframes pulseRing {
	0% {
		box-shadow: 0 0 0 0 rgba(1, 234, 107, 0.55);
	}
	70% {
		box-shadow: 0 0 0 16px rgba(1, 234, 107, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(1, 234, 107, 0);
	}
}
@keyframes spinSlow {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes bounceDown {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0.6;
	}
	50% {
		transform: translateY(10px);
		opacity: 1;
	}
}

/* Reveal on scroll — preserves the side direction */
.reveal {
	opacity: 0;
	transform: translateY(48px);
	transition:
		opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.reveal-left {
	transform: translate(-60px, 32px);
}
.reveal-left.in {
	transform: translate(0, 0);
}
.reveal-right {
	transform: translate(60px, 32px);
}
.reveal-right.in {
	transform: translate(0, 0);
}

.reveal-delay-1 {
	transition-delay: 0.08s;
}
.reveal-delay-2 {
	transition-delay: 0.18s;
}
.reveal-delay-3 {
	transition-delay: 0.28s;
}

/* Dot pulse only when its year section is active — toggled by JS via .active */
.year-dot.active {
	animation: pulseRing 2s ease-out infinite;
}

/* ===== Timeline cards (nossa-jornada.php / timeline.html) ===== */
.timeline-card {
	padding: 24px 28px;
	background: rgba(255,255,255,0.025);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	text-align: left;
}
.timeline-card + .timeline-card {
	margin-top: 16px;
}
.timeline-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #01EA6B;
	text-transform: uppercase;
}
.timeline-kicker::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #01EA6B;
	flex: 0 0 auto;
}
.timeline-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: #fff;
}
.timeline-card strong {
	color: #01EA6B;
	font-weight: 700;
}
.timeline-feature {
	background: linear-gradient(135deg, rgba(1,234,107,0.07), rgba(1,234,107,0.015));
	border-color: rgba(1,234,107,0.22);
	box-shadow: 0 22px 80px rgba(1,234,107,0.06);
}

/* OVERRIDE: padding top para o mega-menu fixo (página Nossa Jornada) */
#hero { padding-top: 160px !important; }

@media (max-width: 768px) {
	.cta-text {
		display: none !important;
	}

	/* TIMELINE wrapper */
	#timeline {
		padding: 20px 16px 60px !important;
	}

	/* Center line + progress + endpoint → ALL on the left */
	#timelineYears > div[aria-hidden="true"]:first-of-type {
		left: 24px !important;
		transform: none !important;
	}
	#progressLine {
		left: 24px !important;
		transform: none !important;
	}
	#lineEndpoint {
		left: 24px !important;
		transform: translate(-50%, 50%) !important;
	}

	/* Year blocks: single column, content pushed to right of line */
	.year-block {
		grid-template-columns: 1fr !important;
		padding: 32px 0 32px 56px !important;
		min-height: auto !important;
	}

	/* Year dot → left */
	.year-dot {
		left: 24px !important;
		top: 52px !important;
		width: 14px !important;
		height: 14px !important;
	}

	/* Reset all child paddings + force left alignment */
	.year-block > div:not(.year-dot) {
		padding: 0 !important;
		align-items: flex-start !important;
		text-align: left !important;
	}
	/* Hide empty placeholder columns */
	.year-block > div:not(.year-dot):empty {
		display: none !important;
	}

	/* Reveal: simplify motion — always from below on mobile */
	.reveal-left,
	.reveal-right {
		transform: translate(0, 28px) !important;
	}
	.reveal-left.in,
	.reveal-right.in {
		transform: translate(0, 0) !important;
	}

	/* Year big number */
	.year-block > div:not(.year-dot) > .reveal:first-child {
		margin-bottom: 18px !important;
		font-size: clamp(2.6rem, 11vw, 3.6rem) !important;
	}

	/* Cards: full width, slightly tighter padding */
	.year-block .reveal[class*="reveal-delay"] {
		max-width: 100% !important;
		width: 100% !important;
	}
	.year-block article {
		padding: 14px 16px !important;
		gap: 14px !important;
	}
	.year-block article h3 {
		font-size: 0.98rem !important;
		line-height: 1.3 !important;
	}
	.year-block article p {
		font-size: 0.78rem !important;
	}
	/* Photo bubble (cards antigos com foto — não se aplica aos .timeline-card novos) */
	.year-block article > div:first-child:not(.timeline-kicker) {
		width: 64px !important;
		height: 64px !important;
		padding: 3px !important;
	}
	.year-block article > div:first-child:not(.timeline-kicker) > div {
		font-size: 7px !important;
	}
	.year-block article span[style*="0.16em"] {
		font-size: 9.5px !important;
	}
	.year-block .timeline-kicker {
		font-size: 9.5px !important;
	}

	/* 2026 finale */
	#y2026 {
		padding: 60px 0 24px !important;
	}
	#y2026 > div.reveal:first-of-type > div:nth-of-type(2) {
		font-size: clamp(4rem, 22vw, 7rem) !important;
	}
	#y2026 > div.reveal:first-of-type p {
		font-size: 1rem !important;
		margin-bottom: 40px !important;
	}
	/* Rebranding card inner padding */
	#y2026 .reveal-delay-1 > div:last-child {
		padding: 36px 22px !important;
		gap: 22px !important;
		border-radius: 22px !important;
	}
	#y2026 img[alt="Datarisk"] {
		height: 36px !important;
	}
	#y2026 img[alt="WeCogno"] {
		height: 48px !important;
	}
	/* Tagline row */
	#y2026 .reveal-delay-2 {
		margin-top: 56px !important;
	}
	#y2026 .reveal-delay-2 > div:last-child {
		gap: 18px !important;
		font-size: 0.85rem !important;
	}

	/* CLOSING CTA */
	#closing-cta {
		padding: 40px 16px 80px !important;
	}
	#closing-cta > .reveal {
		padding: 44px 26px !important;
		border-radius: 22px !important;
	}
	#closing-cta > .reveal > div:last-child {
		grid-template-columns: 1fr !important;
		gap: 24px !important;
	}
	#closing-cta h2 {
		font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
	}
	#closing-cta button {
		padding: 14px 24px !important;
		font-size: 13px !important;
	}

	/* FOOTER */
	footer {
		padding: 24px 20px !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 12px !important;
	}
}

/* ============================================
    TABLET — hide nav-items, side-nav
============================================ */
@media (max-width: 1024px) {
	.nav-items {
		display: none !important;
	}
	.side-nav {
		display: none !important;
	}
}

.wc-section-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 80px;
	position: relative;
	z-index: 2;
}
.wc-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 9999px;
	padding: 6px 14px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.wc-pill.dark {
	background: rgba(1, 234, 107, 0.08);
	border: 1px solid rgba(1, 234, 107, 0.22);
	color: #01ea6b;
}
.wc-pill.light {
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.14);
	color: rgba(0, 0, 0, 0.58);
}
.wc-section-title {
	font-size: clamp(32px, 4vw, 54px);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.025em;
	text-wrap: pretty;
}
.wc-section-copy {
	font-size: 16px;
	font-weight: 300;
	line-height: 1.78;
}
.wc-photo-frame {
	position: relative;
	overflow: hidden;
	min-height: 430px;
	border-radius: 28px;
	background: #0a0a0a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}
.wc-photo-frame img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
	display: block;
	filter: saturate(0.9) contrast(1.05);
}
.wc-photo-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.74) 100%),
		linear-gradient(90deg, rgba(1, 234, 107, 0.18), rgba(0, 0, 0, 0) 48%);
	pointer-events: none;
}
.wc-photo-caption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.wc-photo-caption strong {
	color: #fff;
	font-size: 15px;
	letter-spacing: -0.01em;
}
.wc-photo-caption span {
	color: rgba(255, 255, 255, 0.48);
	font-size: 12px;
	font-weight: 300;
}
.wc-photo-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #01ea6b;
	box-shadow: 0 0 0 8px rgba(1, 234, 107, 0.12);
	flex-shrink: 0;
}
.wc-flow-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 72px;
	align-items: center;
}
.wc-flow-card {
	background: #050505;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.wc-flow-list {
	display: grid;
	gap: 12px;
}
.wc-flow-item {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 16px;
	padding: 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.wc-flow-item.is-active {
	background: rgba(1, 234, 107, 0.11);
	border-color: rgba(1, 234, 107, 0.28);
}
.wc-flow-num {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #01ea6b;
	color: #000;
	font-size: 12px;
	font-weight: 800;
}
.wc-flow-item:not(.is-active) .wc-flow-num {
	background: rgba(1, 234, 107, 0.1);
	color: #01ea6b;
}
.wc-flow-item h4 {
	color: #fff;
	font-size: 15px;
	margin-bottom: 6px;
}
.wc-flow-item p {
	color: rgba(255, 255, 255, 0.42);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.6;
}
.wc-dashboard {
	position: absolute;
	left: 24px;
	right: 24px;
	top: 24px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.74);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 18px;
	padding: 18px;
	backdrop-filter: blur(16px);
}
.wc-dashboard-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.wc-dashboard-row:last-child {
	border-bottom: 0;
}
.wc-dashboard-row b {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
}
.wc-risk {
	color: #01ea6b;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
}
.wc-practice-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 72px;
	align-items: center;
}
.wc-step-stack {
	display: grid;
	gap: 14px;
}
.wc-step-card {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
	padding: 22px;
	border-radius: 18px;
	background: #101010;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.wc-step-card.is-active {
	background: #01ea6b;
	border-color: #01ea6b;
}
.wc-step-card .num {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(1, 234, 107, 0.12);
	color: #01ea6b;
	font-weight: 800;
	font-size: 12px;
}
.wc-step-card.is-active .num {
	background: #000;
	color: #01ea6b;
}
.wc-step-card h3 {
	color: rgba(255, 255, 255, 0.72);
	font-size: 16px;
	margin-bottom: 6px;
}
.wc-step-card p {
	color: rgba(255, 255, 255, 0.34);
	font-size: 13px;
	font-weight: 300;
	line-height: 1.62;
}
.wc-step-card.is-active h3 {
	color: #000;
}
.wc-step-card.is-active p {
	color: rgba(0, 0, 0, 0.58);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-l {
	opacity: 0;
	transform: translateX(-60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-l.visible {
	opacity: 1;
	transform: translateX(0);
}
.reveal-r {
	opacity: 0;
	transform: translateX(60px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-r.visible {
	opacity: 1;
	transform: translateX(0);
}

/* ===== LEGACY FLOATING HEADER ===== */
.wc-header {
	position: fixed;
	top: 16px;
	left: 16px;
	right: 16px;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;
	border-radius: 20px;
	max-width: 1200px;
	margin: 0 auto;
	background: rgba(1, 234, 107, 0.02);
	border: 1px solid rgba(1, 234, 107, 0.06);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: all 0.5s ease;
	font-family: "Gilroy", sans-serif;
}
.wc-header.scrolled {
	background: rgba(0, 0, 0, 0.6);
	border-color: rgba(1, 234, 107, 0.08);
	backdrop-filter: blur(32px);
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.wc-header .logo-area {
	display: flex;
	align-items: center;
	gap: 14px;
}
.wc-header .logo-area img {
	height: 24px;
	width: auto;
}
.wc-header .logo-sep {
	width: 1px;
	height: 16px;
	background: rgba(255, 255, 255, 0.15);
}
.wc-header .logo-product {
	font-size: 13px;
	font-weight: 700;
	color: #01ea6b;
	letter-spacing: 0.02em;
}
.wc-header .nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
}
.wc-header .nav-link {
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	padding: 7px 12px;
	border-radius: 8px;
	transition:
		color 0.15s ease,
		background 0.15s ease;
}
.wc-header .nav-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
}
.wc-header .btn-cta {
	padding: 9px 20px;
	background: #01ea6b;
	color: #000;
	font-family: "Gilroy", sans-serif;
	font-size: 13.5px;
	font-weight: 700;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	transition:
		background 0.15s ease,
		transform 0.15s ease;
	white-space: nowrap;
}
.wc-header .btn-cta:hover {
	background: #00cc5c;
	transform: scale(1.02);
}

.churnai-product-kicker {
	display: none;
}
.churnai-showcase {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl);
	border: 1px solid rgba(1, 234, 107, 0.18);
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.08), rgba(0, 0, 0, 0.04)), #f4f6f8;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
}
.churnai-showcase--dark {
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.1), rgba(255, 255, 255, 0.03)), #080808;
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}
.churnai-showcase-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.churnai-showcase--dark .churnai-showcase-head {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}
.churnai-showcase-title {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--g700);
}
.churnai-showcase--dark .churnai-showcase-title {
	color: rgba(255, 255, 255, 0.62);
}
.churnai-showcase-dots {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.churnai-showcase-dots span {
	width: 7px;
	height: 7px;
	border-radius: 9999px;
	background: rgba(0, 0, 0, 0.18);
	animation: churnaiDotCycle 16s infinite;
}
.churnai-showcase--dark .churnai-showcase-dots span {
	background: rgba(255, 255, 255, 0.22);
}
.churnai-showcase-dots span:nth-child(2) { animation-delay: 4s; }
.churnai-showcase-dots span:nth-child(3) { animation-delay: 8s; }
.churnai-showcase-dots span:nth-child(4) { animation-delay: 12s; }
.churnai-screen-stage {
	position: relative;
	aspect-ratio: 16 / 8.2;
	overflow: hidden;
}
.churnai-screen-shot {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
	opacity: 0;
	transform: scale(1.018);
	animation: churnaiScreenCycle 16s infinite;
}
.churnai-screen-shot:nth-child(2) { animation-delay: 4s; }
.churnai-screen-shot:nth-child(3) { animation-delay: 8s; }
.churnai-screen-shot:nth-child(4) { animation-delay: 12s; }
.page-cliente-cx-sucesso #churnai .narrative-grid {
	grid-template-columns: 0.82fr 1.18fr;
	align-items: center;
}
.page-cliente-cx-sucesso #churnai .churnai-showcase {
	box-shadow: 0 22px 64px rgba(0, 0, 0, 0.16);
}
.churnai-showcase-caption {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: calc(100% - 36px);
	padding: 10px 14px;
	border-radius: var(--radius-full);
	background: rgba(0, 0, 0, 0.78);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.churnai-showcase-caption::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 6px rgba(1, 234, 107, 0.12);
	flex-shrink: 0;
}
@keyframes churnaiScreenCycle {
	0%, 18% { opacity: 1; transform: scale(1); }
	25%, 100% { opacity: 0; transform: scale(1.018); }
}
@keyframes churnaiDotCycle {
	0%, 18% { background: var(--green); transform: scale(1.35); }
	25%, 100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
	.churnai-screen-shot,
	.churnai-showcase-dots span {
		animation: none;
	}
	.churnai-screen-shot:first-child {
		opacity: 1;
		transform: none;
	}
}
@media (max-width: 760px) {
	.churnai-showcase-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
	.churnai-screen-stage {
		aspect-ratio: 4 / 3;
	}
	.churnai-showcase-caption {
		align-items: flex-start;
		border-radius: var(--radius-md);
		font-size: 11px;
		white-space: normal;
	}
}
.wc-flow-item,
.wc-step-card,
[style-hover] {
	transition: all 0.4s ease;
}
.wc-flow-item:hover,
.wc-step-card:hover,
[style-hover]:hover {
	background: rgba(1, 234, 107, 0.04) !important;
	border-color: rgba(1, 234, 107, 0.15) !important;
	transform: translateY(-6px);
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.12);
}
.wc-flow-item,
[style-hover],
.wc-step-card {
	position: relative;
	overflow: hidden;
}
.wc-flow-item::before,
[style-hover]::before,
.wc-step-card::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}
.wc-flow-item:hover::before,
[style-hover]:hover::before,
.wc-step-card:hover::before {
	transform: scaleX(1);
}
#churnForm {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl) !important;
	padding: 32px !important;
}
#churnForm input {
	width: 100%;
	padding: 14px 16px !important;
	border-radius: var(--radius-md) !important;
	background: rgba(255, 255, 255, 0.04) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	font-family: var(--font) !important;
	font-size: 0.9rem !important;
	transition: border 0.3s !important;
	outline: none;
}
#churnForm input:focus {
	border-color: var(--green) !important;
}
#churnForm label {
	font-size: 0.85rem !important;
	font-weight: 500 !important;
	color: var(--g200) !important;
}
#churnForm button[type="submit"],
button[data-goto-contact] {
	transition: all 0.35s ease !important;
}
#churnForm button[type="submit"]:hover,
button[data-goto-contact]:hover {
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.35) !important;
	transform: translateY(-3px) !important;
}
.wc-photo-frame img {
	transition: transform 8s ease;
}
.wc-photo-frame:hover img {
	transform: scale(1.06);
}
.wc-step-card {
	transform: none !important;
	box-shadow: none !important;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		opacity 0.35s ease !important;
}
.wc-step-card:hover {
	transform: none !important;
	box-shadow: none !important;
	background: #101010 !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}
.wc-step-card.is-active,
.wc-step-card.is-active:hover {
	background: var(--green) !important;
	border-color: var(--green) !important;
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.16) !important;
}
.wc-step-card::before {
	display: none !important;
}
.wc-practice-photo {
	opacity: 1;
	transition:
		opacity 0.32s ease,
		transform 8s ease;
}
.wc-practice-photo.is-fading {
	opacity: 0.18;
}
.churnai-contact-section,
#contato {
	background: #000 !important;
	color: #fff !important;
}
.churnai-contact-section::before,
#contato::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 20% 10%,
			rgba(1, 234, 107, 0.12),
			transparent 32%
		),
		radial-gradient(circle at 90% 90%, rgba(0, 246, 226, 0.06), transparent 30%);
	pointer-events: none;
}
.churnai-contact-panel,
#contato > div {
	max-width: 980px !important;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl);
	padding: 56px !important;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}
.churnai-contact-panel h2,
#contato h2 {
	color: #fff !important;
}
.churnai-contact-panel p,
#contato > div > p {
	color: var(--g300) !important;
}
#churnForm input[type="checkbox"] {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	max-width: 16px !important;
	padding: 0 !important;
	margin: 2px 0 0 !important;
	flex: 0 0 16px !important;
	border-radius: 4px !important;
	accent-color: var(--green);
}
.wc-optin-label {
	display: flex !important;
	align-items: flex-start !important;
	gap: 12px !important;
}
.wc-practice-scroll-lock {
	min-height: 400vh !important;
	padding: 0 !important;
	overflow: visible !important;
}
.wc-practice-sticky {
	position: sticky;
	top: 0;
	min-height: 100vh;
	padding: 96px 0;
	display: grid;
	align-items: center;
}
@media (max-width: 900px) {
	.wc-practice-scroll-lock {
		min-height: auto !important;
		padding: 96px 0 !important;
	}
	.wc-practice-sticky {
		position: relative;
		top: auto;
		min-height: auto;
		padding: 0;
	}
}
@media (max-width: 720px) {
	.churnai-contact-panel,
	#contato > div {
		margin: 0 20px !important;
		padding: 28px 18px !important;
	}
	#churnForm {
		padding: 24px !important;
	}
	#churnForm > div:first-child {
		grid-template-columns: 1fr !important;
	}
}

/* FIX: dropdowns simples ancorados no próprio botão.
       Isso evita desalinhamento em visualizadores/iframes que alteram o contexto do viewport. */
.nav-item .dd.dds {
	position: absolute;
	top: calc(100% + 12px);
	left: 0 !important;
	right: auto !important;
	transform: translateY(-8px);
}

.nav-item .dd.dds.open {
	transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.footer-main {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
}
@media (max-width: 640px) {
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		padding: 40px 20px 24px;
	}
	.footer-brand {
		grid-column: 1 / -1;
	}
	.nav-items {
		display: none;
	}
	.header {
		left: 8px;
		right: 8px;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
	* {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* ===== SPRITE DECORATIONS (sd-*) ===== */
.sd {
	position: absolute;
	pointer-events: none;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 0;
}
/* C stroke */
.sd-c-tr {
	top: -80px;
	right: -100px;
	width: 520px;
	height: 520px;
	background-image: url(../img/sprites/sprite-c-stroke.svg);
	opacity: 0.055;
}
.sd-c-bl {
	bottom: -80px;
	left: -100px;
	width: 460px;
	height: 460px;
	background-image: url(../img/sprites/sprite-c-stroke.svg);
	opacity: 0.045;
	transform: rotate(180deg);
}
.sd-c-tl {
	top: -60px;
	left: -80px;
	width: 400px;
	height: 400px;
	background-image: url(../img/sprites/sprite-c-stroke.svg);
	opacity: 0.04;
	transform: rotate(270deg);
}
.sd-c-ctr {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(15deg);
	width: 680px;
	height: 680px;
	background-image: url(../img/sprites/sprite-c-stroke.svg);
	opacity: 0.03;
}
/* C fill */
.sd-cf-br {
	bottom: -50px;
	right: -70px;
	width: 340px;
	height: 340px;
	background-image: url(../img/sprites/sprite-c-fill.svg);
	opacity: 0.035;
}
.sd-cf-tl {
	top: -40px;
	left: -60px;
	width: 300px;
	height: 300px;
	background-image: url(../img/sprites/sprite-c-fill.svg);
	opacity: 0.03;
	transform: rotate(270deg);
}
/* Ribbon stroke */
.sd-r-tl {
	top: -30px;
	left: -80px;
	width: 720px;
	height: 360px;
	background-image: url(../img/sprites/sprite-ribbon-stroke.svg);
	opacity: 0.05;
}
.sd-r-tr {
	top: -30px;
	right: -80px;
	width: 700px;
	height: 350px;
	background-image: url(../img/sprites/sprite-ribbon-stroke.svg);
	opacity: 0.045;
	transform: scaleX(-1);
}
.sd-r-bl {
	bottom: -20px;
	left: -60px;
	width: 640px;
	height: 320px;
	background-image: url(../img/sprites/sprite-ribbon-stroke.svg);
	opacity: 0.04;
}
.sd-r-br {
	bottom: -20px;
	right: -60px;
	width: 640px;
	height: 320px;
	background-image: url(../img/sprites/sprite-ribbon-stroke.svg);
	opacity: 0.04;
	transform: scaleX(-1);
}
.sd-r-mid {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 450px;
	background-image: url(../img/sprites/sprite-ribbon-stroke.svg);
	opacity: 0.035;
}
/* Ribbon fill */
.sd-rf-tl {
	top: -10px;
	left: -80px;
	width: 750px;
	height: 375px;
	background-image: url(../img/sprites/sprite-ribbon-fill.svg);
	opacity: 0.025;
}
/* Vertical */
.sd-v-tr {
	top: -60px;
	right: -80px;
	width: 200px;
	height: 460px;
	background-image: url(../img/sprites/sprite-vertical.svg);
	opacity: 0.055;
}
.sd-v-bl {
	bottom: -60px;
	left: -60px;
	width: 180px;
	height: 420px;
	background-image: url(../img/sprites/sprite-vertical.svg);
	opacity: 0.045;
	transform: rotate(180deg);
}
.sd-v-tl {
	top: -40px;
	left: -60px;
	width: 160px;
	height: 380px;
	background-image: url(../img/sprites/sprite-vertical.svg);
	opacity: 0.05;
	transform: rotate(90deg);
}

/* ===== SPRITES DE FUNDO (::after classes) ===== */
.sprite-bg,
.sprite-bg-c,
.sprite-bg-ribbon {
	overflow: hidden;
}

.sprite-bg-c::after {
	content: "";
	position: absolute;
	bottom: -80px;
	right: -80px;
	width: 480px;
	height: 480px;
	background-image: url(../img/sprites/sprite-c-stroke.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
	opacity: 0.06;
	pointer-events: none;
	z-index: 0;
}
.sprite-bg-ribbon::after {
	content: "";
	position: absolute;
	top: -40px;
	left: -80px;
	width: 700px;
	height: 350px;
	background-image: url(../img/sprites/sprite-ribbon-stroke.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top left;
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
}
.sprite-bg-v::after {
	content: "";
	position: absolute;
	top: -60px;
	right: -100px;
	width: 220px;
	height: 500px;
	background-image: url(../img/sprites/sprite-vertical.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top right;
	opacity: 0.05;
	pointer-events: none;
	z-index: 0;
}

/* ===== QUOTE BREAK (light) ===== */
.quote-break {
	padding: 80px 0;
	background: var(--g100);
	color: var(--g900);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.quote-break::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 400px;
	height: 400px;
	background-image: url(../img/sprites/sprite-c-fill-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.04;
	pointer-events: none;
}
.quote-break-inner {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: center;
}
.quote-break-mark {
	font-size: 120px;
	font-weight: 900;
	line-height: 0.8;
	color: var(--green);
	opacity: 0.5;
	font-family: Georgia, serif;
	user-select: none;
}
.quote-break blockquote {
	font-size: clamp(1.2rem, 2.5vw, 1.75rem);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.5px;
	color: #111;
	margin-bottom: 16px;
}
.quote-break cite {
	font-size: 0.85rem;
	color: var(--g400);
	font-style: normal;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}
.quote-break cite::before {
	content: "";
	display: block;
	width: 28px;
	height: 2px;
	background: var(--green);
}
@media (max-width: 640px) {
	.quote-break-inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.quote-break-mark {
		font-size: 64px;
	}
}

/* ===== CASES DE SUCESSO ===== */
.cases-section {
	background-color: rgba(1, 234, 107, 0.04);
	overflow: hidden;
}
.cases-section::before {
	background: radial-gradient(
		ellipse at 0% 50%,
		rgba(1, 234, 107, 0.06),
		rgba(0, 246, 226, 0.03) 70%,
		transparent 80%
	);
}

.cases-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 48px;
}
.case-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
	text-decoration: none;
	color: inherit;
}
.case-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.18);
	transform: translateY(-4px);
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.1);
}
.case-card.case-full {
	grid-column: 1 / -1;
	grid-template-columns: 340px 1fr;
}
.case-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 28px;
	background: rgba(0, 0, 0, 0.3);
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	gap: 16px;
	overflow: hidden;
}
.case-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse at 50% 0%,
		rgba(1, 234, 107, 0.12),
		transparent 70%
	);
	pointer-events: none;
}
.case-visual-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(1, 234, 107, 0.1);
	border: 1px solid rgba(1, 234, 107, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--green);
	position: relative;
	z-index: 1;
}
.case-stat {
	text-align: center;
	position: relative;
	z-index: 1;
}
.case-stat-num {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	letter-spacing: -2px;
	color: var(--green);
	line-height: 1;
}
.case-stat-lbl {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--g300);
	margin-top: 4px;
}
.case-body {
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.case-tag {
	display: inline-block;
	width: fit-content;
	padding: 3px 12px;
	border-radius: var(--radius-full);
	background: rgba(1, 234, 107, 0.1);
	color: var(--green);
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
}
.case-body h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
	line-height: 1.35;
	letter-spacing: -0.3px;
}
.case-body p {
	font-size: 0.85rem;
	color: var(--g300);
	font-weight: 300;
	margin-bottom: 20px;
	line-height: 1.65;
	flex: 1;
}
.case-results {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.case-result {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--g200);
}
.case-result i {
	color: var(--green);
	font-size: 14px;
}

.case-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 20px;
	padding: 8px 18px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(1, 234, 107, 0.3);
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition:
		background var(--tf),
		color var(--tf),
		border-color var(--tf),
		transform var(--tf);
	width: fit-content;
}
.case-link:hover {
	background: var(--green);
	border-color: var(--green);
	color: #000;
	transform: scale(1.02);
}
.case-link i {
	font-size: 14px;
}

/* ===== CASES v2 — padrão Dor / Solução / Resultado (escopado em .cases-grid-v2 para não colidir com o padrão antigo de case-card usado em home.php e demais páginas) ===== */
.cases-grid-v2 .case-card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.4s ease;
	text-decoration: none;
	color: inherit;
}
.cases-grid-v2 .case-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.18);
	transform: translateY(-4px);
	box-shadow: 0 0 32px rgba(1, 234, 107, 0.1);
}
.case-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 24px 26px 0;
}
.case-head-icon {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: rgba(1, 234, 107, 0.1);
	border: 1px solid rgba(1, 234, 107, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	color: var(--green);
}
.case-head-text { min-width: 0; }
.cases-grid-v2 .case-tag {
	display: inline-block;
	width: fit-content;
	padding: 2px 10px;
	border-radius: var(--radius-full);
	background: rgba(1, 234, 107, 0.1);
	color: var(--green);
	font-size: 0.64rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 8px;
}
.case-head-text h3 {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: -0.2px;
}
.cases-grid-v2 .case-body {
	padding: 18px 26px 6px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}
.case-row { display: flex; flex-direction: column; gap: 3px; }
.case-row-label {
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--g400);
}
.case-row p {
	font-size: 0.83rem;
	color: var(--g300);
	font-weight: 300;
	line-height: 1.55;
	margin: 0;
}
.cases-grid-v2 .case-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 14px 26px 22px;
	padding: 8px 18px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(1, 234, 107, 0.3);
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition:
		background var(--tf),
		color var(--tf),
		border-color var(--tf),
		transform var(--tf);
	width: fit-content;
}
.cases-grid-v2 .case-link:hover {
	background: var(--green);
	border-color: var(--green);
	color: #000;
	transform: scale(1.02);
}
.cases-grid-v2 .case-link i { font-size: 14px; }
.case-result-band {
	margin-top: auto;
	padding: 22px 26px 26px;
	background: linear-gradient(180deg, rgba(1, 234, 107, 0.1), rgba(1, 234, 107, 0.03));
	border-top: 1px solid rgba(1, 234, 107, 0.16);
}
.case-result-tag {
	display: inline-block;
	padding: 3px 11px;
	border-radius: 4px;
	background: var(--green);
	color: #04150c;
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 16px;
}
.case-result-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.case-result-item { min-width: 0; }
.case-result-num {
	font-size: clamp(1.3rem, 2vw, 1.65rem);
	font-weight: 900;
	letter-spacing: -0.5px;
	color: var(--green);
	line-height: 1.15;
	margin-bottom: 4px;
}
.case-result-cap {
	font-size: 0.76rem;
	color: var(--g300);
	font-weight: 400;
	line-height: 1.45;
}
@media (max-width: 900px) {
	.cases-grid-v2 { grid-template-columns: 1fr; }
	.case-result-grid { grid-template-columns: 1fr; gap: 14px; }
}

.cases-testimonial {
	margin: 48px 0 0;
	padding: 40px 40px 40px 60px;
	border-radius: var(--radius-xl);
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.07), transparent 60%);
	border: 1px solid rgba(1, 234, 107, 0.1);
	position: relative;
}
.cases-testimonial::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 24px;
	font-size: 5rem;
	line-height: 1;
	color: rgba(1, 234, 107, 0.2);
	font-weight: 900;
}
.cases-testimonial p {
	font-size: 1.05rem;
	font-weight: 300;
	font-style: italic;
	color: var(--g200);
	margin-bottom: 16px;
	line-height: 1.65;
}
.cases-testimonial-author {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--green);
}

@media (max-width: 900px) {
	.cases-grid {
		grid-template-columns: 1fr;
	}
	.case-card.case-full {
		grid-template-columns: 1fr;
	}
	.case-card {
		grid-template-columns: 1fr;
	}
	.case-visual {
		padding: 28px;
		flex-direction: row;
		justify-content: flex-start;
		gap: 20px;
	}
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--radius-full);
	font-family: var(--font);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	border: none;
	transition: all 0.35s ease;
}
.btn-p {
	background: var(--green);
	color: #000;
}
.btn-p:hover {
	box-shadow: var(--shadow-green);
	transform: translateY(-3px);
}
.btn-o {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition:
		background var(--tf),
		color var(--tf),
		border-color var(--tf),
		transform var(--tf);
}
.btn-o:hover {
	background: var(--green);
	border-color: var(--green);
	color: #000;
	transform: scale(1.02);
}
.btn-dark {
	background: transparent;
	color: var(--g900);
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.btn-dark:hover {
	background: rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

/* ===== EYEBROW ===== */
.eyebrow-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: var(--radius-full);
	background: var(--green-08);
	border: 1px solid rgba(1, 234, 107, 0.2);
	font-size: 11px;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.eyebrow-pill.dark {
	background: rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.15);
	color: var(--g700);
}
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--green);
	margin-bottom: 16px;
}
.section-label.dark {
	color: var(--g700);
}
.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.6rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.8px;
	margin-bottom: 12px;
}
.section-sub {
	font-size: 1rem;
	color: var(--g300);
	max-width: 580px;
	font-weight: 300;
}
.ta-c {
	text-align: center;
}
.mx-a {
	margin-left: auto;
	margin-right: auto;
}

/* ===== HERO ===== */
.hero {
	overflow: hidden;
	padding: 160px 0 80px;
	position: relative;
	z-index: 1;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 14px;
	border-radius: var(--radius-full);
	background: var(--green-08);
	border: 1px solid rgba(1, 234, 107, 0.2);
	font-size: 11px;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 24px;
}
.hero h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -1.5px;
	margin-bottom: 24px;
}
.hero h1 .hl {
	background: linear-gradient(135deg, var(--green), #6effb5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero-lead {
	font-size: 1.1rem;
	color: var(--g300);
	font-weight: 300;
	line-height: 1.75;
	margin-bottom: 36px;
}
.hero-ctas {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.hero-strip {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	padding-top: 32px;
	border-top: 1px solid var(--border-dark);
}
.hero-strip-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	color: var(--g300);
	font-weight: 500;
}
.hero-strip-item i {
	color: var(--green);
	font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
	position: relative;
}
.hero-img-wrap {
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--border-dark);
	position: relative;
	aspect-ratio: 4/3;
}
.hero-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero-img-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.15), transparent 50%);
	pointer-events: none;
}
.hero-img-glow {
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(1, 234, 107, 0.15);
	filter: blur(60px);
	bottom: -60px;
	right: -60px;
	pointer-events: none;
	animation: blobFloat 8s ease-in-out infinite alternate;
}
.hero-tag {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(16px);
	border: 1px solid var(--border-dark);
	border-radius: var(--radius-md);
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hero-tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--green);
	animation: pulse 2s ease infinite;
	flex-shrink: 0;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.3);
	}
}
.hero-tag span {
	font-size: 12px;
	font-weight: 600;
	color: var(--g200);
}

/* ===== LOGO STRIP (tech partners) ===== */
.logo-strip {
	padding: 32px 0;
	border-top: 1px solid var(--border-dark);
	border-bottom: 1px solid var(--border-dark);
	background: rgba(255, 255, 255, 0.01);
	position: relative;
	z-index: 1;
}
.logo-strip-label {
	font-size: 11px;
	font-weight: 600;
	color: var(--g400);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 20px;
}
.logo-strip-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.tech-logo-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 0.5;
	transition: opacity var(--tb);
}
.tech-logo-item:hover {
	opacity: 1;
}
.tech-logo-item img {
	height: 28px;
	width: auto;
	filter: brightness(0) invert(1);
	object-fit: contain;
}
.tech-logo-item span {
	font-size: 10px;
	font-weight: 600;
	color: var(--g400);
	letter-spacing: 0.05em;
}

/* ===== STATEMENT SECTION (bg-green) ===== */
.statement-section {
	overflow: hidden;
	padding: 80px 0;
	background: var(--green);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.statement-section::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	pointer-events: none;
}
.statement-inner {
	max-width: 860px;
}
.statement-label {
	font-size: 11px;
	font-weight: 700;
	color: rgba(0, 0, 0, 0.5);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.statement-h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -1px;
	color: var(--g900);
	margin-bottom: 24px;
}
.statement-body {
	font-size: 1.1rem;
	color: rgba(0, 0, 0, 0.65);
	font-weight: 400;
	line-height: 1.75;
	max-width: 680px;
}
.statement-body strong {
	color: var(--g900);
}

/* ===== NARRATIVE SPLIT ===== */
.narrative-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.narrative-copy p {
	font-size: 1rem;
	color: var(--g300);
	line-height: 1.8;
	margin-bottom: 20px;
	font-weight: 300;
}
.narrative-copy p strong {
	color: #fff;
	font-weight: 600;
}
.narrative-copy p:last-child {
	margin-bottom: 0;
}
.narrative-accent {
	font-size: 1.2rem;
	color: #fff;
	font-weight: 500;
	line-height: 1.65;
	border-left: 3px solid var(--green);
	padding-left: 24px;
	margin-top: 32px;
}
.narrative-visual {
	position: relative;
}
.narrative-img-wrap {
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--border-dark);
	position: relative;
	aspect-ratio: 4/5;
}
.narrative-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 8s ease;
}
.narrative-img-wrap:hover img {
	transform: scale(1.04);
}
.narrative-img-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
	pointer-events: none;
}
.narrative-chip {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(1, 234, 107, 0.2);
	border-radius: var(--radius-md);
	padding: 16px 20px;
}
.narrative-chip .label {
	font-size: 10px;
	font-weight: 700;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.narrative-chip .val {
	font-size: 13px;
	color: var(--g200);
	font-weight: 400;
	line-height: 1.5;
}

/* ===== CAPABILITIES ===== */
.cap-top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}
.cap-featured {
	background: rgba(1, 234, 107, 0.05);
	border: 1px solid rgba(1, 234, 107, 0.15);
	border-radius: var(--radius-xl);
	padding: 40px;
	display: flex;
	gap: 32px;
	align-items: flex-start;
	transition: all 0.4s ease;
}
.cap-featured:hover {
	background: rgba(1, 234, 107, 0.08);
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.cap-featured-icon {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-lg);
	background: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.cap-featured-icon i {
	font-size: 1.5rem;
	color: #000;
}
.cap-featured h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.cap-featured p {
	font-size: 0.9rem;
	color: var(--g300);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 14px;
}
.cap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.cap-card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border-dark);
	border-radius: var(--radius-lg);
	padding: 28px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
}
.cap-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s ease;
}
.cap-card:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.cap-card:hover::before {
	transform: scaleX(1);
}
.cap-card-icon {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-md);
	background: var(--green-08);
	border: 1px solid rgba(1, 234, 107, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.cap-card-icon i {
	font-size: 1.1rem;
	color: var(--green);
}
.cap-card h3 {
	font-size: 0.975rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.cap-card p {
	font-size: 0.85rem;
	color: var(--g300);
	line-height: 1.7;
	font-weight: 300;
	margin-bottom: 14px;
}
.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tag {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 3px 10px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-dark);
	color: var(--g400);
}

/* ===== STAT BREAK (bg-gray) ===== */
.dt-eng .stat-break {
	padding: 80px 0;
	background: var(--g100);
	color: var(--g900);
	position: relative;
	z-index: 1;
}
.dt-eng .stat-break-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.dt-eng .stat-break h2 {
	font-size: clamp(1.8rem, 3.5vw, 3rem);
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.12;
	margin-bottom: 16px;
}
.dt-eng .stat-break h2 span {
	color: #000;
}
.dt-eng .stat-break p {
	font-size: 1rem;
	color: var(--g600);
	font-weight: 300;
	line-height: 1.75;
}
.dt-eng .stat-numbers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.dt-eng .stat-box {
	padding: 24px;
	border-radius: var(--radius-lg);
	background: rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
}
.dt-eng .stat-box:hover {
	background: rgba(1, 234, 107, 0.15);
	border-color: rgba(1, 234, 107, 0.3);
	transform: translateY(-4px);
}
.dt-eng .stat-num {
	font-size: clamp(2rem, 3vw, 2.5rem);
	font-weight: 800;
	color: #000;
	line-height: 1;
	margin-bottom: 6px;
}
.dt-eng .stat-lbl {
	font-size: 0.8rem;
	color: var(--g600);
	font-weight: 500;
}

/* ===== METHODOLOGY ===== */
.method-section {
	background: var(--g900);
}
.method-section::before {
	background: radial-gradient(
		ellipse at 50% 100%,
		rgba(1, 234, 107, 0.06),
		transparent 70%
	);
}

.dt-eng .process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.dt-eng .process-step {
	text-align: center;
	padding: 36px 20px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-dark);
	transition: all 0.4s ease;
}
.dt-eng .process-step:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.15);
	transform: translateY(-6px);
	box-shadow: 0 0 24px rgba(1, 234, 107, 0.1);
}
.dt-eng .process-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(1, 234, 107, 0.1);
	border: 1px solid rgba(1, 234, 107, 0.2);
	color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 1.2rem;
	margin: 0 auto 20px;
}
.dt-eng .process-step h4 {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.dt-eng .process-step p {
	font-size: 0.875rem;
	color: var(--g300);
	font-weight: 300;
	line-height: 1.65;
}

/* ===== PROBLEMS ===== */
.problems-section {
	background-color: var(--g100);
	overflow: hidden;
}
.problems-section::before {
	display: none;
}
.problems-section .section-label {
	color: #1a7a3f;
	background: rgba(1, 234, 107, 0.12);
	border-color: rgba(1, 234, 107, 0.25);
}
.problems-section .section-title {
	color: var(--g900);
}
.problems-section .section-sub {
	color: var(--g700);
}
.problems-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.prob-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius-lg);
	padding: 28px 28px 24px;
	transition:
		border-color var(--tb),
		background var(--tb),
		box-shadow var(--tb);
}
.prob-card:hover {
	background: #fff;
	border-color: rgba(1, 234, 107, 0.35);
	box-shadow: 0 4px 24px rgba(1, 234, 107, 0.08);
}
.prob-card .quote {
	font-size: 0.925rem;
	color: #3a3a3a;
	line-height: 1.65;
	margin-bottom: 18px;
	font-style: italic;
	padding-left: 16px;
	border-left: 2px solid rgba(1, 234, 107, 0.5);
}
.prob-card .solution {
	font-size: 0.875rem;
	color: #1a7a3f;
	font-weight: 600;
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.prob-card .solution i {
	flex-shrink: 0;
	margin-top: 2px;
	font-size: 1rem;
	color: var(--green);
}

/* ===== STACK / LOGOS ===== */
.stack-section {
	background: var(--g900);
}
.stack-section::before {
	background: radial-gradient(
		ellipse at 100% 0%,
		rgba(1, 234, 107, 0.06),
		transparent 70%
	);
}
.stack-tabs-nav {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.stack-tab {
	padding: 8px 18px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--border-dark);
	font-size: 13px;
	font-weight: 600;
	color: var(--g300);
	cursor: pointer;
	transition: all var(--tf);
}
.stack-tab.active,
.stack-tab:hover {
	background: var(--green-10);
	border-color: rgba(1, 234, 107, 0.3);
	color: var(--green);
}
.stack-logos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.stack-logo-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border-dark);
	border-radius: var(--radius-lg);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	transition: all 0.4s ease;
	cursor: default;
}
.stack-logo-card:hover {
	background: rgba(1, 234, 107, 0.05);
	border-color: rgba(1, 234, 107, 0.2);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.tech-img {
	height: 40px;
	width: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.75;
	transition: opacity var(--tb);
}
.stack-logo-card:hover .tech-img {
	opacity: 1;
}
.tech-badge {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: var(--radius-md);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.3px;
	white-space: nowrap;
}
.stack-tool-name {
	font-size: 12px;
	font-weight: 600;
	color: var(--g300);
	text-align: center;
}
.stack-tool-desc {
	font-size: 11px;
	color: var(--g400);
	text-align: center;
	line-height: 1.4;
}

/* ===== TEAM / HUMANIZATION ===== */
.team-section {
	background-color: rgba(1, 234, 107, 0.03);
}
.team-section::before {
	background: radial-gradient(
		ellipse at 50% 100%,
		rgba(1, 234, 107, 0.06),
		transparent 70%
	);
}
.team-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.team-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	position: relative;
}
.team-photo-main {
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--border-dark);
	grid-column: 1 / -1;
	aspect-ratio: 16/9;
}
.team-photo-main img,
.team-photo-sm img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s ease;
}
.team-photo-main:hover img,
.team-photo-sm:hover img {
	transform: scale(1.04);
}
.team-photo-main::after,
.team-photo-sm::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(1, 234, 107, 0.1), transparent 60%);
	pointer-events: none;
}
.team-photo-sm {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-dark);
	position: relative;
	aspect-ratio: 4/3;
}
.team-copy {
}
.team-copy h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.8px;
	line-height: 1.15;
	margin-bottom: 20px;
}
.team-copy p {
	font-size: 0.95rem;
	color: var(--g300);
	line-height: 1.8;
	margin-bottom: 16px;
	font-weight: 300;
}
.team-copy p strong {
	color: #fff;
}
.team-copy p:last-of-type {
	margin-bottom: 0;
}
.team-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 28px;
	min-width: 0;
}
.team-feat {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.875rem;
	color: var(--g200);
	transition: color 0.25s ease, transform 0.25s ease;
	min-width: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}
@media (max-width: 640px) {
	.team-features { grid-template-columns: 1fr !important; }
}
.team-feat:hover {
	color: #fff;
	transform: translateY(-2px);
}
.team-feat i {
	color: var(--green);
	font-size: 1rem;
	flex-shrink: 0;
}
.team-quote {
	margin-top: 32px;
	padding: 24px;
	border-radius: var(--radius-lg);
	background: rgba(1, 234, 107, 0.05);
	border: 1px solid rgba(1, 234, 107, 0.12);
}
.team-quote .qtext {
	font-size: 0.9rem;
	color: var(--g200);
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 12px;
}
.team-quote .qauthor {
	font-size: 12px;
	font-weight: 600;
	color: var(--green);
}

/* ===== DIFFERENTIALS ===== */
/* ===== DIFERENCIAIS: PIPELINE FLOW ===== */
.diff-pipeline {
	display: grid;
	grid-template-columns: 1fr 64px 1fr;
	grid-template-rows: auto 56px auto;
	margin-top: 48px;
	align-items: stretch;
}
.diff-node {
	padding: 32px 28px;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}
.diff-node:hover {
	background: rgba(1, 234, 107, 0.04);
	border-color: rgba(1, 234, 107, 0.2);
	transform: translateY(-4px);
}
.diff-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(1, 234, 107, 0.08);
	border: 1px solid rgba(1, 234, 107, 0.2);
	color: var(--green);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 18px;
}
.diff-node h3 {
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 10px;
	letter-spacing: -0.3px;
	line-height: 1.3;
}
.diff-node p {
	font-size: 0.875rem;
	color: var(--g300);
	font-weight: 300;
	line-height: 1.75;
	margin: 0;
}
/* Connectors */
.diff-conn-h {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.diff-conn-h::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 6px;
	right: 6px;
	border-top: 1.5px dashed rgba(1, 234, 107, 0.35);
}
.diff-conn-h::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.diff-conn-h.arrow-right::after {
	right: 2px;
	border-left: 7px solid rgba(1, 234, 107, 0.55);
}
.diff-conn-h.arrow-left::after {
	left: 2px;
	border-right: 7px solid rgba(1, 234, 107, 0.55);
}
.diff-conn-spacer {
	grid-column: 1 / 3;
}
.diff-conn-v {
	grid-column: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.diff-conn-v::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 6px;
	bottom: 6px;
	border-left: 1.5px dashed rgba(1, 234, 107, 0.35);
}
.diff-conn-v::after {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 50%;
	transform: translateX(-50%);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 7px solid rgba(1, 234, 107, 0.55);
}
@media (max-width: 768px) {
	.diff-pipeline {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.diff-conn-h,
	.diff-conn-v,
	.diff-conn-spacer {
		display: none;
	}
	.diff-node {
		margin-bottom: 16px;
	}
}

/* ===== AI CONNECTION ===== */
.ai-section {
	overflow: hidden;
	background: var(--green);
	color: var(--g900);
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.ai-section::before {
	content: "";
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 450px;
	height: 450px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.06);
	pointer-events: none;
}
.ai-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.ai-copy h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	letter-spacing: -0.8px;
	line-height: 1.12;
	margin-bottom: 20px;
	color: var(--g900);
}
.ai-copy p {
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.65);
	line-height: 1.75;
	margin-bottom: 16px;
	font-weight: 400;
}
.ai-points {
	list-style: none;
}
.ai-points li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	color: rgba(0, 0, 0, 0.75);
	line-height: 1.6;
	margin-bottom: 12px;
	font-weight: 500;
}
.ai-points li i {
	color: rgba(0, 0, 0, 0.5);
	margin-top: 2px;
	flex-shrink: 0;
}
.ai-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 28px;
	font-size: 14px;
	font-weight: 700;
	color: var(--g900);
	background: rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 12px 24px;
	border-radius: var(--radius-full);
	transition:
		background var(--tf),
		color var(--tf),
		border-color var(--tf),
		transform var(--tf);
}
.ai-cta:hover {
	background: #000;
	border-color: #000;
	color: var(--green);
	transform: scale(1.02);
}

/* ===== FAQ ===== */
.faq-section {
	background: var(--g900);
}
.faq-section::before {
	background: radial-gradient(
		ellipse at 50% 0%,
		rgba(1, 234, 107, 0.05),
		transparent 60%
	);
}
.faq-list {
	max-width: 780px;
}
.faq-item {
	border-bottom: 1px solid var(--border-dark);
}
.faq-item:first-child {
	border-top: 1px solid var(--border-dark);
}
.faq-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
	background: none;
	border: none;
	cursor: pointer;
	color: #fff;
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	transition: color var(--tf);
}
.faq-btn:hover {
	color: var(--green);
}
.faq-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: var(--green);
	transition: transform var(--tb);
}
.faq-item.open .faq-icon {
	transform: rotate(45deg);
}
.faq-answer {
	font-size: 0.9rem;
	color: var(--g300);
	line-height: 1.8;
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.4s ease;
	font-weight: 300;
}
.faq-item.open .faq-answer {
	max-height: 400px;
	padding-bottom: 22px;
}

/* ===== CTA FINAL ===== */
.cta-section {
	overflow: hidden;
	padding: 120px 0;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.cta-section::before {
	content: "";
	position: absolute;
	bottom: -100px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: rgba(1, 234, 107, 0.05);
	filter: blur(80px);
	pointer-events: none;
}
.cta-section h2 {
	font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	font-weight: 800;
	letter-spacing: -1px;
	line-height: 1.1;
	margin-bottom: 20px;
}
.cta-section h2 .hl {
	background: linear-gradient(135deg, var(--green), #6effb5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.cta-section .sub {
	font-size: 1.05rem;
	color: var(--g300);
	max-width: 520px;
	margin: 0 auto 40px;
	font-weight: 300;
	line-height: 1.7;
}
.cta-microcopy {
	font-size: 13px;
	color: var(--g400);
	margin-top: 20px;
	line-height: 1.6;
}

/* ===== SECTION BACKGROUNDS ===== */
.section {
	padding: 100px 0;
	position: relative;
	z-index: 1;
}
.section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}
.bg-tinted {
	background-color: rgba(1, 234, 107, 0.04);
}
.bg-tinted::before {
	background: radial-gradient(
		ellipse at 100% 50%,
		rgba(0, 246, 226, 0.08),
		transparent 70%
	);
}
.bg-dark {
	background-color: var(--g900);
}
.bg-dark::before {
	background: radial-gradient(
		ellipse at 0% 50%,
		rgba(1, 234, 107, 0.08),
		transparent 70%
	);
}
.bg-green {
	background-color: var(--green);
	color: var(--g900);
}
.bg-gray {
	background-color: var(--g100);
	color: var(--g900);
}
.sprite-stripe::before {
	background-image: url(../img/sprites/sprite-ribbon-fill.svg);
	background-position: top 0 right 0;
	background-repeat: no-repeat;
	background-size: 800px;
	opacity: 0.04;
}

/* ===================================================================
   BLOCO ADICIONADO NA MIGRAÇÃO PHP (auditoria automática)
   Contém: (1) variáveis :root que faltavam, (2) regras CSS usadas
   pelas páginas abaixo que ainda não existiam neste arquivo.
   Nada foi removido ou sobrescrito — apenas adicionado.
   Selectors que já existiam com regra ligeiramente diferente (ex.:
   ordem de propriedades, scrollbar 8px vs 10px) NÃO foram tocados
   e devem ser revisados manualmente se necessário.
   =================================================================== */

:root {
  --green-20: #01ea6b33;
  --green-08: #01ea6b14;
  --shadow-green: 0 0 32px rgba(1,234,107,0.35);
  --max-w: 1200px;
  --g950: #050505;
  --g500: #3f4144;
  --border-light: rgba(0,0,0,0.08);
}


/* ---- "AI Agents" (ai-agents.html) ---- */
.stat-break { padding: 80px 0; background: var(--g100); color: var(--g900); position: relative; z-index: 1; }
.stat-break-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stat-break h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.stat-break h2 span { color: #000; }
.stat-break p { font-size: 1rem; color: var(--g600); font-weight: 300; line-height: 1.75; }
.stat-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box { padding: 24px; border-radius: var(--radius-lg); background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; }
.stat-box:hover { background: rgba(1,234,107,0.15); border-color: rgba(1,234,107,0.3); transform: translateY(-4px); }
.demo-section { background:
        radial-gradient(ellipse at 88% 14%, rgba(1,234,107,0.14), transparent 46%),
        #f4f6f4;
      color: var(--g900);
      overflow: hidden; }
.demo-grid { display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 56px;
      align-items: center; }
.demo-copy p { color: var(--g600);
      font-weight: 300;
      line-height: 1.75;
      margin-bottom: 18px; }
.demo-list { display: grid;
      gap: 10px;
      margin-top: 28px; }
.demo-list span { display: flex;
      align-items: center;
      gap: 10px;
      color: var(--g700);
      font-size: 0.92rem;
      font-weight: 500; }
.demo-list i { color: var(--green); }
.demo-player { position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.08);
      background: #fff;
      box-shadow: 0 24px 70px rgba(0,0,0,0.12); }
.demo-player::before { content: '';
      display: block;
      aspect-ratio: 16 / 9; }
.demo-player video,
    .demo-placeholder { position: absolute;
      inset: 0;
      width: 100%;
      height: 100%; }
.demo-player video { object-fit: cover;
      background: #050807;
      z-index: 1; }
.demo-placeholder { display: grid;
      place-items: center;
      pointer-events: none;
      z-index: 0;
      background:
        linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42)),
        url('img/fotos/photo-narrative.png') center/cover no-repeat; }
.demo-play { width: 72px;
      height: 72px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #000;
      background: var(--green);
      box-shadow: var(--shadow-green);
      font-size: 1.55rem; }
.demo-caption { position: absolute;
      z-index: 2;
      left: 18px;
      right: 18px;
      bottom: 18px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(0,0,0,0.08);
      backdrop-filter: blur(14px);
      color: var(--g600);
      font-size: 0.82rem;
      font-weight: 600; }
.demo-caption strong { color: var(--g900); }
.demo-section .section-label { color: #087667; }
.demo-section .section-title { color: var(--g900); }
.metric-board { margin-top: 48px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: stretch; }
.metric-panel { border-radius: var(--radius-xl);
      border: 1px solid rgba(1,234,107,0.16);
      background:
        linear-gradient(145deg, rgba(1,234,107,0.08), rgba(255,255,255,0.025));
      padding: 32px; }
.metric-panel h3 { font-size: clamp(1.45rem, 2.5vw, 2.1rem);
      line-height: 1.15;
      margin-bottom: 14px; }
.metric-panel p { color: var(--g300);
      line-height: 1.75;
      font-weight: 300; }
.metric-flow { display: grid;
      gap: 12px; }
.metric-row { display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-dark);
      background: rgba(255,255,255,0.03); }
.metric-index { width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      display: grid;
      place-items: center;
      background: rgba(1,234,107,0.1);
      color: var(--green);
      font-weight: 800; }
.metric-row h4 { font-size: 0.98rem; margin-bottom: 3px; }
.metric-row p { color: var(--g300);
      font-size: 0.86rem;
      line-height: 1.55;
      font-weight: 300; }
.metric-pill { white-space: nowrap;
      border-radius: var(--radius-full);
      border: 1px solid rgba(1,234,107,0.22);
      color: var(--green);
      padding: 6px 12px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase; }
.page-ai-agents { --ink: #050807;
      --moss: #0f1f18;
      --soft-green: rgba(1,234,107,0.12);
      --soft-green-2: rgba(1,234,107,0.06); }
.page-ai-agents .hero { background:
        radial-gradient(ellipse at 72% 20%, rgba(1,234,107,0.075), transparent 42%),
        radial-gradient(ellipse at 12% 80%, rgba(255,255,255,0.025), transparent 42%),
        #000; }
.page-ai-agents .hero h1 .hl,
    .page-ai-agents .cta-section h2 .hl { background: linear-gradient(135deg, var(--green), #b6ffd2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
.page-ai-agents .hero-img-wrap { border-radius: 999px 999px var(--radius-xl) var(--radius-xl);
      border-color: rgba(1,234,107,0.18); }
.page-ai-agents .hero-img-wrap::after { background: linear-gradient(135deg, rgba(1,234,107,0.18), rgba(255,255,255,0.035) 52%, transparent 78%); }
.page-ai-agents .hero-img-glow { background: rgba(1,234,107,0.14); }
.page-ai-agents .aa-intelligence-strip { background: linear-gradient(90deg, rgba(1,234,107,0.055), rgba(255,255,255,0.018), rgba(1,234,107,0.035));
      border-color: rgba(1,234,107,0.12); }
.page-ai-agents .aa-intelligence-strip .logo-strip-label { color: var(--g300); }
.page-ai-agents .aa-intelligence-strip .tech-logo-item { opacity: 1;
      min-width: 136px;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.025); }
.page-ai-agents .aa-intelligence-strip .tech-logo-item span:last-child { color: var(--g300);
      text-align: center; }
.page-ai-agents .aa-statement { background:
        linear-gradient(135deg, rgba(1,234,107,0.08), rgba(255,255,255,0.025)),
        var(--ink);
      border-top: 1px solid rgba(1,234,107,0.13);
      border-bottom: 1px solid rgba(1,234,107,0.1);
      color: #fff; }
.page-ai-agents .aa-statement::before { background: rgba(1,234,107,0.07); filter: blur(20px); }
.page-ai-agents .aa-statement .statement-label { color: var(--green); }
.page-ai-agents .aa-statement .statement-h2 { color: #fff; }
.page-ai-agents .aa-statement .statement-body { color: var(--g200); }
.page-ai-agents .aa-statement .statement-body strong { color: #fff; }
.page-ai-agents .aa-narrative { background:
        radial-gradient(ellipse at 92% 20%, rgba(1,234,107,0.055), transparent 44%),
        #030303; }
.page-ai-agents .aa-capabilities { background: #f4f6f4;
      color: var(--g900); }
.page-ai-agents .aa-capabilities::before { background: radial-gradient(ellipse at 10% 0%, rgba(1,234,107,0.16), transparent 56%); }
.page-ai-agents .aa-capabilities .section-label { color: #087667; }
.page-ai-agents .aa-capabilities .section-sub,
    .page-ai-agents .aa-capabilities .cap-card p,
    .page-ai-agents .aa-capabilities .cap-featured p { color: var(--g600); }
.page-ai-agents .aa-capabilities .cap-featured,
    .page-ai-agents .aa-capabilities .cap-card { background: #fff;
      border-color: rgba(0,0,0,0.07);
      box-shadow: 0 10px 32px rgba(0,0,0,0.04); }
.page-ai-agents .aa-capabilities .cap-card-icon { background: rgba(1,234,107,0.08);
      border-color: rgba(1,234,107,0.22); }
.page-ai-agents .aa-capabilities .cap-card-icon i { color: #087667; }
.page-ai-agents .aa-method { background:
        linear-gradient(180deg, #050807 0%, var(--moss) 100%); }
.page-ai-agents .aa-method::before { background: radial-gradient(ellipse at 50% 0%, rgba(1,234,107,0.08), transparent 62%); }
.page-ai-agents .aa-problems { background: #111;
      color: #fff; }
.page-ai-agents .aa-problems .section-title { color: #fff; }
.page-ai-agents .aa-problems .section-sub { color: var(--g300); }
.page-ai-agents .aa-problems .section-label { color: var(--green);
      background: rgba(1,234,107,0.08);
      border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-full);
      padding: 6px 14px; }
.page-ai-agents .aa-problems .prob-card { background: rgba(255,255,255,0.035);
      border-color: rgba(255,255,255,0.08); }
.page-ai-agents .aa-problems .prob-card .quote { color: var(--g100); border-left-color: rgba(1,234,107,0.5); }
.page-ai-agents .aa-problems .prob-card .solution { color: #9affbf; border-top-color: rgba(255,255,255,0.08); }
.page-ai-agents .aa-cases { background-color: rgba(1,234,107,0.035); }
.page-ai-agents .aa-diff { background:
        radial-gradient(ellipse at 20% 10%, rgba(1,234,107,0.055), transparent 44%),
        #000; }
.page-ai-agents .aa-why { background: #f4f6f4;
      color: var(--g900); }
.page-ai-agents .aa-why::before { background: radial-gradient(ellipse at 8% 10%, rgba(1,234,107,0.16), transparent 54%); }
.page-ai-agents .aa-why .section-label { color: #087667; }
.page-ai-agents .aa-why .section-title,
    .page-ai-agents .aa-why .narrative-copy p strong,
    .page-ai-agents .aa-why .cap-featured h3 { color: var(--g900); }
.page-ai-agents .aa-why .narrative-copy p,
    .page-ai-agents .aa-why .narrative-accent { color: var(--g600); }
.page-ai-agents .aa-why .narrative-accent { border-left-color: #087667; }
.page-ai-agents .aa-why .cap-featured { background: #fff;
      border-color: rgba(0,0,0,0.07);
      box-shadow: 0 10px 32px rgba(0,0,0,0.04); }
.page-ai-agents .aa-why .team-feat { background: rgba(0,0,0,0.035);
      border-color: rgba(0,0,0,0.06);
      color: var(--g700); }
.page-ai-agents .aa-why .team-feat i { color: #087667; }
.page-ai-agents .aa-foundation { background:
        linear-gradient(135deg, #eafff1 0%, #f4f6f4 100%);
      color: var(--g900); }
.page-ai-agents .aa-foundation::before { background: rgba(0,0,0,0.045); }
.page-ai-agents .aa-cta { background:
        radial-gradient(ellipse at 50% 0%, rgba(1,234,107,0.075), transparent 48%),
        #000; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--g400); transition: color var(--tf); }
.footer-links a:hover { color: var(--green); }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-fallback span { color: var(--green); }
.page-empty { flex: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 140px 24px 80px;
      position: relative; z-index: 1;
      text-align: center; gap: 20px; }
.page-empty .eyebrow { display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 18px; border-radius: var(--radius-full);
      background: rgba(1,234,107,0.08); border: 1px solid rgba(1,234,107,0.18);
      font-size: 12px; font-weight: 600; color: var(--green);
      letter-spacing: 0.08em; text-transform: uppercase; }
.page-empty .eyebrow .icon-svg { width: 14px; height: 14px; color: currentColor; }
.page-empty h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -1.5px; }
.page-empty h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-empty p { font-size: 1.05rem; color: var(--g300); max-width: 480px; font-weight: 300; }
.page-empty .hint { display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; color: var(--g400); margin-top: 8px; }
.page-empty .hint .icon-svg { color: var(--green); width: 1rem; height: 1rem; }
.wc-brand-sprite { position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0.1; }
.wc-brand-sprite--hero-c { width: min(720px, 58vw);
      right: -260px;
      bottom: -300px;
      opacity: 0.18; }
.wc-brand-sprite--hero-ribbon { width: min(880px, 70vw);
      left: -430px;
      top: -250px;
      opacity: 0.1; }
.wc-brand-sprite--section-ribbon { width: min(860px, 68vw);
      right: -430px;
      top: -260px;
      opacity: 0.085; }
.wc-brand-sprite--section-c { width: min(560px, 46vw);
      left: -250px;
      bottom: -220px;
      opacity: 0.1; }
.wc-brand-sprite--section-c-left { width: min(540px, 44vw);
      left: -260px;
      bottom: -250px;
      opacity: 0.095; }
.wc-brand-sprite--vertical { width: min(300px, 26vw);
      right: -88px;
      top: -120px;
      opacity: 0.16; }
.section > .container,
    .hero > .container,
    .statement > .container,
    .statement-section > .container,
    .cta-section > .container { position: relative;
      z-index: 2; }
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .narrative-grid { grid-template-columns: 1fr; gap: 48px; }
  .narrative-visual { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-top { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-break-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-items { display: none; }
  .header { left: 8px; right: 8px; }
  .cap-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photos { grid-template-columns: 1fr; }
  .team-photo-main { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px 24px; }
  .stat-numbers { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .logo-strip-row { gap: 24px; }
}
@media (max-width: 480px) {
  .stack-logos-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .stat-numbers { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-l, .reveal-r { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ===== CASE DETAIL ===== */
.page-case-detail {
	background: #050606;
	color: #fff;
}
.case-detail {
	overflow: hidden;
	background:
		linear-gradient(180deg, #050606 0%, #0a0a0a 42%, #f4f6f3 42%, #f4f6f3 100%);
}
.case-hero {
	position: relative;
	padding: 168px 0 88px;
	background:
		linear-gradient(135deg, rgba(1,234,107,0.12), rgba(0,246,226,0.04) 42%, rgba(144,0,235,0.09)),
		#050606;
	isolation: isolate;
}
.case-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(1,234,107,0.5), transparent);
}
.case-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 34px;
	color: rgba(255,255,255,0.42);
	font-size: 12px;
	font-weight: 600;
}
.case-breadcrumb a {
	color: rgba(255,255,255,0.52);
	transition: color var(--tf);
}
.case-breadcrumb a:hover {
	color: var(--green);
}
.case-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
	gap: 56px;
	align-items: center;
}
.case-kicker,
.case-box-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.case-kicker {
	padding: 6px 13px;
	border: 1px solid rgba(1,234,107,0.24);
	border-radius: var(--radius-full);
	background: rgba(1,234,107,0.08);
	margin-bottom: 22px;
}
.case-client {
	color: rgba(255,255,255,0.62);
	font-size: 0.95rem;
	font-weight: 700;
}
.case-client-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	min-height: 32px;
}
.case-client-logo {
	max-height: 32px;
	max-width: 160px;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.92;
}
.case-client-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	border-radius: var(--radius-full);
	border: 1px solid rgba(255,255,255,0.16);
	background: rgba(255,255,255,0.05);
	color: rgba(255,255,255,0.62);
	font-size: 0.82rem;
	font-weight: 700;
}
.case-client-badge i {
	color: rgba(255,255,255,0.5);
	font-size: 0.95rem;
}
.case-hero h1 {
	max-width: 820px;
	font-size: clamp(2.25rem, 5vw, 3.6rem);
	font-weight: 800;
	line-height: 1.02;
	margin-bottom: 24px;
}
.case-lead {
	max-width: 730px;
	color: rgba(255,255,255,0.7);
	font-size: 1.08rem;
	line-height: 1.72;
	font-weight: 300;
}
.case-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 760px;
	margin-top: 38px;
}
.case-hero-metric {
	min-height: 126px;
	padding: 18px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.09);
	background: rgba(255,255,255,0.045);
	backdrop-filter: blur(18px);
	transition: transform 0.32s ease, border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}
.case-hero-metric:hover {
	transform: translateY(-6px);
	border-color: rgba(1,234,107,0.34);
	background: rgba(1,234,107,0.08);
	box-shadow: 0 18px 44px rgba(1,234,107,0.11);
}
.case-hero-metric strong {
	display: block;
	color: #fff;
	font-size: clamp(2rem, 4vw, 2.35rem);
	line-height: 1;
	margin-bottom: 12px;
}
.case-hero-metric span {
	display: block;
	color: rgba(255,255,255,0.62);
	font-size: 0.88rem;
	line-height: 1.35;
}
.case-hero-panel {
	position: relative;
	min-height: 520px;
	border-radius: 8px;
	padding: 38px;
	border: 1px solid rgba(255,255,255,0.12);
	background:
		linear-gradient(145deg, rgba(255,255,255,0.12), rgba(1,234,107,0.06)),
		linear-gradient(135deg, #131716, #050606);
	box-shadow: 0 24px 80px rgba(0,0,0,0.36);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	transition: transform 0.36s ease, border-color 0.36s ease, box-shadow 0.36s ease;
}
.case-hero-panel:hover {
	transform: translateY(-8px);
	border-color: rgba(1,234,107,0.28);
	box-shadow: 0 30px 90px rgba(1,234,107,0.1), 0 24px 80px rgba(0,0,0,0.42);
}
.case-hero-panel::before {
	content: "";
	position: absolute;
	inset: 20px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 8px;
	pointer-events: none;
}
.case-panel-top,
.case-panel-flow {
	position: relative;
	z-index: 1;
}
.case-panel-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	color: rgba(255,255,255,0.68);
	font-size: 0.82rem;
	font-weight: 700;
}
.case-panel-top i {
	color: var(--green);
	font-size: 2.2rem;
}
.case-panel-result {
	position: relative;
	z-index: 1;
	margin: auto 0;
}
.case-panel-result span {
	display: block;
	color: rgba(255,255,255,0.42);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
}
.case-panel-result strong {
	display: block;
	max-width: 360px;
	color: #fff;
	font-size: clamp(2rem, 3vw, 3.15rem);
	line-height: 1.08;
}
.case-panel-flow {
	display: grid;
	gap: 10px;
}
.case-panel-flow div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 8px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.78);
	font-size: 0.88rem;
	font-weight: 600;
	transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.case-panel-flow div:hover {
	transform: translateX(6px);
	border-color: rgba(1,234,107,0.24);
	background: rgba(1,234,107,0.08);
}
.case-panel-flow i {
	color: var(--green);
	font-size: 1.15rem;
}
.case-bento-section {
	padding: 76px 0 32px;
	background: #f4f6f3;
	color: var(--g900);
}
.case-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 16px;
}
.case-box {
	border-radius: 8px;
	padding: 28px;
	border: 1px solid rgba(0,0,0,0.08);
	background: #fff;
	box-shadow: 0 16px 50px rgba(0,0,0,0.07);
	transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}
.case-box:hover {
	transform: translateY(-7px);
	border-color: rgba(1,234,107,0.32);
	box-shadow: 0 24px 70px rgba(0,0,0,0.12);
}
.case-box h2 {
	font-size: clamp(1.65rem, 3vw, 2.6rem);
	line-height: 1.12;
	margin: 16px 0 14px;
	color: var(--g900);
}
.case-box p {
	color: var(--g600);
	font-size: 1rem;
	line-height: 1.72;
}
.case-box-lg {
	grid-column: span 7;
	min-height: 320px;
}
.case-box-accent {
	grid-column: span 5;
	background: var(--green);
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.case-box-accent:hover {
	background: #24f684;
	box-shadow: 0 28px 80px rgba(1,234,107,0.24);
}
.case-box-accent .case-box-label,
.case-box-accent p {
	color: #000;
}
.case-box-accent p {
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	line-height: 1.35;
	font-weight: 700;
}
.case-box-dark {
	grid-column: span 8;
	background: #080a09;
	border-color: rgba(255,255,255,0.08);
	color: #fff;
}
.case-box-dark:hover {
	border-color: rgba(1,234,107,0.26);
	box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}
.case-box-dark .case-list li {
	color: rgba(255,255,255,0.78);
}
.case-box-dark p {
	color: rgba(255,255,255,0.72);
	margin-bottom: 4px;
}
.case-box-light {
	grid-column: span 4;
	background: #edf6f0;
}
.case-list {
	list-style: none;
	display: grid;
	gap: 14px;
	margin-top: 20px;
}
.case-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--g700);
	line-height: 1.55;
	font-size: 0.96rem;
}
.case-list i {
	color: var(--green);
	font-size: 1.05rem;
	margin-top: 3px;
	flex-shrink: 0;
}
.case-list.compact {
	gap: 10px;
}
.case-time {
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.case-time span {
	display: block;
	color: var(--g500, #555);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}
.case-time strong {
	color: var(--g900);
	font-size: 1.6rem;
}
.case-results-section {
	padding: 62px 0 88px;
	background: #f4f6f3;
	color: var(--g900);
}
.case-results-grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 18px;
	align-items: stretch;
}
.case-results-copy {
	padding: 34px;
	border-radius: 8px;
	background: #080a09;
	color: #fff;
}
.case-results-copy h2 {
	margin: 14px 0 12px;
	font-size: clamp(1.75rem, 3vw, 2.7rem);
	line-height: 1.08;
	color: #fff;
}
.case-results-copy p {
	color: rgba(255,255,255,0.72);
	line-height: 1.72;
	font-size: 1rem;
}
.case-result-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}
.case-result-card {
	min-height: 260px;
	padding: 30px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	box-shadow: 0 16px 50px rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}
.case-result-card:hover {
	transform: translateY(-8px);
	border-color: rgba(1,234,107,0.34);
	background: linear-gradient(180deg, #ffffff 0%, #f0fff6 100%);
	box-shadow: 0 24px 70px rgba(1,234,107,0.14);
}
.case-result-card i {
	color: #087a45;
	font-size: 2.3rem;
	margin-bottom: 18px;
	transition: transform 0.32s ease, color 0.32s ease;
}
.case-result-card:hover i {
	transform: translateY(-4px) scale(1.08);
	color: var(--green);
}
.case-result-card strong {
	display: block;
	color: var(--g900);
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 0.95;
	margin-bottom: 14px;
}
.case-result-card span {
	color: var(--g600);
	font-size: 1rem;
	line-height: 1.45;
}
.case-quote {
	margin-top: 18px;
	padding: 34px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(0,246,226,0.12), rgba(144,0,235,0.08)),
		#101312;
	color: #fff;
	transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.case-quote:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 70px rgba(0,0,0,0.16);
}
.case-quote blockquote {
	font-size: clamp(1.25rem, 2.2vw, 1.85rem);
	line-height: 1.42;
	font-weight: 600;
	max-width: 920px;
}
.case-quote figcaption {
	margin-top: 18px;
	color: rgba(255,255,255,0.58);
	font-size: 0.9rem;
}
.case-cms-section {
	padding: 0 0 92px;
	background: #f4f6f3;
	color: var(--g900);
}
.case-cms-card {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 28px;
	align-items: center;
	padding: 28px;
	border-radius: 8px;
	border: 1px dashed rgba(0,0,0,0.18);
	background: rgba(255,255,255,0.72);
	transition: border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
}
.case-cms-card:hover {
	border-color: rgba(1,234,107,0.42);
	background: rgba(255,255,255,0.9);
	box-shadow: 0 18px 56px rgba(0,0,0,0.08);
}
.case-cms-card h2 {
	margin-top: 10px;
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	line-height: 1.18;
}
.case-cms-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.case-cms-fields span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: var(--radius-full);
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	color: var(--g700);
	font-size: 0.82rem;
	font-weight: 700;
	transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.case-cms-fields span:hover {
	transform: translateY(-3px);
	border-color: rgba(1,234,107,0.34);
	color: #087a45;
}
@media (max-width: 980px) {
	.case-hero-grid,
	.case-results-grid,
	.case-cms-card {
		grid-template-columns: 1fr;
	}
	.case-hero-panel {
		min-height: 430px;
	}
	.case-box-lg,
	.case-box-accent,
	.case-box-dark,
	.case-box-light {
		grid-column: 1 / -1;
	}
}
@media (max-width: 680px) {
	.case-hero {
		padding: 138px 0 64px;
	}
	.case-hero-metrics,
	.case-result-cards {
		grid-template-columns: 1fr;
	}
	.case-bento-section {
		padding-top: 44px;
	}
	.case-box,
	.case-results-copy,
	.case-result-card,
	.case-quote,
	.case-cms-card {
		padding: 22px;
	}
	.case-hero-panel {
		min-height: 360px;
		padding: 22px;
	}
}
@media (max-width: 900px) {
  .demo-grid,
      .metric-board { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 44px 1fr; }
  .metric-pill { grid-column: 2; width: fit-content; }
  .demo-caption { align-items: flex-start; flex-direction: column; gap: 4px; }
}
@media (max-width: 760px) {
  .wc-brand-sprite { opacity: 0.07; }
  .wc-brand-sprite--hero-c { width: 520px; right: -340px; bottom: -240px; }
  .wc-brand-sprite--hero-ribbon { width: 620px; left: -430px; right: auto; top: -220px; }
  .wc-brand-sprite--section-ribbon { width: 680px; right: -520px; }
  .wc-brand-sprite--section-c,
      .wc-brand-sprite--section-c-left { width: 360px; left: -260px; right: auto; }
  .wc-brand-sprite--vertical { display: none; }
}

/* ===== CASES — LISTAGEM (todos os cases / página por vertical) ===== */
/* Hero continua escuro (.case-hero); a área de exibição dos cases (grid +
   filtro lateral) usa fundo branco (.section.bg-white), no estilo de
   filtro de e-commerce — coluna fixa à esquerda + resultados à direita. */
.case-list-hero {
	padding-bottom: 56px;
}
.case-list-hero .case-lead {
	margin-bottom: 0;
}
.case-vertical-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--g300);
	margin-bottom: 10px;
}
.case-vertical-badge i {
	color: var(--green);
	font-size: 0.85rem;
}
.bg-white .case-vertical-badge {
	color: var(--g600);
}

/* Layout: sidebar de filtros (esquerda) + resultados (direita) */
.case-list-layout {
	display: grid;
	grid-template-columns: 264px 1fr;
	gap: 48px;
	align-items: start;
}
.case-sidebar {
	position: sticky;
	top: 104px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}
.case-filter-group {
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}
.case-filter-group:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
.case-filter-group-title {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	color: var(--g600);
	margin-bottom: 14px;
}
.case-filter-group-title i {
	color: var(--green);
	font-size: 0.95rem;
}
.case-filter-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.case-search-box {
	position: relative;
	display: flex;
	align-items: center;
}
.case-search-box i {
	position: absolute;
	left: 12px;
	color: var(--g400);
	font-size: 0.95rem;
	pointer-events: none;
}
.case-search-input {
	width: 100%;
	padding: 10px 12px 10px 36px;
	border-radius: 8px;
	border: 1px solid rgba(10, 10, 10, 0.14);
	background: #fff;
	color: var(--g900);
	font-family: var(--font);
	font-size: 0.86rem;
}
.case-search-input::placeholder {
	color: var(--g300);
}
.case-search-input:focus {
	outline: none;
	border-color: rgba(1, 234, 107, 0.5);
	box-shadow: 0 0 0 3px rgba(1, 234, 107, 0.12);
}
.case-search-hint {
	margin-top: 8px;
	font-size: 0.72rem;
	color: var(--g400);
	line-height: 1.45;
}
.case-filter-item {
	display: block;
	width: 100%;
	text-align: left;
	padding: 9px 12px;
	border-radius: 8px;
	border: 1px solid transparent;
	background: transparent;
	color: var(--g600);
	font-family: var(--font);
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.35;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s ease;
}
.case-filter-item:hover {
	background: rgba(1, 234, 107, 0.08);
	color: var(--g900);
}
.case-filter-item.is-active {
	background: rgba(1, 234, 107, 0.12);
	border-color: rgba(1, 234, 107, 0.3);
	color: #04150c;
	font-weight: 700;
}
.case-filter-clear {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	padding: 0;
	border: none;
	background: none;
	color: var(--g400);
	font-family: var(--font);
	font-size: 0.8rem;
	font-weight: 600;
	cursor: pointer;
	transition: color 0.2s ease;
}
.case-filter-clear:hover {
	color: var(--red);
}
.case-filter-clear[hidden] {
	display: none;
}

.case-content {
	min-width: 0;
}
.case-filter-count {
	color: var(--g400);
	font-size: 0.86rem;
	margin-bottom: 20px;
}
.case-filter-count strong {
	color: var(--g900);
	font-weight: 700;
}

/* Nas páginas com sidebar, os cases são exibidos em grid de 2 colunas
   (imagem em cima, conteúdo embaixo em cada card) — igual a um grid de
   e-commerce ao lado do filtro. */
.case-list-layout .cases-grid {
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 0;
}
.case-list-layout .case-card {
	grid-template-columns: 1fr;
	grid-column: auto;
}
.case-list-layout .case-card .case-img {
	height: 200px;
}
@media (max-width: 680px) {
	.case-list-layout .cases-grid {
		grid-template-columns: 1fr;
	}
}

.case-empty {
	display: none;
	text-align: center;
	padding: 72px 24px;
	border: 1px dashed var(--border-dark);
	border-radius: var(--radius-lg);
	color: var(--g300);
}
.case-empty.is-visible {
	display: block;
}
.case-empty i {
	display: block;
	font-size: 2.25rem;
	color: var(--green);
	margin-bottom: 14px;
}
.case-empty h3 {
	color: #fff;
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 8px;
}
.case-empty p {
	max-width: 420px;
	margin: 0 auto;
	font-size: 0.9rem;
	line-height: 1.6;
}
.bg-white .case-empty {
	border-color: rgba(10, 10, 10, 0.14);
	color: var(--g600);
}
.bg-white .case-empty h3 {
	color: var(--g900);
}

@media (max-width: 980px) {
	.case-list-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.case-sidebar {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 24px;
	}
	.case-filter-group {
		flex: 1 1 220px;
		border-bottom: none;
		padding-bottom: 0;
	}
	.case-list-layout .case-card {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	.case-sidebar {
		flex-direction: column;
	}
}

/* ---- "Business Intelligence" (business-intelligence.html) ---- */
.phico { width: 1em; height: 1em; vertical-align: -0.15em; flex-shrink: 0; display: inline-block; }
.section-dark { background: var(--g900); }
.section-tint { background: rgba(1,234,107,0.035); }
.section-light { background: var(--g100); color: var(--g900); }
.section-green { background: var(--green); color: var(--g900); }
.nav { max-width: var(--max-w);
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px; }
.logo-fallback span { color: var(--green); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.eyebrow, .hero-eyebrow { display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(1,234,107,0.22);
      background: var(--green-08);
      color: var(--green);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase; }
.eyebrow { padding: 6px 14px; margin-bottom: 18px; }
.eyebrow.dark { color: #145331; background: rgba(1,234,107,0.14); border-color: rgba(1,234,107,0.28); }
.section-light .section-sub { color: var(--g600); }
.center { text-align: center; }
.center .section-title, .center .section-sub { margin-left: auto; margin-right: auto; }
.hero::after { content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(1,234,107,0.5), transparent); }
.hl { background: linear-gradient(135deg, var(--green), #9cffc4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
.hero-strip span { display: flex; align-items: center; gap: 8px; color: var(--g300); font-size: 0.9rem; font-weight: 500; }
.hero-strip i { color: var(--green); font-size: 1rem; }
.strategy-panel { position: relative;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
      box-shadow: 0 30px 80px rgba(0,0,0,0.42);
      padding: 26px;
      overflow: hidden; }
.strategy-panel::before { content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at 50% 38%, #000, transparent 72%);
      pointer-events: none; }
.strategy-panel > * { position: relative; z-index: 1; }
.panel-top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.panel-kicker { color: var(--g300); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.panel-score { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; font-weight: 800; }
.panel-score::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.roadmap { display: grid;
      gap: 14px;
      margin-bottom: 24px; }
.roadmap-item { display: grid;
      grid-template-columns: 46px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 15px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      background: rgba(0,0,0,0.28); }
.roadmap-num { width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #000;
      background: var(--green);
      font-weight: 800;
      font-size: 13px; }
.roadmap-title { font-weight: 800; font-size: 0.98rem; }
.roadmap-desc { color: var(--g300); font-size: 0.78rem; line-height: 1.45; }
.roadmap-pill { color: #9cffc4;
      background: rgba(1,234,107,0.1);
      border: 1px solid rgba(1,234,107,0.16);
      border-radius: var(--radius-full);
      padding: 5px 9px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em; }
.panel-footer { display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px; }
.metric { border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      padding: 14px;
      background: rgba(255,255,255,0.03); }
.metric strong { display: block; color: #fff; font-size: 1.25rem; line-height: 1; margin-bottom: 6px; }
.metric span { display: block; color: var(--g300); font-size: 0.72rem; line-height: 1.35; }
.statement { padding: 78px 0;
      background: var(--green);
      color: var(--g900); }
.statement .section-title { max-width: 900px; font-size: clamp(2rem, 4vw, 3.35rem); }
.statement p { max-width: 780px; color: rgba(0,0,0,0.67); font-size: 1.08rem; line-height: 1.75; }
.split-grid { display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 72px;
      align-items: start; }
.copy-stack p { color: var(--g300);
      font-weight: 300;
      line-height: 1.85;
      margin-bottom: 18px; }
.highlight-box { border-left: 3px solid var(--green);
      padding: 22px 24px;
      margin-top: 26px;
      background: rgba(1,234,107,0.055);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      color: #fff;
      font-size: 1.1rem;
      line-height: 1.65;
      font-weight: 500; }
.narrative-media { position: relative;
      margin-top: 30px;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--g800); }
.narrative-media img { width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.02); }
.narrative-media::after { content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.76));
      pointer-events: none; }
.narrative-caption { position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 1;
      border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-md);
      background: rgba(0,0,0,0.74);
      backdrop-filter: blur(14px);
      padding: 13px 15px;
      color: var(--g200);
      font-size: 0.84rem;
      line-height: 1.45; }
.narrative-caption strong { display: block;
      color: var(--green);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 4px; }
.capability-accordion { max-width: 960px;
      margin: 48px auto 0;
      border-top: 1px solid var(--border-dark); }
.capability-item { border-bottom: 1px solid var(--border-dark); }
.capability-item summary { list-style: none;
      cursor: pointer;
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr) 34px;
      align-items: center;
      gap: 18px;
      padding: 26px 0;
      color: #fff; }
.capability-item summary::-webkit-details-marker { display: none; }
.capability-num { color: var(--green);
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.12em; }
.capability-title h3 { font-size: clamp(1.1rem, 2vw, 1.7rem);
      line-height: 1.15;
      margin-bottom: 6px; }
.capability-title p { color: var(--g400);
      font-size: 0.9rem;
      line-height: 1.5;
      font-weight: 300; }
.capability-toggle { width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(1,234,107,0.24);
      color: var(--green);
      transition: transform var(--tb), background var(--tb), color var(--tb); }
.capability-item[open] .capability-toggle { transform: rotate(45deg);
      background: var(--green);
      color: #000; }
.capability-details { display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      padding: 0 0 30px 72px; }
.capability-details div { border-left: 2px solid rgba(1,234,107,0.35);
      padding-left: 16px; }
.capability-details strong { display: block;
      color: #fff;
      font-size: 0.92rem;
      line-height: 1.3;
      margin-bottom: 6px; }
.capability-details p { color: var(--g300);
      font-size: 0.88rem;
      line-height: 1.6;
      font-weight: 300; }
.process-step::before { content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease; }
.process-step:hover::before { transform: scaleX(1); }
.process-step h3 { font-size: 1rem; line-height: 1.25; margin-bottom: 10px; }
.problem-grid, .application-grid, .why-grid { display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 44px; }
.problem-card, .application-card, .why-card { border-radius: var(--radius-lg);
      padding: 24px;
      transition: transform var(--tb), border-color var(--tb), box-shadow var(--tb), background var(--tb); }
.problem-card { background: #fff;
      border: 1px solid var(--border-light); }
.problem-card:hover { transform: translateY(-4px); border-color: rgba(1,234,107,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.quote { color: var(--g900);
      font-size: 1rem;
      line-height: 1.45;
      font-weight: 800;
      margin-bottom: 14px;
      padding-left: 14px;
      border-left: 3px solid var(--green); }
.solution { color: var(--g600); font-size: 0.9rem; line-height: 1.65; font-weight: 300; }
.deliverable-board { display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 20px;
      margin-top: 46px;
      align-items: stretch; }
.deliverable-sidebar { border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(1,234,107,0.09), rgba(255,255,255,0.025)),
        rgba(255,255,255,0.02);
      padding: 22px;
      min-height: 100%; }
.deliverable-sidebar .kicker { color: var(--green);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px; }
.deliverable-sidebar h3 { font-size: 1.15rem;
      line-height: 1.18;
      margin-bottom: 14px; }
.deliverable-sidebar p { color: var(--g300);
      font-size: 0.86rem;
      line-height: 1.58;
      font-weight: 300; }
.deliverable-phases { list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 24px; }
.deliverable-phases li { display: flex;
      align-items: center;
      gap: 9px;
      color: var(--g200);
      font-size: 0.86rem;
      font-weight: 600; }
.deliverable-phases span { width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green);
      color: #000;
      font-size: 0.72rem;
      font-weight: 800;
      flex-shrink: 0; }
.deliverable-matrix { display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: rgba(255,255,255,0.02); }
.deliverable-group { padding: 22px;
      min-height: 190px;
      border-right: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark); }
.deliverable-group:nth-child(2n) { border-right: 0; }
.deliverable-group:nth-last-child(-n+2) { border-bottom: 0; }
.deliverable-group header { display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px; }
.deliverable-group .group-index { width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(1,234,107,0.1);
      border: 1px solid rgba(1,234,107,0.22);
      color: var(--green);
      font-size: 0.82rem;
      font-weight: 800;
      flex-shrink: 0; }
.deliverable-group h3 { font-size: 1rem;
      line-height: 1.22; }
.deliverable-list { list-style: none;
      display: grid;
      gap: 12px; }
.deliverable-list li { display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      color: var(--g300);
      font-size: 0.86rem;
      line-height: 1.5;
      font-weight: 300; }
.deliverable-list i { color: var(--green);
      font-size: 0.9rem;
      margin-top: 4px; }
.deliverable-list strong { display: block;
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 2px; }
.application-card, .why-card { background: rgba(255,255,255,0.03);
      border: 1px solid var(--border-dark); }
.application-card:hover, .why-card:hover { transform: translateY(-5px); border-color: rgba(1,234,107,0.2); background: rgba(1,234,107,0.045); }
.card-icon { width: 42px;
      height: 42px;
      border-radius: var(--radius-md);
      display: grid;
      place-items: center;
      background: var(--green-08);
      border: 1px solid rgba(1,234,107,0.15);
      color: var(--green);
      font-size: 1.15rem;
      margin-bottom: 18px; }
.application-card h3, .why-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.application-card p, .why-card p { color: var(--g300); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }
.applications-section { background: #fff;
      color: var(--g900); }
.applications-section .application-card { background: #fff;
      border: 1px solid var(--border-light);
      box-shadow: 0 14px 34px rgba(0,0,0,0.055); }
.applications-section .application-card:hover { transform: translateY(-5px);
      border-color: rgba(1,234,107,0.55);
      background: #fff;
      box-shadow: 0 22px 44px rgba(0,0,0,0.09); }
.applications-section .card-icon { background: #05150c;
      border-color: rgba(1,234,107,0.38);
      color: var(--green);
      box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.applications-section .application-card h3 { color: var(--g900); }
.applications-section .application-card p { color: var(--g500); }
.institutional-grid { display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: center; }
.institutional-copy p { color: rgba(0,0,0,0.67); line-height: 1.8; margin-bottom: 18px; }
.institutional-list { display: grid; gap: 12px; }
.institutional-item { display: flex;
      gap: 12px;
      align-items: flex-start;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: var(--radius-md);
      padding: 16px;
      background: rgba(255,255,255,0.38);
      color: rgba(0,0,0,0.72);
      font-weight: 500; }
.institutional-item i { color: #000; margin-top: 3px; }
.footer-col h4 { color: var(--g200); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.header .logo { display: flex; align-items: center; flex-shrink: 0; }
.header .logo img { width: 174px; height: auto; }
.mi:hover .ic i { color: #000; }
.pc:hover .pt, .pc:hover .pd { color: rgba(0,0,0,0.58); }
.page-data-strategy .hero-grid { display: block;
      max-width: 920px; }
.page-data-strategy .hero { padding: 166px 0 90px;
      background:
        radial-gradient(ellipse at 82% 6%, rgba(1,234,107,0.12), transparent 38%),
        radial-gradient(ellipse at 10% 90%, rgba(0,246,226,0.06), transparent 36%),
        #000; }
.page-data-strategy .hero h1 { max-width: 900px; }
.page-data-strategy .hero-lead { max-width: 760px; }
.page-data-strategy .hero-strip { display: flex;
      flex-wrap: wrap;
      max-width: 900px; }
.page-data-strategy .strategy-panel { display: none; }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.page-empty { flex: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 140px 24px 80px;
      position: relative; z-index: 1;
      text-align: center; gap: 20px; }
.page-empty .eyebrow { display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 18px; border-radius: var(--radius-full);
      background: rgba(1,234,107,0.08); border: 1px solid rgba(1,234,107,0.18);
      font-size: 12px; font-weight: 600; color: var(--green);
      letter-spacing: 0.08em; text-transform: uppercase; }
.page-empty .eyebrow .icon-svg { width: 14px; height: 14px; color: currentColor; }
.page-empty h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -1.5px; }
.page-empty h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-empty p { font-size: 1.05rem; color: var(--g300); max-width: 480px; font-weight: 300; }
.page-empty .hint { display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; color: var(--g400); margin-top: 8px; }
.page-empty .hint .icon-svg { color: var(--green); width: 1rem; height: 1rem; }
.footer-brand .logo img { width: auto; height: 28px; }
.wc-brand-sprite { position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0.1; }
.wc-brand-sprite--hero-c { width: min(720px, 58vw);
      right: -260px;
      bottom: -300px;
      opacity: 0.18; }
.wc-brand-sprite--hero-ribbon { width: min(880px, 70vw);
      left: -430px;
      top: -250px;
      opacity: 0.1; }
.wc-brand-sprite--section-ribbon { width: min(860px, 68vw);
      right: -430px;
      top: -260px;
      opacity: 0.085; }
.wc-brand-sprite--section-c { width: min(560px, 46vw);
      left: -250px;
      bottom: -220px;
      opacity: 0.1; }
.wc-brand-sprite--section-c-left { width: min(540px, 44vw);
      left: -260px;
      bottom: -250px;
      opacity: 0.095; }
.wc-brand-sprite--vertical { width: min(300px, 26vw);
      right: -88px;
      top: -120px;
      opacity: 0.16; }
.section > .container,
    .hero > .container,
    .statement > .container,
    .statement-section > .container,
    .cta-section > .container { position: relative;
      z-index: 2; }
@media (max-width: 1080px) {
  .hero-grid, .split-grid, .institutional-grid { grid-template-columns: 1fr; gap: 44px; }
  .strategy-panel { max-width: 680px; }
  .capability-details { grid-template-columns: 1fr; gap: 16px; padding-left: 72px; }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .problem-grid, .application-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .logo img { width: 120px; }
  .section { padding: 72px 0; }
  .hero { padding: 132px 0 72px; }
  .hero-strip, .panel-footer, .deliverable-board, .deliverable-matrix, .process-grid, .problem-grid, .application-grid, .why-grid, .footer-main { grid-template-columns: 1fr; }
  .capability-item summary { grid-template-columns: 38px minmax(0, 1fr) 32px; gap: 12px; padding: 22px 0; }
  .capability-details { padding-left: 50px; }
  .deliverable-group,
      .deliverable-group:nth-child(2n),
      .deliverable-group:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--border-dark); }
  .deliverable-group:last-child { border-bottom: 0; }
  .roadmap-item { grid-template-columns: 42px minmax(0, 1fr); }
  .roadmap-pill { grid-column: 2; justify-self: start; }
  .hero-ctas .btn, .cta-section .btn { width: 100%; white-space: normal; text-align: center; }
  .wc-brand-sprite { opacity: 0.07; }
  .wc-brand-sprite--hero-c { width: 520px; right: -340px; bottom: -240px; }
  .wc-brand-sprite--hero-ribbon { width: 620px; left: -430px; right: auto; top: -220px; }
  .wc-brand-sprite--section-ribbon { width: 680px; right: -520px; }
  .wc-brand-sprite--section-c,
      .wc-brand-sprite--section-c-left { width: 360px; left: -260px; right: auto; }
  .wc-brand-sprite--vertical { display: none; }
}
@media (max-width: 460px) {
  .container { padding: 0 20px; }
  .strategy-panel { padding: 18px; }
  .hero h1 { font-size: 2.35rem; }
  .section-title { font-size: 1.82rem; }
  .panel-top { flex-direction: column; }
}
@media (max-width: 920px) {
  .nav-items { display: none; }
  .header { left: 8px; right: 8px; padding: 12px 16px; }
  .header .logo img { width: 142px; }
}

/* ---- "Data Science & AI" (data-science.html) ---- */
.stat-break { padding: 80px 0; background: var(--g100); color: var(--g900); position: relative; z-index: 1; }
.stat-break-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stat-break h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.stat-break h2 span { color: #000; }
.stat-break p { font-size: 1rem; color: var(--g600); font-weight: 300; line-height: 1.75; }
.stat-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box { padding: 24px; border-radius: var(--radius-lg); background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; }
.stat-box:hover { background: rgba(1,234,107,0.15); border-color: rgba(1,234,107,0.3); transform: translateY(-4px); }
.page-data-science { --ink: #050807;
      --moss: #0f1f18;
      --soft-green: rgba(1,234,107,0.12);
      --soft-green-2: rgba(1,234,107,0.06); }
.page-data-science .hero { background:
        radial-gradient(ellipse at 72% 20%, rgba(1,234,107,0.075), transparent 42%),
        radial-gradient(ellipse at 12% 80%, rgba(255,255,255,0.025), transparent 42%),
        #000; }
.page-data-science .hero h1 .hl,
    .page-data-science .cta-section h2 .hl { background: linear-gradient(135deg, var(--green), #b6ffd2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
.page-data-science .hero-img-wrap { border-radius: 999px 999px var(--radius-xl) var(--radius-xl);
      border-color: rgba(1,234,107,0.18); }
.page-data-science .hero-img-wrap::after { background: linear-gradient(135deg, rgba(1,234,107,0.18), rgba(255,255,255,0.035) 52%, transparent 78%); }
.page-data-science .hero-img-glow { background: rgba(1,234,107,0.14); }
.page-data-science .ds-intelligence-strip { background: linear-gradient(90deg, rgba(1,234,107,0.055), rgba(255,255,255,0.018), rgba(1,234,107,0.035));
      border-color: rgba(1,234,107,0.12); }
.page-data-science .ds-intelligence-strip .logo-strip-label { color: var(--g300); }
.page-data-science .ds-intelligence-strip .tech-logo-item { opacity: 1;
      min-width: 136px;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.025); }
.page-data-science .ds-intelligence-strip .tech-logo-item span:last-child { color: var(--g300);
      text-align: center; }
.page-data-science .ds-statement { background:
        linear-gradient(135deg, rgba(1,234,107,0.08), rgba(255,255,255,0.025)),
        var(--ink);
      border-top: 1px solid rgba(1,234,107,0.13);
      border-bottom: 1px solid rgba(1,234,107,0.1);
      color: #fff; }
.page-data-science .ds-statement::before { background: rgba(1,234,107,0.07); filter: blur(20px); }
.page-data-science .ds-statement .statement-label { color: var(--green); }
.page-data-science .ds-statement .statement-h2 { color: #fff; }
.page-data-science .ds-statement .statement-body { color: var(--g200); }
.page-data-science .ds-statement .statement-body strong { color: #fff; }
.page-data-science .ds-narrative { background:
        radial-gradient(ellipse at 92% 20%, rgba(1,234,107,0.055), transparent 44%),
        #030303; }
.page-data-science .ds-capabilities { background: #f4f6f4;
      color: var(--g900); }
.page-data-science .ds-capabilities::before { background: radial-gradient(ellipse at 10% 0%, rgba(1,234,107,0.16), transparent 56%); }
.page-data-science .ds-capabilities .section-label { color: #087667; }
.page-data-science .ds-capabilities .section-sub,
    .page-data-science .ds-capabilities .cap-card p,
    .page-data-science .ds-capabilities .cap-featured p { color: var(--g600); }
.page-data-science .ds-capabilities .cap-featured,
    .page-data-science .ds-capabilities .cap-card { background: #fff;
      border-color: rgba(0,0,0,0.07);
      box-shadow: 0 10px 32px rgba(0,0,0,0.04); }
.page-data-science .ds-capabilities .cap-card-icon { background: rgba(1,234,107,0.08);
      border-color: rgba(1,234,107,0.22); }
.page-data-science .ds-capabilities .cap-card-icon i { color: #087667; }
.page-data-science .ds-method { background:
        linear-gradient(180deg, #050807 0%, var(--moss) 100%); }
.page-data-science .ds-method::before { background: radial-gradient(ellipse at 50% 0%, rgba(1,234,107,0.08), transparent 62%); }
.page-data-science .ds-problems { background: #111;
      color: #fff; }
.page-data-science .ds-problems .section-title { color: #fff; }
.page-data-science .ds-problems .section-sub { color: var(--g300); }
.page-data-science .ds-problems .section-label { color: var(--green);
      background: rgba(1,234,107,0.08);
      border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-full);
      padding: 6px 14px; }
.page-data-science .ds-problems .prob-card { background: rgba(255,255,255,0.035);
      border-color: rgba(255,255,255,0.08); }
.page-data-science .ds-problems .prob-card .quote { color: var(--g100); border-left-color: rgba(1,234,107,0.5); }
.page-data-science .ds-problems .prob-card .solution { color: #9affbf; border-top-color: rgba(255,255,255,0.08); }
.page-data-science .ds-cases { background-color: rgba(1,234,107,0.035); }
.page-data-science .ds-diff { background:
        radial-gradient(ellipse at 20% 10%, rgba(1,234,107,0.055), transparent 44%),
        #000; }
.page-data-science .ds-foundation { background:
        linear-gradient(135deg, #eafff1 0%, #f4f6f4 100%);
      color: var(--g900); }
.page-data-science .ds-foundation::before { background: rgba(0,0,0,0.045); }
.page-data-science .ds-cta { background:
        radial-gradient(ellipse at 50% 0%, rgba(1,234,107,0.075), transparent 48%),
        #000; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--g400); transition: color var(--tf); }
.footer-links a:hover { color: var(--green); }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-fallback span { color: var(--green); }
.page-empty { flex: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 140px 24px 80px;
      position: relative; z-index: 1;
      text-align: center; gap: 20px; }
.page-empty .eyebrow { display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 18px; border-radius: var(--radius-full);
      background: rgba(1,234,107,0.08); border: 1px solid rgba(1,234,107,0.18);
      font-size: 12px; font-weight: 600; color: var(--green);
      letter-spacing: 0.08em; text-transform: uppercase; }
.page-empty .eyebrow .icon-svg { width: 14px; height: 14px; color: currentColor; }
.page-empty h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -1.5px; }
.page-empty h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-empty p { font-size: 1.05rem; color: var(--g300); max-width: 480px; font-weight: 300; }
.page-empty .hint { display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; color: var(--g400); margin-top: 8px; }
.page-empty .hint .icon-svg { color: var(--green); width: 1rem; height: 1rem; }
.wc-brand-sprite { position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0.1; }
.wc-brand-sprite--hero-c { width: min(720px, 58vw);
      right: -260px;
      bottom: -300px;
      opacity: 0.18; }
.wc-brand-sprite--hero-ribbon { width: min(880px, 70vw);
      left: -430px;
      top: -250px;
      opacity: 0.1; }
.wc-brand-sprite--section-ribbon { width: min(860px, 68vw);
      right: -430px;
      top: -260px;
      opacity: 0.085; }
.wc-brand-sprite--section-c { width: min(560px, 46vw);
      left: -250px;
      bottom: -220px;
      opacity: 0.1; }
.wc-brand-sprite--section-c-left { width: min(540px, 44vw);
      left: -260px;
      bottom: -250px;
      opacity: 0.095; }
.wc-brand-sprite--vertical { width: min(300px, 26vw);
      right: -88px;
      top: -120px;
      opacity: 0.16; }
.section > .container,
    .hero > .container,
    .statement > .container,
    .statement-section > .container,
    .cta-section > .container { position: relative;
      z-index: 2; }
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .narrative-grid { grid-template-columns: 1fr; gap: 48px; }
  .narrative-visual { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-top { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-break-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-items { display: none; }
  .header { left: 8px; right: 8px; }
  .cap-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photos { grid-template-columns: 1fr; }
  .team-photo-main { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px 24px; }
  .stat-numbers { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .logo-strip-row { gap: 24px; }
}
@media (max-width: 480px) {
  .stack-logos-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .stat-numbers { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-l, .reveal-r { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
@media (max-width: 760px) {
  .wc-brand-sprite { opacity: 0.07; }
  .wc-brand-sprite--hero-c { width: 520px; right: -340px; bottom: -240px; }
  .wc-brand-sprite--hero-ribbon { width: 620px; left: -430px; right: auto; top: -220px; }
  .wc-brand-sprite--section-ribbon { width: 680px; right: -520px; }
  .wc-brand-sprite--section-c,
      .wc-brand-sprite--section-c-left { width: 360px; left: -260px; right: auto; }
  .wc-brand-sprite--vertical { display: none; }
}

/* ---- "Data Strategy" (data-strategy.html) ---- */
.section-dark { background: var(--g900); }
.section-tint { background: rgba(1,234,107,0.035); }
.section-light { background: var(--g100); color: var(--g900); }
.section-green { background: var(--green); color: var(--g900); }
.nav { max-width: var(--max-w);
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px; }
.logo-fallback span { color: var(--green); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.eyebrow, .hero-eyebrow { display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(1,234,107,0.22);
      background: var(--green-08);
      color: var(--green);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase; }
.eyebrow { padding: 6px 14px; margin-bottom: 18px; }
.eyebrow.dark { color: #145331; background: rgba(1,234,107,0.14); border-color: rgba(1,234,107,0.28); }
.section-light .section-sub { color: var(--g600); }
.center { text-align: center; }
.center .section-title, .center .section-sub { margin-left: auto; margin-right: auto; }
.hero::after { content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(1,234,107,0.5), transparent); }
.hl { background: linear-gradient(135deg, var(--green), #9cffc4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
.hero-strip span { display: flex; align-items: center; gap: 8px; color: var(--g300); font-size: 0.9rem; font-weight: 500; }
.hero-strip i { color: var(--green); font-size: 1rem; }
.strategy-panel { position: relative;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
      box-shadow: 0 30px 80px rgba(0,0,0,0.42);
      padding: 26px;
      overflow: hidden; }
.strategy-panel::before { content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: radial-gradient(circle at 50% 38%, #000, transparent 72%);
      pointer-events: none; }
.strategy-panel > * { position: relative; z-index: 1; }
.panel-top { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.panel-kicker { color: var(--g300); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.panel-score { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; font-weight: 800; }
.panel-score::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.roadmap { display: grid;
      gap: 14px;
      margin-bottom: 24px; }
.roadmap-item { display: grid;
      grid-template-columns: 46px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 15px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      background: rgba(0,0,0,0.28); }
.roadmap-num { width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #000;
      background: var(--green);
      font-weight: 800;
      font-size: 13px; }
.roadmap-title { font-weight: 800; font-size: 0.98rem; }
.roadmap-desc { color: var(--g300); font-size: 0.78rem; line-height: 1.45; }
.roadmap-pill { color: #9cffc4;
      background: rgba(1,234,107,0.1);
      border: 1px solid rgba(1,234,107,0.16);
      border-radius: var(--radius-full);
      padding: 5px 9px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em; }
.panel-footer { display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px; }
.metric { border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-md);
      padding: 14px;
      background: rgba(255,255,255,0.03); }
.metric strong { display: block; color: #fff; font-size: 1.25rem; line-height: 1; margin-bottom: 6px; }
.metric span { display: block; color: var(--g300); font-size: 0.72rem; line-height: 1.35; }
.statement { padding: 78px 0;
      background: var(--green);
      color: var(--g900); }
.statement .section-title { max-width: 900px; font-size: clamp(2rem, 4vw, 3.35rem); }
.statement p { max-width: 780px; color: rgba(0,0,0,0.67); font-size: 1.08rem; line-height: 1.75; }
.split-grid { display: grid;
      grid-template-columns: 0.88fr 1.12fr;
      gap: 72px;
      align-items: start; }
.copy-stack p { color: var(--g300);
      font-weight: 300;
      line-height: 1.85;
      margin-bottom: 18px; }
.highlight-box { border-left: 3px solid var(--green);
      padding: 22px 24px;
      margin-top: 26px;
      background: rgba(1,234,107,0.055);
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      color: #fff;
      font-size: 1.1rem;
      line-height: 1.65;
      font-weight: 500; }
.narrative-media { position: relative;
      margin-top: 30px;
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--g800); }
.narrative-media img { width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(0.95) contrast(1.02); }
.narrative-media::after { content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.76));
      pointer-events: none; }
.narrative-caption { position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 1;
      border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-md);
      background: rgba(0,0,0,0.74);
      backdrop-filter: blur(14px);
      padding: 13px 15px;
      color: var(--g200);
      font-size: 0.84rem;
      line-height: 1.45; }
.narrative-caption strong { display: block;
      color: var(--green);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 4px; }
.capability-accordion { max-width: 960px;
      margin: 48px auto 0;
      border-top: 1px solid var(--border-dark); }
.capability-item { border-bottom: 1px solid var(--border-dark); }
.capability-item summary { list-style: none;
      cursor: pointer;
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr) 34px;
      align-items: center;
      gap: 18px;
      padding: 26px 0;
      color: #fff; }
.capability-item summary::-webkit-details-marker { display: none; }
.capability-num { color: var(--green);
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.12em; }
.capability-title h3 { font-size: clamp(1.1rem, 2vw, 1.7rem);
      line-height: 1.15;
      margin-bottom: 6px; }
.capability-title p { color: var(--g400);
      font-size: 0.9rem;
      line-height: 1.5;
      font-weight: 300; }
.capability-toggle { width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(1,234,107,0.24);
      color: var(--green);
      transition: transform var(--tb), background var(--tb), color var(--tb); }
.capability-item[open] .capability-toggle { transform: rotate(45deg);
      background: var(--green);
      color: #000; }
.capability-details { display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      padding: 0 0 30px 72px; }
.capability-details div { border-left: 2px solid rgba(1,234,107,0.35);
      padding-left: 16px; }
.capability-details strong { display: block;
      color: #fff;
      font-size: 0.92rem;
      line-height: 1.3;
      margin-bottom: 6px; }
.capability-details p { color: var(--g300);
      font-size: 0.88rem;
      line-height: 1.6;
      font-weight: 300; }
.process-step h3 { font-size: 1rem; line-height: 1.25; margin-bottom: 10px; }
.problem-grid, .application-grid, .why-grid { display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 44px; }
.problem-card, .application-card, .why-card { border-radius: var(--radius-lg);
      padding: 24px;
      transition: transform var(--tb), border-color var(--tb), box-shadow var(--tb), background var(--tb); }
.problem-card { background: #fff;
      border: 1px solid var(--border-light); }
.problem-card:hover { transform: translateY(-4px); border-color: rgba(1,234,107,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.quote { color: var(--g900);
      font-size: 1rem;
      line-height: 1.45;
      font-weight: 800;
      margin-bottom: 14px;
      padding-left: 14px;
      border-left: 3px solid var(--green); }
.solution { color: var(--g600); font-size: 0.9rem; line-height: 1.65; font-weight: 300; }
.deliverable-board { display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 20px;
      margin-top: 46px;
      align-items: stretch; }
.deliverable-sidebar { border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(1,234,107,0.09), rgba(255,255,255,0.025)),
        rgba(255,255,255,0.02);
      padding: 22px;
      min-height: 100%; }
.deliverable-sidebar .kicker { color: var(--green);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 12px; }
.deliverable-sidebar h3 { font-size: 1.15rem;
      line-height: 1.18;
      margin-bottom: 14px; }
.deliverable-sidebar p { color: var(--g300);
      font-size: 0.86rem;
      line-height: 1.58;
      font-weight: 300; }
.deliverable-phases { list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 24px; }
.deliverable-phases li { display: flex;
      align-items: center;
      gap: 9px;
      color: var(--g200);
      font-size: 0.86rem;
      font-weight: 600; }
.deliverable-phases span { width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green);
      color: #000;
      font-size: 0.72rem;
      font-weight: 800;
      flex-shrink: 0; }
.deliverable-matrix { display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid var(--border-dark);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: rgba(255,255,255,0.02); }
.deliverable-group { padding: 22px;
      min-height: 220px;
      border-right: 1px solid var(--border-dark);
      border-bottom: 1px solid var(--border-dark); }
.deliverable-group:nth-child(2n) { border-right: 0; }
.deliverable-group:nth-last-child(-n+2) { border-bottom: 0; }
.deliverable-group header { display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px; }
.deliverable-group .group-index { width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(1,234,107,0.1);
      border: 1px solid rgba(1,234,107,0.22);
      color: var(--green);
      font-size: 0.82rem;
      font-weight: 800;
      flex-shrink: 0; }
.deliverable-group h3 { font-size: 1rem;
      line-height: 1.22; }
.deliverable-list { list-style: none;
      display: grid;
      gap: 12px; }
.deliverable-list li { display: grid;
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      color: var(--g300);
      font-size: 0.86rem;
      line-height: 1.5;
      font-weight: 300; }
.deliverable-list i { color: var(--green);
      font-size: 0.9rem;
      margin-top: 4px; }
.deliverable-list strong { display: block;
      color: #fff;
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 2px; }
.application-card, .why-card { background: rgba(255,255,255,0.03);
      border: 1px solid var(--border-dark); }
.application-card:hover, .why-card:hover { transform: translateY(-5px); border-color: rgba(1,234,107,0.2); background: rgba(1,234,107,0.045); }
.card-icon { width: 42px;
      height: 42px;
      border-radius: var(--radius-md);
      display: grid;
      place-items: center;
      background: var(--green-08);
      border: 1px solid rgba(1,234,107,0.15);
      color: var(--green);
      font-size: 1.15rem;
      margin-bottom: 18px; }
.application-card h3, .why-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.application-card p, .why-card p { color: var(--g300); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }
.applications-section { background: #fff;
      color: var(--g900); }
.applications-section .application-card { background: #fff;
      border: 1px solid var(--border-light);
      box-shadow: 0 14px 34px rgba(0,0,0,0.055); }
.applications-section .application-card:hover { transform: translateY(-5px);
      border-color: rgba(1,234,107,0.55);
      background: #fff;
      box-shadow: 0 22px 44px rgba(0,0,0,0.09); }
.applications-section .card-icon { background: #05150c;
      border-color: rgba(1,234,107,0.38);
      color: var(--green);
      box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.applications-section .application-card h3 { color: var(--g900); }
.applications-section .application-card p { color: var(--g500); }
.institutional-grid { display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: center; }
.institutional-copy p { color: rgba(0,0,0,0.67); line-height: 1.8; margin-bottom: 18px; }
.institutional-list { display: grid; gap: 12px; }
.institutional-item { display: flex;
      gap: 12px;
      align-items: flex-start;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: var(--radius-md);
      padding: 16px;
      background: rgba(255,255,255,0.38);
      color: rgba(0,0,0,0.72);
      font-weight: 500; }
.institutional-item i { color: #000; margin-top: 3px; }
.footer-col h4 { color: var(--g200); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.header .logo { display: flex; align-items: center; flex-shrink: 0; }
.header .logo img { width: 174px; height: auto; }
.mi:hover .ic i { color: #000; }
.pc:hover .pt, .pc:hover .pd { color: rgba(0,0,0,0.58); }
.page-data-strategy .hero-grid { display: block;
      max-width: 920px; }
.page-data-strategy .hero { padding: 166px 0 90px;
      background:
        radial-gradient(ellipse at 82% 6%, rgba(1,234,107,0.12), transparent 38%),
        radial-gradient(ellipse at 10% 90%, rgba(0,246,226,0.06), transparent 36%),
        #000; }
.page-data-strategy .hero h1 { max-width: 900px; }
.page-data-strategy .hero-lead { max-width: 760px; }
.page-data-strategy .hero-strip { display: flex;
      flex-wrap: wrap;
      max-width: 900px; }
.page-data-strategy .strategy-panel { display: none; }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.page-empty { flex: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 140px 24px 80px;
      position: relative; z-index: 1;
      text-align: center; gap: 20px; }
.page-empty .eyebrow { display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 18px; border-radius: var(--radius-full);
      background: rgba(1,234,107,0.08); border: 1px solid rgba(1,234,107,0.18);
      font-size: 12px; font-weight: 600; color: var(--green);
      letter-spacing: 0.08em; text-transform: uppercase; }
.page-empty .eyebrow .icon-svg { width: 14px; height: 14px; color: currentColor; }
.page-empty h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -1.5px; }
.page-empty h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-empty p { font-size: 1.05rem; color: var(--g300); max-width: 480px; font-weight: 300; }
.page-empty .hint { display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; color: var(--g400); margin-top: 8px; }
.page-empty .hint .icon-svg { color: var(--green); width: 1rem; height: 1rem; }
.wc-brand-sprite { position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0.1; }
.wc-brand-sprite--hero-c { width: min(720px, 58vw);
      right: -260px;
      bottom: -300px;
      opacity: 0.18; }
.wc-brand-sprite--hero-ribbon { width: min(880px, 70vw);
      left: -430px;
      top: -250px;
      opacity: 0.1; }
.wc-brand-sprite--section-ribbon { width: min(860px, 68vw);
      right: -430px;
      top: -260px;
      opacity: 0.085; }
.wc-brand-sprite--section-c { width: min(560px, 46vw);
      left: -250px;
      bottom: -220px;
      opacity: 0.1; }
.wc-brand-sprite--section-c-left { width: min(540px, 44vw);
      left: -260px;
      bottom: -250px;
      opacity: 0.095; }
.wc-brand-sprite--vertical { width: min(300px, 26vw);
      right: -88px;
      top: -120px;
      opacity: 0.16; }
.section > .container,
    .hero > .container,
    .statement > .container,
    .statement-section > .container,
    .cta-section > .container { position: relative;
      z-index: 2; }
@media (max-width: 1080px) {
  .hero-grid, .split-grid, .institutional-grid { grid-template-columns: 1fr; gap: 44px; }
  .strategy-panel { max-width: 680px; }
  .capability-details { grid-template-columns: 1fr; gap: 16px; padding-left: 72px; }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .problem-grid, .application-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .logo img { width: 120px; }
  .section { padding: 72px 0; }
  .hero { padding: 132px 0 72px; }
  .hero-strip, .panel-footer, .deliverable-board, .deliverable-matrix, .process-grid, .problem-grid, .application-grid, .why-grid, .footer-main { grid-template-columns: 1fr; }
  .capability-item summary { grid-template-columns: 38px minmax(0, 1fr) 32px; gap: 12px; padding: 22px 0; }
  .capability-details { padding-left: 50px; }
  .deliverable-group,
      .deliverable-group:nth-child(2n),
      .deliverable-group:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--border-dark); }
  .deliverable-group:last-child { border-bottom: 0; }
  .roadmap-item { grid-template-columns: 42px minmax(0, 1fr); }
  .roadmap-pill { grid-column: 2; justify-self: start; }
  .hero-ctas .btn, .cta-section .btn { width: 100%; white-space: normal; text-align: center; }
  .wc-brand-sprite { opacity: 0.07; }
  .wc-brand-sprite--hero-c { width: 520px; right: -340px; bottom: -240px; }
  .wc-brand-sprite--hero-ribbon { width: 620px; left: -430px; right: auto; top: -220px; }
  .wc-brand-sprite--section-ribbon { width: 680px; right: -520px; }
  .wc-brand-sprite--section-c,
      .wc-brand-sprite--section-c-left { width: 360px; left: -260px; right: auto; }
  .wc-brand-sprite--vertical { display: none; }
}
@media (max-width: 460px) {
  .container { padding: 0 20px; }
  .strategy-panel { padding: 18px; }
  .hero h1 { font-size: 2.35rem; }
  .section-title { font-size: 1.82rem; }
  .panel-top { flex-direction: column; }
}
@media (max-width: 920px) {
  .nav-items { display: none; }
  .header { left: 8px; right: 8px; padding: 12px 16px; }
  .header .logo img { width: 142px; }
}

/* ---- "Modelos sob Medida" (modelos-sob-medida.html) ---- */
.stat-break { padding: 80px 0; background: var(--g100); color: var(--g900); position: relative; z-index: 1; }
.stat-break-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stat-break h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.stat-break h2 span { color: #000; }
.stat-break p { font-size: 1rem; color: var(--g600); font-weight: 300; line-height: 1.75; }
.stat-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box { padding: 24px; border-radius: var(--radius-lg); background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; }
.stat-box:hover { background: rgba(1,234,107,0.15); border-color: rgba(1,234,107,0.3); transform: translateY(-4px); }
.page-modelos { --ink: #050807;
      --moss: #0f1f18;
      --soft-green: rgba(1,234,107,0.12);
      --soft-green-2: rgba(1,234,107,0.06); }
.page-modelos .hero { background:
        radial-gradient(ellipse at 72% 20%, rgba(1,234,107,0.075), transparent 42%),
        radial-gradient(ellipse at 12% 80%, rgba(255,255,255,0.025), transparent 42%),
        #000; }
.page-modelos .hero h1 .hl,
    .page-modelos .cta-section h2 .hl { background: linear-gradient(135deg, var(--green), #b6ffd2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text; }
.page-modelos .hero-img-wrap { border-radius: 999px 999px var(--radius-xl) var(--radius-xl);
      border-color: rgba(1,234,107,0.18); }
.page-modelos .hero-img-wrap::after { background: linear-gradient(135deg, rgba(1,234,107,0.18), rgba(255,255,255,0.035) 52%, transparent 78%); }
.page-modelos .hero-img-glow { background: rgba(1,234,107,0.14); }
.page-modelos .ms-intelligence-strip { background: linear-gradient(90deg, rgba(1,234,107,0.055), rgba(255,255,255,0.018), rgba(1,234,107,0.035));
      border-color: rgba(1,234,107,0.12); }
.page-modelos .ms-intelligence-strip .logo-strip-label { color: var(--g300); }
.page-modelos .ms-intelligence-strip .tech-logo-item { opacity: 1;
      min-width: 136px;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.025); }
.page-modelos .ms-intelligence-strip .tech-logo-item span:last-child { color: var(--g300);
      text-align: center; }
.page-modelos .ms-statement { background:
        linear-gradient(135deg, rgba(1,234,107,0.08), rgba(255,255,255,0.025)),
        var(--ink);
      border-top: 1px solid rgba(1,234,107,0.13);
      border-bottom: 1px solid rgba(1,234,107,0.1);
      color: #fff; }
.page-modelos .ms-statement::before { background: rgba(1,234,107,0.07); filter: blur(20px); }
.page-modelos .ms-statement .statement-label { color: var(--green); }
.page-modelos .ms-statement .statement-h2 { color: #fff; }
.page-modelos .ms-statement .statement-body { color: var(--g200); }
.page-modelos .ms-statement .statement-body strong { color: #fff; }
.page-modelos .ms-narrative { background:
        radial-gradient(ellipse at 92% 20%, rgba(1,234,107,0.055), transparent 44%),
        #030303; }
.page-modelos .ms-capabilities { background: #f4f6f4;
      color: var(--g900); }
.page-modelos .ms-capabilities::before { background: radial-gradient(ellipse at 10% 0%, rgba(1,234,107,0.16), transparent 56%); }
.page-modelos .ms-capabilities .section-label { color: #087667; }
.page-modelos .ms-capabilities .section-sub,
    .page-modelos .ms-capabilities .cap-card p,
    .page-modelos .ms-capabilities .cap-featured p { color: var(--g600); }
.page-modelos .ms-capabilities .cap-featured,
    .page-modelos .ms-capabilities .cap-card { background: #fff;
      border-color: rgba(0,0,0,0.07);
      box-shadow: 0 10px 32px rgba(0,0,0,0.04); }
.page-modelos .ms-capabilities .cap-card-icon { background: rgba(1,234,107,0.08);
      border-color: rgba(1,234,107,0.22); }
.page-modelos .ms-capabilities .cap-card-icon i { color: #087667; }
.page-modelos .ms-method { background:
        linear-gradient(180deg, #050807 0%, var(--moss) 100%); }
.page-modelos .ms-method::before { background: radial-gradient(ellipse at 50% 0%, rgba(1,234,107,0.08), transparent 62%); }
.page-modelos .ds-problems { background: #111;
      color: #fff; }
.page-modelos .ds-problems .section-title { color: #fff; }
.page-modelos .ds-problems .section-sub { color: var(--g300); }
.page-modelos .ds-problems .section-label { color: var(--green);
      background: rgba(1,234,107,0.08);
      border: 1px solid rgba(1,234,107,0.18);
      border-radius: var(--radius-full);
      padding: 6px 14px; }
.page-modelos .ds-problems .prob-card { background: rgba(255,255,255,0.035);
      border-color: rgba(255,255,255,0.08); }
.page-modelos .ds-problems .prob-card .quote { color: var(--g100); border-left-color: rgba(1,234,107,0.5); }
.page-modelos .ds-problems .prob-card .solution { color: #9affbf; border-top-color: rgba(255,255,255,0.08); }
.page-modelos .ms-verticals { background-color: rgba(1,234,107,0.035); }
.page-modelos .ms-why { background:
        radial-gradient(ellipse at 20% 10%, rgba(1,234,107,0.055), transparent 44%),
        #000; }
.page-modelos .ms-governance { background:
        linear-gradient(135deg, #eafff1 0%, #f4f6f4 100%);
      color: var(--g900); }
.page-modelos .ms-governance::before { background: rgba(0,0,0,0.045); }
.page-modelos .ms-cta { background:
        radial-gradient(ellipse at 50% 0%, rgba(1,234,107,0.075), transparent 48%),
        #000; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--g400); transition: color var(--tf); }
.footer-links a:hover { color: var(--green); }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-fallback span { color: var(--green); }
.page-empty { flex: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 140px 24px 80px;
      position: relative; z-index: 1;
      text-align: center; gap: 20px; }
.page-empty .eyebrow { display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 18px; border-radius: var(--radius-full);
      background: rgba(1,234,107,0.08); border: 1px solid rgba(1,234,107,0.18);
      font-size: 12px; font-weight: 600; color: var(--green);
      letter-spacing: 0.08em; text-transform: uppercase; }
.page-empty .eyebrow .icon-svg { width: 14px; height: 14px; color: currentColor; }
.page-empty h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -1.5px; }
.page-empty h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-empty p { font-size: 1.05rem; color: var(--g300); max-width: 480px; font-weight: 300; }
.page-empty .hint { display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; color: var(--g400); margin-top: 8px; }
.page-empty .hint .icon-svg { color: var(--green); width: 1rem; height: 1rem; }
.wc-brand-sprite { position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0.1; }
.wc-brand-sprite--hero-c { width: min(720px, 58vw);
      right: -260px;
      bottom: -300px;
      opacity: 0.18; }
.wc-brand-sprite--hero-ribbon { width: min(880px, 70vw);
      left: -430px;
      top: -250px;
      opacity: 0.1; }
.wc-brand-sprite--section-ribbon { width: min(860px, 68vw);
      right: -430px;
      top: -260px;
      opacity: 0.085; }
.wc-brand-sprite--section-c { width: min(560px, 46vw);
      left: -250px;
      bottom: -220px;
      opacity: 0.1; }
.wc-brand-sprite--section-c-left { width: min(540px, 44vw);
      left: -260px;
      bottom: -250px;
      opacity: 0.095; }
.wc-brand-sprite--vertical { width: min(300px, 26vw);
      right: -88px;
      top: -120px;
      opacity: 0.16; }
.section > .container,
    .hero > .container,
    .statement > .container,
    .statement-section > .container,
    .cta-section > .container { position: relative;
      z-index: 2; }
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .narrative-grid { grid-template-columns: 1fr; gap: 48px; }
  .narrative-visual { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-top { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-break-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-items { display: none; }
  .header { left: 8px; right: 8px; }
  .cap-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photos { grid-template-columns: 1fr; }
  .team-photo-main { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px 24px; }
  .stat-numbers { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .logo-strip-row { gap: 24px; }
}
@media (max-width: 480px) {
  .stack-logos-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .stat-numbers { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-l, .reveal-r { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
@media (max-width: 760px) {
  .wc-brand-sprite { opacity: 0.07; }
  .wc-brand-sprite--hero-c { width: 520px; right: -340px; bottom: -240px; }
  .wc-brand-sprite--hero-ribbon { width: 620px; left: -430px; right: auto; top: -220px; }
  .wc-brand-sprite--section-ribbon { width: 680px; right: -520px; }
  .wc-brand-sprite--section-c,
      .wc-brand-sprite--section-c-left { width: 360px; left: -260px; right: auto; }
  .wc-brand-sprite--vertical { display: none; }
}

/* =====================================================================
   HERO POR PÁGINA — classes exclusivas por página de serviço
   Cada página abaixo tem sua própria classe na <section> do hero
   (ex: hero-ds, hero-aa, hero-de, hero-ms, hero-dstr, hero-bi) com o
   CSS extraído 1:1 do HTML de referência de cada página. Isso elimina
   qualquer dependência de escopo por body class ou de cascata
   compartilhada com .hero/.hero-grid genéricos — cada página fica
   100% independente e não pode mais "vazar" nem "quebrar" por causa
   de outra página. Posicionado depois das regras .page-xxx .hero
   antigas para sempre vencer o empate de especificidade.
   ===================================================================== */

/* ---- Data Science & AI (.hero-ds) ---- */
.hero-ds {
	overflow: hidden;
	padding: 160px 0 80px;
	position: relative;
	z-index: 1;
	background:
		radial-gradient(ellipse at 72% 20%, rgba(1,234,107,0.075), transparent 42%),
		radial-gradient(ellipse at 12% 80%, rgba(255,255,255,0.025), transparent 42%),
		#000;
}
.hero-ds .hero-grid { display: block; max-width: 920px; }
.hero-ds .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: var(--radius-full); background: var(--green-08); border: 1px solid rgba(1,234,107,0.2); font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero-ds h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-ds h1 .hl { background: linear-gradient(135deg, var(--green), #b6ffd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-ds .hero-lead { font-size: 1.1rem; color: var(--g300); font-weight: 300; line-height: 1.75; margin-bottom: 36px; }
.hero-ds .hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-ds .hero-strip { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border-dark); }
.hero-ds .hero-strip-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--g300); font-weight: 500; }
.hero-ds .hero-strip-item i { color: var(--green); font-size: 1rem; }
.hero-ds .hero-visual { position: relative; }
.hero-ds .hero-img-wrap { border-radius: 999px 999px var(--radius-xl) var(--radius-xl); overflow: hidden; border: 1px solid rgba(1,234,107,0.18); position: relative; aspect-ratio: 4/3; }
.hero-ds .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-ds .hero-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,234,107,0.18), rgba(255,255,255,0.035) 52%, transparent 78%); pointer-events: none; }
.hero-ds .hero-img-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(1,234,107,0.14); filter: blur(60px); bottom: -60px; right: -60px; pointer-events: none; animation: blobFloat 8s ease-in-out infinite alternate; }
.hero-ds .hero-tag { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(16px); border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-ds .hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; flex-shrink: 0; }
.hero-ds .hero-tag span { font-size: 12px; font-weight: 600; color: var(--g200); }
@media (max-width: 1024px) {
	.hero-ds .hero-grid { grid-template-columns: 1fr; gap: 48px; }
	.hero-ds .hero-visual { display: none; }
}

/* ---- AI Agents (.hero-aa) ---- */
.hero-aa {
	overflow: hidden;
	padding: 160px 0 80px;
	position: relative;
	z-index: 1;
	background:
		radial-gradient(ellipse at 72% 20%, rgba(1,234,107,0.075), transparent 42%),
		radial-gradient(ellipse at 12% 80%, rgba(255,255,255,0.025), transparent 42%),
		#000;
}
.hero-aa .hero-grid { display: block; max-width: 920px; }
.hero-aa .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: var(--radius-full); background: var(--green-08); border: 1px solid rgba(1,234,107,0.2); font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero-aa h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-aa h1 .hl { background: linear-gradient(135deg, var(--green), #b6ffd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-aa .hero-lead { font-size: 1.1rem; color: var(--g300); font-weight: 300; line-height: 1.75; margin-bottom: 36px; }
.hero-aa .hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-aa .hero-strip { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border-dark); }
.hero-aa .hero-strip-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--g300); font-weight: 500; }
.hero-aa .hero-strip-item i { color: var(--green); font-size: 1rem; }
.hero-aa .hero-visual { position: relative; }
.hero-aa .hero-img-wrap { border-radius: 999px 999px var(--radius-xl) var(--radius-xl); overflow: hidden; border: 1px solid rgba(1,234,107,0.18); position: relative; aspect-ratio: 4/3; }
.hero-aa .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-aa .hero-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,234,107,0.18), rgba(255,255,255,0.035) 52%, transparent 78%); pointer-events: none; }
.hero-aa .hero-img-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(1,234,107,0.14); filter: blur(60px); bottom: -60px; right: -60px; pointer-events: none; animation: blobFloat 8s ease-in-out infinite alternate; }
.hero-aa .hero-tag { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(16px); border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-aa .hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; flex-shrink: 0; }
.hero-aa .hero-tag span { font-size: 12px; font-weight: 600; color: var(--g200); }
@media (max-width: 1024px) {
	.hero-aa .hero-grid { grid-template-columns: 1fr; gap: 48px; }
	.hero-aa .hero-visual { display: none; }
}

/* ---- Data Engineering (.hero-de) — sem tema de cor próprio no HTML de referência ---- */
.hero-de {
	overflow: hidden;
	padding: 160px 0 80px;
	position: relative;
	z-index: 1;
}
.hero-de .hero-grid { display: block; max-width: 920px; }
.hero-de .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: var(--radius-full); background: var(--green-08); border: 1px solid rgba(1,234,107,0.2); font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero-de h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-de h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-de .hero-lead { font-size: 1.1rem; color: var(--g300); font-weight: 300; line-height: 1.75; margin-bottom: 36px; }
.hero-de .hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-de .hero-strip { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border-dark); }
.hero-de .hero-strip-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--g300); font-weight: 500; }
.hero-de .hero-strip-item i { color: var(--green); font-size: 1rem; }
.hero-de .hero-visual { position: relative; }
.hero-de .hero-img-wrap { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-dark); position: relative; aspect-ratio: 4/3; }
.hero-de .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-de .hero-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,234,107,0.15), transparent 50%); pointer-events: none; }
.hero-de .hero-img-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(1,234,107,0.15); filter: blur(60px); bottom: -60px; right: -60px; pointer-events: none; animation: blobFloat 8s ease-in-out infinite alternate; }
.hero-de .hero-tag { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(16px); border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-de .hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; flex-shrink: 0; }
.hero-de .hero-tag span { font-size: 12px; font-weight: 600; color: var(--g200); }
@media (max-width: 1024px) {
	.hero-de .hero-grid { grid-template-columns: 1fr; gap: 48px; }
	.hero-de .hero-visual { display: none; }
}

/* ---- Modelos sob Medida (.hero-ms) ---- */
.hero-ms {
	overflow: hidden;
	padding: 160px 0 80px;
	position: relative;
	z-index: 1;
	background:
		radial-gradient(ellipse at 72% 20%, rgba(1,234,107,0.075), transparent 42%),
		radial-gradient(ellipse at 12% 80%, rgba(255,255,255,0.025), transparent 42%),
		#000;
}
.hero-ms .hero-grid { display: block; max-width: 920px; }
.hero-ms .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: var(--radius-full); background: var(--green-08); border: 1px solid rgba(1,234,107,0.2); font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero-ms h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-ms h1 .hl { background: linear-gradient(135deg, var(--green), #b6ffd2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-ms .hero-lead { font-size: 1.1rem; color: var(--g300); font-weight: 300; line-height: 1.75; margin-bottom: 36px; }
.hero-ms .hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-ms .hero-strip { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border-dark); }
.hero-ms .hero-strip-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--g300); font-weight: 500; }
.hero-ms .hero-strip-item i { color: var(--green); font-size: 1rem; }
.hero-ms .hero-visual { position: relative; }
.hero-ms .hero-img-wrap { border-radius: 999px 999px var(--radius-xl) var(--radius-xl); overflow: hidden; border: 1px solid rgba(1,234,107,0.18); position: relative; aspect-ratio: 4/3; }
.hero-ms .hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-ms .hero-img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(1,234,107,0.18), rgba(255,255,255,0.035) 52%, transparent 78%); pointer-events: none; }
.hero-ms .hero-img-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(1,234,107,0.14); filter: blur(60px); bottom: -60px; right: -60px; pointer-events: none; animation: blobFloat 8s ease-in-out infinite alternate; }
.hero-ms .hero-tag { position: absolute; bottom: 20px; left: 20px; background: rgba(0,0,0,0.8); backdrop-filter: blur(16px); border: 1px solid var(--border-dark); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.hero-ms .hero-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; flex-shrink: 0; }
.hero-ms .hero-tag span { font-size: 12px; font-weight: 600; color: var(--g200); }
@media (max-width: 1024px) {
	.hero-ms .hero-grid { grid-template-columns: 1fr; gap: 48px; }
	.hero-ms .hero-visual { display: none; }
}

/* ---- Data Strategy (.hero-dstr) — hero de coluna única, sem imagem ---- */
.hero-dstr {
	position: relative;
	overflow: hidden;
	padding: 166px 0 90px;
	z-index: 1;
	background:
		radial-gradient(ellipse at 82% 6%, rgba(1,234,107,0.12), transparent 38%),
		radial-gradient(ellipse at 10% 90%, rgba(0,246,226,0.06), transparent 36%),
		#000;
}
.hero-dstr::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(1,234,107,0.5), transparent); }
.hero-dstr .hero-grid { display: block; max-width: 920px; }
.hero-dstr .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--radius-full); background: var(--green-08); border: 1px solid rgba(1,234,107,0.22); font-size: 11px; font-weight: 800; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.hero-dstr h1 { max-width: 900px; }
.hero-dstr h1 .hl { background: linear-gradient(135deg, var(--green), #9cffc4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-dstr .hero-lead { max-width: 760px; color: var(--g300); font-size: 1.1rem; font-weight: 300; line-height: 1.75; margin-bottom: 34px; }
.hero-dstr .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-dstr .hero-strip { display: flex; flex-wrap: wrap; gap: 12px 20px; max-width: 900px; padding-top: 28px; border-top: 1px solid var(--border-dark); }
.hero-dstr .hero-strip span { display: flex; align-items: center; gap: 8px; color: var(--g300); font-size: 0.9rem; font-weight: 500; }
.hero-dstr .hero-strip i { color: var(--green); }
@media (max-width: 760px) {
	.hero-dstr { padding: 132px 0 72px; }
}
@media (max-width: 460px) {
	.hero-dstr h1 { font-size: 2.35rem; }
}

/* ---- Business Intelligence (.hero-bi) — mesmo desenho do hero-dstr ---- */
.hero-bi {
	position: relative;
	overflow: hidden;
	padding: 166px 0 90px;
	z-index: 1;
	background:
		radial-gradient(ellipse at 82% 6%, rgba(1,234,107,0.12), transparent 38%),
		radial-gradient(ellipse at 10% 90%, rgba(0,246,226,0.06), transparent 36%),
		#000;
}
.hero-bi::after { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(1,234,107,0.5), transparent); }
.hero-bi .hero-grid { display: block; max-width: 920px; }
.hero-bi .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--radius-full); background: var(--green-08); border: 1px solid rgba(1,234,107,0.22); font-size: 11px; font-weight: 800; color: var(--green); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.hero-bi h1 { max-width: 900px; }
.hero-bi h1 .hl { background: linear-gradient(135deg, var(--green), #9cffc4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-bi .hero-lead { max-width: 760px; color: var(--g300); font-size: 1.1rem; font-weight: 300; line-height: 1.75; margin-bottom: 34px; }
.hero-bi .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-bi .hero-strip { display: flex; flex-wrap: wrap; gap: 12px 20px; max-width: 900px; padding-top: 28px; border-top: 1px solid var(--border-dark); }
.hero-bi .hero-strip span { display: flex; align-items: center; gap: 8px; color: var(--g300); font-size: 0.9rem; font-weight: 500; }
.hero-bi .hero-strip i { color: var(--green); }
@media (max-width: 760px) {
	.hero-bi { padding: 132px 0 72px; }
}
@media (max-width: 460px) {
	.hero-bi h1 { font-size: 2.35rem; }
}

/* ---- "Financeiro, Crédito & Risco" (financeiro-credito-risco.html) ---- */
.stat-break { padding: 80px 0; background: var(--g100); color: var(--g900); position: relative; z-index: 1; }
.stat-break-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stat-break h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.stat-break h2 span { color: #000; }
.stat-break p { font-size: 1rem; color: var(--g600); font-weight: 300; line-height: 1.75; }
.stat-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box { padding: 24px; border-radius: var(--radius-lg); background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); text-align: center; transition: all 0.3s ease; }
.stat-box:hover { background: rgba(1,234,107,0.15); border-color: rgba(1,234,107,0.3); transform: translateY(-4px); }
.demo-section { background:
        radial-gradient(ellipse at 88% 14%, rgba(1,234,107,0.14), transparent 46%),
        #f4f6f4;
      color: var(--g900);
      overflow: hidden; }
.demo-grid { display: grid;
      grid-template-columns: 0.78fr 1.22fr;
      gap: 56px;
      align-items: center; }
.demo-copy p { color: var(--g600);
      font-weight: 300;
      line-height: 1.75;
      margin-bottom: 18px; }
.demo-list { display: grid;
      gap: 10px;
      margin-top: 28px; }
.demo-list span { display: flex;
      align-items: center;
      gap: 10px;
      color: var(--g700);
      font-size: 0.92rem;
      font-weight: 500; }
.demo-list i { color: var(--green); }
.demo-player { position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.08);
      background: #fff;
      box-shadow: 0 24px 70px rgba(0,0,0,0.12); }
.demo-player::before { content: '';
      display: block;
      aspect-ratio: 16 / 9; }
.demo-player video,
    .demo-placeholder { position: absolute;
      inset: 0;
      width: 100%;
      height: 100%; }
.demo-player video { object-fit: cover;
      background: #050807;
      z-index: 1; }
.demo-placeholder { display: grid;
      place-items: center;
      pointer-events: none;
      z-index: 0;
      background:
        linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42)),
        url('img/fotos/photo-narrative.png') center/cover no-repeat; }
.demo-play { width: 72px;
      height: 72px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #000;
      background: var(--green);
      box-shadow: var(--shadow-green);
      font-size: 1.55rem; }
.demo-caption { position: absolute;
      z-index: 2;
      left: 18px;
      right: 18px;
      bottom: 18px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding: 12px 14px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(0,0,0,0.08);
      backdrop-filter: blur(14px);
      color: var(--g600);
      font-size: 0.82rem;
      font-weight: 600; }
.demo-caption strong { color: var(--g900); }
.demo-section .section-label { color: #087667; }
.demo-section .section-title { color: var(--g900); }
.metric-board { margin-top: 48px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: stretch; }
.metric-panel { border-radius: var(--radius-xl);
      border: 1px solid rgba(1,234,107,0.16);
      background:
        linear-gradient(145deg, rgba(1,234,107,0.08), rgba(255,255,255,0.025));
      padding: 32px; }
.metric-panel h3 { font-size: clamp(1.45rem, 2.5vw, 2.1rem);
      line-height: 1.15;
      margin-bottom: 14px; }
.metric-panel p { color: var(--g300);
      line-height: 1.75;
      font-weight: 300; }
.metric-flow { display: grid;
      gap: 12px; }
.metric-row { display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-dark);
      background: rgba(255,255,255,0.03); }
.metric-index { width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      display: grid;
      place-items: center;
      background: rgba(1,234,107,0.1);
      color: var(--green);
      font-weight: 800; }
.metric-row h4 { font-size: 0.98rem; margin-bottom: 3px; }
.metric-row p { color: var(--g300);
      font-size: 0.86rem;
      line-height: 1.55;
      font-weight: 300; }
.metric-pill { white-space: nowrap;
      border-radius: var(--radius-full);
      border: 1px solid rgba(1,234,107,0.22);
      color: var(--green);
      padding: 6px 12px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase; }
.fin-hero > .container { position: relative; z-index: 2; }
.page-financeiro .header { background: rgba(10,10,10,0.88);
      border-color: rgba(1,234,107,0.12);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 24px rgba(0,0,0,0.18); }
.fin-hero { position: relative; z-index: 1; overflow: hidden; background: #fff; color: var(--g900); padding: 172px 0 0; }
.fin-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 12% 0%, rgba(1,234,107,0.10), transparent 55%), radial-gradient(ellipse at 100% 30%, rgba(1,234,107,0.06), transparent 50%); pointer-events: none; }
.fin-hero-inner { max-width: 820px; position: relative; }
.fin-hero .eyebrow-pill { background: rgba(1,234,107,0.08); border-color: rgba(1,234,107,0.25); color: #087a45; }
.fin-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.2px; color: var(--g900); margin-bottom: 22px; }
.fin-hero-lead { font-size: 1.15rem; font-weight: 500; color: var(--g900); line-height: 1.6; margin-bottom: 18px; }
.fin-hero-body { font-size: 1rem; font-weight: 400; color: var(--g600); line-height: 1.75; max-width: 700px; margin-bottom: 40px; }
.fin-hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.fin-hero .btn-o { color: var(--g900); border-color: rgba(0,0,0,0.15); }
.fin-hero .btn-o:hover { background: var(--green); border-color: var(--green); color: #000; }
.fin-quicknav { position: relative; margin-top: 56px; padding: 28px 0 40px; border-top: 1px solid rgba(0,0,0,0.08); display: flex; flex-wrap: wrap; gap: 10px; }
.fin-quicknav a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-full); border: 1px solid rgba(0,0,0,0.1); font-size: 13px; font-weight: 600; color: var(--g700); background: rgba(0,0,0,0.02); transition: all 0.3s ease; }
.fin-quicknav a i { color: var(--green); font-size: 1rem; }
.fin-quicknav a:hover { background: var(--green); border-color: var(--green); color: #000; transform: translateY(-2px); }
.fin-quicknav a:hover i { color: #000; }
.fin-narrative-copy p { font-size: 1.02rem; color: var(--g300); line-height: 1.8; font-weight: 300; margin-bottom: 18px; max-width: 900px; }
.fin-narrative-accent { font-size: 1.15rem; color: #fff; font-weight: 500; line-height: 1.65; border-left: 3px solid var(--green); padding-left: 24px; margin-top: 8px; max-width: 820px; }
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; flex-shrink: 0; color: inherit; overflow: visible; }
.decision-box { padding: 18px 22px; border-radius: var(--radius-md); background: rgba(1,234,107,0.05); border: 1px solid rgba(1,234,107,0.16); }
.decision-box .lbl { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 7px; }
.decision-box p { font-size: 0.9rem; color: var(--g100); font-weight: 400; line-height: 1.6; }
.result-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.result-tag { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: var(--radius-full); background: rgba(0,0,0,0.07); border: 1px solid rgba(0,0,0,0.12); font-size: 13px; font-weight: 600; color: var(--g900); }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--radius-full); background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark); font-size: 13.5px; font-weight: 500; color: var(--g200); transition: all 0.3s ease; }
.chip:hover { border-color: rgba(1,234,107,0.3); background: rgba(1,234,107,0.05); }
.check-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 36px; margin-top: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; font-weight: 500; color: var(--g700); line-height: 1.55; }
.check-list li .icon { color: #087a45; margin-top: 2px; }
.fraud-diff {
	background: #fff;
	color: var(--g900);
}
.fraud-diff .section-title {
	color: var(--g900);
}
.fraud-diff .narrative-copy p {
	color: var(--g700);
	font-weight: 400;
}
.fraud-diff .narrative-accent {
	color: var(--g900);
	background: rgba(1, 234, 107, 0.06);
	border-left-color: var(--green);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-right: 20px;
}
.fraud-diff-card {
	background: #f7faf8;
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}
.fraud-diff-card:hover {
	background: #f3f8f5;
	box-shadow: 0 22px 56px rgba(0, 0, 0, 0.12);
}
.fraud-diff-card h3 {
	color: var(--g900);
}
.fraud-diff .team-feat {
	color: var(--g700);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius-md);
	padding: 10px 12px;
	font-weight: 600;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fraud-diff .team-feat:hover {
	background: rgba(1, 234, 107, 0.14);
	border-color: rgba(1, 234, 107, 0.45);
	color: var(--g900);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.fraud-diff .team-feat .icon {
	width: 1rem;
	height: 1rem;
	color: var(--green);
}
.fraud-diff-icon {
	width: 96px;
	height: 96px;
	min-width: 96px;
	border-radius: 22px;
	background: var(--green);
	color: #000;
}
.fraud-diff-icon .icon {
	width: 44px;
	height: 44px;
	stroke-width: 2;
}

.page-comercial-revenue .section-label.dark {
	color: var(--green);
}
.page-comercial-revenue .comercial-areas,
.page-comercial-revenue .comercial-method {
	background: var(--white);
	color: var(--g900);
}
.page-comercial-revenue .comercial-areas .section-title,
.page-comercial-revenue .comercial-areas .cap-card h3,
.page-comercial-revenue .comercial-method .section-title {
	color: var(--g900);
}
.page-comercial-revenue .comercial-areas .section-sub,
.page-comercial-revenue .comercial-method .section-sub {
	color: var(--g600);
	font-weight: 400;
}
.page-comercial-revenue .section-label .icon,
.page-comercial-revenue .cap-card-icon .icon,
.page-comercial-revenue .fin-quicknav a .icon,
.page-comercial-revenue .team-feat .icon {
	color: var(--green);
}
.page-comercial-revenue .fin-hero .eyebrow-pill {
	color: var(--green);
}
.page-comercial-revenue .fin-quicknav a:hover .icon {
	color: var(--black);
}
.page-comercial-revenue #atuacao .cap-card {
	background: var(--white);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
}
.page-comercial-revenue #atuacao .cap-card:hover {
	background: var(--g50);
	border-color: var(--green-20);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}
.page-comercial-revenue #atuacao .cap-card h3 {
	color: var(--g900);
}
.page-comercial-revenue #atuacao .cap-card p {
	color: var(--g700);
	font-weight: 400;
}
.page-comercial-revenue #atuacao .cap-card-icon {
	background: var(--green-10);
	border-color: var(--green-20);
}
.page-comercial-revenue .comercial-pains {
	background: var(--g50);
	color: var(--g900);
}
.page-comercial-revenue .comercial-pains .section-label,
.page-comercial-revenue .comercial-method .section-label,
.page-comercial-revenue .comercial-questions .section-label,
.page-comercial-revenue .comercial-areas .section-label {
	color: var(--green);
}
.page-comercial-revenue .comercial-pains .section-title,
.page-comercial-revenue .comercial-method .section-title,
.page-comercial-revenue .comercial-questions .section-title {
	color: var(--g900);
}
.page-comercial-revenue .comercial-pains .check-list {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius-lg);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
	padding: 28px;
}
.page-comercial-revenue .comercial-pains .check-list li {
	color: var(--g800);
	font-weight: 600;
}
.page-comercial-revenue .comercial-pains .check-list li .icon {
	color: var(--green);
}
.page-comercial-revenue .comercial-questions .narrative-copy p,
.page-comercial-revenue .comercial-method .section-sub,
.page-comercial-revenue .fin-narrative-copy--light p {
	color: var(--g700);
	font-weight: 400;
}
.page-comercial-revenue .fin-narrative-copy--light .fin-narrative-accent {
	color: var(--g900);
	background: var(--green-08);
	border-left-color: var(--green);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	padding: 18px 20px 18px 24px;
}
.page-comercial-revenue .comercial-question-card {
	align-items: flex-start;
	background: var(--white);
	border-color: rgba(0, 0, 0, 0.08);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}
.page-comercial-revenue .comercial-question-icon {
	width: 96px;
	height: 96px;
	min-width: 96px;
	border-radius: 22px;
	background: var(--green);
	color: var(--black);
	flex-shrink: 0;
}
.page-comercial-revenue .comercial-question-icon .icon {
	width: 44px;
	height: 44px;
	color: var(--black);
}
.page-comercial-revenue .comercial-questions .cap-featured h3 {
	color: var(--g900);
}
.page-comercial-revenue .comercial-questions .team-feat {
	color: var(--g700);
	background: var(--g50);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: var(--radius-md);
	padding: 10px 12px;
	font-weight: 600;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.page-comercial-revenue .comercial-questions .team-feat:hover {
	background: rgba(1, 234, 107, 0.12);
	border-color: rgba(1, 234, 107, 0.45);
	color: var(--g900);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.page-comercial-revenue .cta-section {
	background: var(--black);
	color: var(--white);
}
.page-comercial-revenue .cta-section .eyebrow-pill {
	color: var(--green);
	background: var(--green-08);
	border-color: var(--green-20);
}
.page-comercial-revenue .cta-section h2 {
	color: var(--white);
}
.page-comercial-revenue .cta-section h2 .hl {
	background: var(--green);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.page-comercial-revenue .cta-section .sub {
	color: var(--g300);
}

/* ===== INTEGRATIONS AUTO SLIDER (Onde Atuamos / Marketing & Growth) ===== */
.wc-integ-section {
	overflow: hidden;
}
.wc-integ-wrap {
	position: relative;
	margin-top: 40px;
	overflow: hidden;
}
.wc-integ-track {
	--integ-w: 176px;
	--integ-gap: 18px;
	--integ-count: 12;
	display: flex;
	align-items: stretch;
	gap: var(--integ-gap);
	width: max-content;
	padding: 4px 0 6px;
	animation: wc-integ-scroll 34s linear infinite;
}
.wc-integ-track:hover {
	animation-play-state: paused;
}
/* Os dois grupos (original + duplicado) viram itens diretos do mesmo
   flex container acima, para o "gap" ficar igual em todo o loop
   (inclusive na costura entre um grupo e outro). */
.wc-integ-slider {
	display: contents;
}
.wc-integ-card {
	width: var(--integ-w);
	height: 148px;
	flex: 0 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 14px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 16px;
	padding: 20px;
	transition: border-color 0.25s ease, background 0.25s ease;
}
.wc-integ-card:hover {
	border-color: rgba(0, 0, 0, 0.18);
	background: var(--g50);
}
.wc-integ-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(1, 234, 107, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--g900);
	flex-shrink: 0;
}
.wc-integ-card-icon .icon {
	width: 20px;
	height: 20px;
}
.wc-integ-card span {
	font-weight: 700;
	font-size: 0.88rem;
	line-height: 1.35;
	color: var(--g900);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@keyframes wc-integ-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(calc(-1 * var(--integ-count) * (var(--integ-w) + var(--integ-gap)))); }
}
@media (max-width: 760px) {
	.wc-integ-track { --integ-w: 150px; animation-duration: 24s; }
	.wc-integ-card { height: 140px; }
}
.cycle-list { margin-top: 40px; border-top: 1px solid var(--border-dark); }
.cycle-item { border-bottom: 1px solid var(--border-dark); }
.cycle-item summary.cycle-summary { list-style: none; cursor: pointer; }
.cycle-item summary.cycle-summary::-webkit-details-marker { display: none; }
.cycle-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 4px; transition: background 0.3s ease; border-radius: 16px; }
.cycle-summary:hover { background: rgba(1,234,107,0.03); }
.cycle-summary-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.cycle-icon-badge { width: 48px; height: 48px; border-radius: 14px; background: var(--green-08); border: 1px solid rgba(1,234,107,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cycle-icon-badge .icon { color: var(--green); width: 1.25rem; height: 1.25rem; }
.cycle-summary-text { min-width: 0; }
.cycle-num { display: block; font-size: 11.5px; font-weight: 700; color: var(--green); letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 6px; }
.cycle-summary-text h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.35; color: #fff; }
.cycle-toggle { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.cycle-toggle .icon { width: 0.8rem; height: 0.8rem; color: var(--g300); }
.cycle-item[open] .cycle-toggle { transform: rotate(180deg); border-color: rgba(1,234,107,0.4); background: var(--green-08); }
.cycle-item[open] .cycle-toggle .icon { color: var(--green); }
.cycle-item[open] summary.cycle-summary { background: rgba(1,234,107,0.03); }
.cycle-body { padding: 4px 4px 36px; animation: cycleFade 0.35s ease; }
@keyframes cycleFade {  from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); }  }
.cycle-desc { font-size: 0.95rem; color: var(--g300); font-weight: 300; line-height: 1.75; max-width: 760px; margin-bottom: 22px; padding-left: 66px; }
.cycle-apps { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; margin-bottom: 22px; padding-left: 66px; }
.cycle-apps li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.9rem; color: var(--g200); font-weight: 400; line-height: 1.55; }
.cycle-apps li .icon { color: var(--green); margin-top: 3px; width: 0.9rem; height: 0.9rem; }
.cycle-body .decision-box { margin-left: 66px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--g400); transition: color var(--tf); }
.footer-links a:hover { color: var(--green); }
.logo-fallback { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-fallback span { color: var(--green); }
.page-empty { flex: 1;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 140px 24px 80px;
      position: relative; z-index: 1;
      text-align: center; gap: 20px; }
.page-empty .eyebrow { display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 18px; border-radius: var(--radius-full);
      background: rgba(1,234,107,0.08); border: 1px solid rgba(1,234,107,0.18);
      font-size: 12px; font-weight: 600; color: var(--green);
      letter-spacing: 0.08em; text-transform: uppercase; }
.page-empty .eyebrow .icon-svg { width: 14px; height: 14px; color: currentColor; }
.page-empty h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800;
      line-height: 1.08; letter-spacing: -1.5px; }
.page-empty h1 .hl { background: linear-gradient(135deg, var(--green), #6effb5);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-empty p { font-size: 1.05rem; color: var(--g300); max-width: 480px; font-weight: 300; }
.page-empty .hint { display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; color: var(--g400); margin-top: 8px; }
.page-empty .hint .icon-svg { color: var(--green); width: 1rem; height: 1rem; }
.wc-brand-sprite { position: absolute;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      opacity: 0.1; }
.wc-brand-sprite--hero-c { width: min(720px, 58vw);
      right: -260px;
      bottom: -300px;
      opacity: 0.18; }
.wc-brand-sprite--hero-ribbon { width: min(880px, 70vw);
      left: -430px;
      top: -250px;
      opacity: 0.1; }
.wc-brand-sprite--section-ribbon { width: min(860px, 68vw);
      right: -430px;
      top: -260px;
      opacity: 0.085; }
.wc-brand-sprite--section-c { width: min(560px, 46vw);
      left: -250px;
      bottom: -220px;
      opacity: 0.1; }
.wc-brand-sprite--section-c-left { width: min(540px, 44vw);
      left: -260px;
      bottom: -250px;
      opacity: 0.095; }
.wc-brand-sprite--vertical { width: min(300px, 26vw);
      right: -88px;
      top: -120px;
      opacity: 0.16; }
.section > .container,
    .hero > .container,
    .statement > .container,
    .statement-section > .container,
    .cta-section > .container { position: relative; z-index: 2; }
@media (max-width: 900px) {
  .cycle-apps { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .demo-grid,
      .metric-board { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 44px 1fr; }
  .metric-pill { grid-column: 2; width: fit-content; }
  .demo-caption { align-items: flex-start; flex-direction: column; gap: 4px; }
}
@media (max-width: 760px) {
  .fin-hero { padding-top: 140px; }
  .fin-quicknav { gap: 8px; }
  .cycle-desc, .cycle-apps { padding-left: 0; }
  .cycle-body .decision-box { margin-left: 0; }
  .wc-brand-sprite { opacity: 0.07; }
  .wc-brand-sprite--hero-c { width: 520px; right: -340px; bottom: -240px; }
  .wc-brand-sprite--hero-ribbon { width: 620px; left: -430px; right: auto; top: -220px; }
  .wc-brand-sprite--section-ribbon { width: 680px; right: -520px; }
  .wc-brand-sprite--section-c,
      .wc-brand-sprite--section-c-left { width: 360px; left: -260px; right: auto; }
  .wc-brand-sprite--vertical { display: none; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .narrative-grid { grid-template-columns: 1fr; gap: 48px; }
  .narrative-visual { display: none; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-top { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-break-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-items { display: none; }
  .header { left: 8px; right: 8px; }
  .cap-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stack-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .team-photos { grid-template-columns: 1fr; }
  .team-photo-main { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; padding: 40px 20px 24px; }
  .stat-numbers { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .logo-strip-row { gap: 24px; }
}
@media (max-width: 480px) {
  .stack-logos-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .stat-numbers { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-l, .reveal-r { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* =====================================================================
   A WECOGNO — página institucional (/sobre)
   Layout diferenciado: reaproveita tokens e componentes do site
   (eyebrow, section, split-grid, narrative-media, team-*, institutional-*)
   e adiciona peças exclusivas para uma página de posicionamento.
   ===================================================================== */

.page-sobre .section { padding: 100px 0; }

/* ---- Sub-navegação por âncoras (somente desktop) ---- */
.sobre-subnav {
	position: sticky;
	top: 84px;
	z-index: 40;
	display: flex;
	justify-content: center;
	padding: 14px 0;
	background: rgba(0,0,0,0.6);
	border-bottom: 1px solid var(--border-dark);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
.sobre-subnav-inner {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
}
.sobre-subnav a {
	padding: 8px 16px;
	border-radius: var(--radius-full);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--g300);
	border: 1px solid transparent;
	transition: all var(--tf);
	white-space: nowrap;
}
.sobre-subnav a:hover { color: #fff; }
.sobre-subnav a.active {
	color: var(--green);
	background: var(--green-10);
	border-color: rgba(1,234,107,0.28);
}
@media (max-width: 1024px) {
	.sobre-subnav { display: none; }
}

/* ---- Hero ---- */
.sobre-hero { padding: 220px 0 200px; position: relative; overflow: hidden; display: flex; justify-content: center; }
.sobre-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}
.sobre-hero h1 {
	font-size: clamp(2.6rem, 6vw, 5.2rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.025em;
	margin-bottom: 20px;
}
.sobre-hero-tagline {
	font-size: clamp(1.05rem, 2vw, 1.4rem);
	font-weight: 500;
	color: var(--green);
	letter-spacing: 0.02em;
}

/* ---- Selo sobre local de foto (marca onde inserir imagem real depois) ---- */
.photo-flag {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: var(--radius-full);
	background: rgba(0,0,0,0.72);
	border: 1px solid rgba(1,234,107,0.35);
	color: var(--green);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	backdrop-filter: blur(6px);
}
.photo-flag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 3px rgba(1,234,107,0.2);
}

/* ---- Bloco "We" / "Cogno" (cognitech) ---- */
.sobre-name-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin: 36px 0 28px;
}
.sobre-name-card {
	padding: 28px 26px;
	border-radius: var(--radius-lg);
	background: rgba(255,255,255,0.025);
	border: 1px solid var(--border-dark);
}
.sobre-name-card .tag {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 12px;
}
.sobre-name-card p { color: var(--g300); font-weight: 300; line-height: 1.7; font-size: 0.95rem; }

/* ---- Números de impacto — lista vertical, revelada por scroll ---- */
.sobre-stats-list {
	display: flex;
	flex-direction: column;
	margin: 56px 0 8px;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}
.sobre-stat {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 30px 8px;
	border-bottom: 1px solid var(--border-dark);
	cursor: default;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.35s ease;
}
.sobre-stat:last-child { border-bottom: none; }
.sobre-stat:hover { transform: translateX(6px); }
.sobre-stat-bullet {
	flex-shrink: 0;
	width: 9px;
	height: 9px;
	border-radius: 2px;
	background: var(--green);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.sobre-stat:hover .sobre-stat-bullet {
	transform: rotate(45deg) scale(1.3);
	box-shadow: 0 0 16px rgba(1,234,107,0.6);
}
.sobre-stat-num {
	flex-shrink: 0;
	min-width: 200px;
	font-size: clamp(2rem, 4.2vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--green);
	line-height: 1;
	transition: text-shadow 0.35s ease;
}
.sobre-stat:hover .sobre-stat-num { text-shadow: 0 0 28px rgba(1,234,107,0.5); }
.sobre-stat-lbl {
	font-size: 0.98rem;
	color: var(--g300);
	font-weight: 400;
	line-height: 1.55;
	transition: color 0.3s ease;
}
@media (max-width: 640px) {
	.sobre-stat { flex-wrap: wrap; gap: 6px 16px; padding: 24px 4px; }
	.sobre-stat-num { min-width: 0; width: 100%; }
	.sobre-stat-lbl { padding-left: 24px; }
}

.sobre-sectors { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.sobre-sectors span {
	padding: 8px 16px;
	border-radius: var(--radius-full);
	border: 1px solid var(--border-dark);
	background: rgba(255,255,255,0.03);
	font-size: 0.85rem;
	color: var(--g200);
	cursor: default;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.sobre-sectors span:hover {
	transform: translateY(-3px);
	border-color: rgba(1,234,107,0.4);
	background: rgba(1,234,107,0.1);
	color: var(--green);
}

/* ---- Públicos (pessoas) ---- */
.sobre-audience-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 40px;
}
.sobre-audience-card {
	padding: 30px 28px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-dark);
	background: rgba(255,255,255,0.025);
	transition: all var(--tf);
}
.sobre-audience-card:hover { border-color: rgba(1,234,107,0.3); background: rgba(1,234,107,0.045); transform: translateY(-4px); }
.sobre-audience-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.sobre-audience-card p { color: var(--g300); font-size: 0.92rem; font-weight: 300; line-height: 1.7; }

/* ---- Variante em seção verde (ex.: Pessoas e Cultura) ---- */
.section-green .section-sub { color: rgba(0,0,0,0.6); }
.section-green .sobre-audience-card {
	background: rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.12);
}
.section-green .sobre-audience-card:hover {
	background: #000;
	border-color: #000;
	transform: translateY(-4px);
}
.section-green .sobre-audience-card h3 { color: var(--g900); transition: color var(--tf); }
.section-green .sobre-audience-card p { color: rgba(0,0,0,0.62); transition: color var(--tf); }
.section-green .sobre-audience-card:hover h3 { color: #fff; }
.section-green .sobre-audience-card:hover p { color: rgba(255,255,255,0.75); }

/* ---- Posicionamento (quote) ---- */
.sobre-quote-block { max-width: 880px; margin: 0 auto; text-align: center; }
.sobre-quote-block blockquote {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.01em;
	margin-bottom: 28px;
}
.sobre-quote-block .closing {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--green);
	letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
	.sobre-hero-grid { grid-template-columns: 1fr; gap: 40px; }
	.sobre-hero { padding: 140px 0 72px; }
}
@media (max-width: 900px) {
	.sobre-name-grid, .sobre-audience-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   A WECOGNO — ajustes de ênfase (Cognitech + números primeiro) e
   variantes claras dos componentes reaproveitados, para intercalar
   mais branco entre as seções da página.
   ===================================================================== */

/* ---- Destaque da seção Cognitech ---- */
.sobre-cognitech-section { position: relative; overflow: hidden; }
.sobre-cognitech-section .container { position: relative; z-index: 1; }

/* ---- Mini-timeline horizontal (seção Trajetória) ---- */
.sobre-mini-timeline {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.12);
	position: relative;
}
.sobre-mini-timeline::before {
	content: "";
	position: absolute;
	top: 45px;
	left: 4%;
	right: 4%;
	height: 1px;
	background: linear-gradient(90deg, rgba(1,234,107,0.05), rgba(1,234,107,0.4) 15%, rgba(1,234,107,0.4) 85%, rgba(1,234,107,0.05));
}
.sobre-mini-timeline-item {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 0 6px;
}
.sobre-mini-timeline-item .dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--bg-dark, #0a0a0a);
	border: 2px solid var(--green);
	box-shadow: 0 0 0 4px rgba(1,234,107,0.12);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sobre-mini-timeline-item:hover .dot {
	transform: scale(1.3);
	box-shadow: 0 0 0 6px rgba(1,234,107,0.2);
}
.sobre-mini-timeline-item.is-final .dot {
	background: var(--green);
	border-color: var(--green);
}
.sobre-mini-timeline-item .year {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--green);
}
.sobre-mini-timeline-item .lbl {
	font-size: 0.82rem;
	font-weight: 300;
	line-height: 1.5;
	color: var(--g300, #b8b8b8);
	max-width: 170px;
}
.sobre-mini-timeline-item:hover .lbl { color: #fff; }
/* ---- Card de rebranding embutido no marco final da mini-timeline ---- */
.sobre-mini-timeline-item--rebrand {
	flex: 2.2 1 0;
	align-items: center;
}
.sobre-rebrand-card {
	margin-top: 6px;
	width: 100%;
	max-width: 340px;
	text-align: left;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 22px 26px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.sobre-mini-timeline-item--rebrand:hover .sobre-rebrand-card {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(1,234,107,0.2);
}
.sobre-rebrand-card-logos {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
}
.sobre-rebrand-card-logos img { height: 20px; width: auto; }
.sobre-rebrand-card-logos .arrow { color: var(--green); display: flex; align-items: center; font-size: 14px; }
.sobre-rebrand-card p {
	margin: 0;
	color: var(--g600);
	font-size: 0.82rem;
	font-weight: 300;
	line-height: 1.55;
}

@media (max-width: 900px) {
	.sobre-mini-timeline { flex-wrap: wrap; row-gap: 32px; }
	.sobre-mini-timeline::before { display: none; }
	.sobre-mini-timeline-item { flex: 1 1 40%; }
	.sobre-mini-timeline-item--rebrand { flex-basis: 100%; order: 99; }
	.sobre-rebrand-card { max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ---- Variantes claras (seções .section-light) ---- */
.section-light .sobre-stat { border-color: rgba(0,0,0,0.1); }
.section-light .sobre-stat-lbl { color: var(--g600); }
.section-light .sobre-stat:hover .sobre-stat-lbl { color: var(--g900); }
.section-light .highlight-box { color: var(--g900); background: rgba(1,234,107,0.08); }
.section-light .sobre-sectors span { color: var(--g700); border-color: rgba(0,0,0,0.1); background: #fff; }
.section-light .sobre-sectors span:hover { border-color: rgba(1,234,107,0.4); background: rgba(1,234,107,0.08); color: #0a7a3d; }
.section-light .btn-o { color: var(--g900); border-color: rgba(0,0,0,0.18); }
.section-light .sobre-name-card { background: #fff; border-color: rgba(0,0,0,0.08); }
.section-light .sobre-name-card p { color: var(--g600); }
.section-light .copy-stack p { color: var(--g600); }
.section-light .narrative-caption { color: var(--g100); }

/* =====================================================================
   A WECOGNO — "We" / "Cogno": composição central de destaque, com hover
   (sem painel — logos reais direto no fundo da seção, ocupando bastante
   espaço vertical para reforçar a ênfase pedida)
   ===================================================================== */
.sobre-wordmark-stage {
	position: relative;
	display: flex;
	justify-content: center;
	padding: 88px 0 72px;
	margin-top: 24px;
}
.sobre-wordmark-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(880px, 92%);
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(1,234,107,0.14), transparent 72%);
	filter: blur(6px);
	pointer-events: none;
	z-index: 0;
}
.sobre-wordmark-row {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	width: 100%;
}
.sobre-wordmark {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 68px;
	cursor: default;
}
.sobre-wordmark-svg {
	height: auto;
	max-width: 100%;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
/* Pesos calibrados manualmente: "we" é um traço curto e encorpado, "cogno" é
   um traço longo e fino — igualar apenas a altura os deixava com pesos
   visuais diferentes. Tamanhos aumentados para dar mais evidência ao
   conjunto, que é o foco visual central da seção. */
.sobre-wordmark-svg--we { width: clamp(170px, 19vw, 280px); }
.sobre-wordmark-svg--cogno { width: clamp(320px, 34vw, 480px); }
.sobre-wordmark:hover .sobre-wordmark-svg {
	transform: scale(1.08) translateY(-6px);
	filter: drop-shadow(0 10px 32px rgba(1,234,107,0.55));
}
.sobre-wordmark-rule {
	display: block;
	width: 56px;
	height: 3px;
	border-radius: 2px;
	background: var(--green);
	margin: 28px 0 18px;
	transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sobre-wordmark:hover .sobre-wordmark-rule { width: 128px; }
.sobre-wordmark-caption {
	color: var(--g300);
	font-size: 0.92rem;
	font-weight: 300;
	line-height: 1.65;
	max-width: 300px;
	opacity: 0.72;
	transition: opacity 0.35s ease, color 0.35s ease;
}
.sobre-wordmark:hover .sobre-wordmark-caption { opacity: 1; color: var(--g100); }
.sobre-wordmark-divider {
	width: 1px;
	align-self: stretch;
	background: linear-gradient(180deg, transparent, rgba(255,255,255,0.16), transparent);
}
@media (max-width: 900px) {
	.sobre-wordmark { padding: 0 32px; }
}
@media (max-width: 760px) {
	.sobre-wordmark-stage { padding: 56px 0 48px; }
	.sobre-wordmark-row { flex-direction: column; gap: 48px; }
	.sobre-wordmark { padding: 0; }
	.sobre-wordmark-divider { display: none; }
}

/* =====================================================================
   A WECOGNO — "Nossa Visão", composição assimétrica com pull-quote
   ===================================================================== */
.sobre-visao-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: start;
}
.sobre-pullquote {
	position: relative;
	max-width: 780px;
	margin: 64px auto 0;
	padding-left: 56px;
}
.sobre-pullquote-mark {
	position: absolute;
	left: -10px;
	top: -46px;
	font-size: 7rem;
	font-weight: 800;
	font-family: Georgia, serif;
	color: rgba(1,234,107,0.3);
	line-height: 1;
	pointer-events: none;
}
.sobre-pullquote p {
	font-size: clamp(1.35rem, 2.7vw, 1.9rem);
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.01em;
}
@media (max-width: 900px) {
	.sobre-visao-grid { grid-template-columns: 1fr; gap: 32px; }
	.sobre-pullquote { padding-left: 40px; margin-top: 48px; }
	.sobre-pullquote-mark { font-size: 5rem; top: -30px; }
}

/* ===== HOME — reorganização de conteúdo ===== */
.page-home .hero {
	max-width: none;
	min-height: 100svh;
	padding: 112px 0 0;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	gap: 28px;
	overflow: hidden;
}

.page-home .hero-content {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px 28px;
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.page-home .hero h1 {
	max-width: 1040px;
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	margin-bottom: 0;
}

.page-home .hero-content > p {
	max-width: 880px;
	margin: 12px auto 24px;
	line-height: 1.65;
}

.hero-partners {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 18px;
	background: var(--green);
	color: var(--black);
}

.hero-partners-heading {
	padding-bottom: 10px;
	text-align: center;
}

.page-home .hero .hero-partners-heading p {
	width: 100%;
	max-width: none;
	margin: 0;
	color: rgba(0, 0, 0, 0.62);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.partners-carousel {
	width: 100%;
	overflow: hidden;
	padding: 15px 0 17px;
}

.partners-carousel-track {
	display: flex;
	width: max-content;
	animation: homePartnersCarousel 22s linear infinite;
}

.partners-carousel-group {
	display: flex;
	min-width: 100vw;
	align-items: center;
	justify-content: space-around;
	gap: clamp(40px, 7vw, 120px);
	padding: 0 clamp(34px, 6vw, 96px);
	white-space: nowrap;
}

.partner-logo {
	display: grid;
	width: clamp(150px, 18vw, 240px);
	height: 62px;
	flex: 0 0 auto;
	place-items: center;
}

.partner-logo > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0);
}

.partner-logo--reclame-aqui,
.partner-logo--guia-de-moteis,
.partner-logo--suzano {
	width: 240px;
	height: 62px;
}

.partner-logo--reclame-aqui img {
	width: 220px;
	height: 44px;
	max-width: 220px;
	max-height: 44px;
}

.partner-logo--guia-de-moteis {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
}

.guia-logo-crop {
	position: relative;
	display: block;
	flex: 0 0 auto;
	overflow: hidden;
}

.guia-logo-crop img {
	position: absolute;
	display: block;
	max-width: none;
	height: auto;
	filter: brightness(0);
}

.guia-logo-icon {
	width: 50px;
	height: 54px;
}

.guia-logo-icon img {
	top: -8px;
	left: -65px;
	width: 185px;
}

.guia-logo-wordmark {
	width: 177px;
	height: 28px;
}

.guia-logo-wordmark img {
	top: -83px;
	left: -18px;
	width: 215px;
}

.partner-logo--suzano img {
	width: 210px;
	height: 50px;
	max-width: 210px;
	max-height: 50px;
}

.partner-count span {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	font-size: clamp(1.65rem, 2.8vw, 2.35rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
}

.partner-count small {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.partners-carousel:hover .partners-carousel-track,
.partners-carousel:focus-within .partners-carousel-track {
	animation-play-state: paused;
}

@keyframes homePartnersCarousel {
	to { transform: translateX(-50%); }
}

.home-stat-num {
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	font-weight: 800;
	color: var(--green);
	line-height: 1.05;
	margin-bottom: 10px;
}

.page-home .stat-card {
	padding: 28px 20px;
}

.page-home .stat-lbl {
	line-height: 1.5;
}

.page-home .solutions-grid-areas {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home .solutions-grid-areas .sol-card {
	display: flex;
	min-height: 290px;
	flex-direction: column;
	align-items: flex-start;
	padding: 32px 28px;
}

.page-home .solutions-grid-areas .sol-card p {
	margin-bottom: 8px;
}

.page-home .solutions-grid-areas .sol-card .btn {
	margin-top: auto;
}

@media (max-width: 900px) {
	.page-home .hero {
		min-height: 100svh;
		padding: 96px 0 0;
		gap: 16px;
	}

	.page-home .hero-content {
		padding: 0 20px 20px;
	}

	.page-home .hero h1 {
		font-size: clamp(2.05rem, 8vw, 3.25rem);
		margin-bottom: 0;
	}

	.page-home .hero-content > p {
		font-size: 1rem;
		margin: 10px auto 22px;
	}

	.page-home .solutions-grid-areas {
		grid-template-columns: 1fr;
	}

	.page-home .solutions-grid-areas .sol-card {
		min-height: 0;
	}
}

@media (max-width: 520px) {
	.page-home .hero-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.hero-partners {
		padding-top: 14px;
	}

	.hero-partners-heading {
		padding-bottom: 10px;
	}

	.partners-carousel {
		padding: 13px 0 15px;
	}

	.partners-carousel-group {
		gap: 34px;
		padding: 0 24px;
	}

	.partner-logo {
		width: 145px;
		height: 56px;
	}

	.partner-logo--reclame-aqui,
	.partner-logo--guia-de-moteis,
	.partner-logo--suzano {
		width: 220px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.partners-carousel-track {
		animation-play-state: paused;
	}
}
