/* ==========================================================================
   Klicaki — Tema Cinematográfico
   ========================================================================== */

:root {
	--black: #06060a;
	--dark: #0c0b14;
	--card: #11101d;
	--blue: #3b82f6;
	--lilac: #a855f7;
	--gradient: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
	--gradient-glow-blue: rgba(59, 130, 246, 0.12);
	--gradient-glow-lilac: rgba(168, 85, 247, 0.12);
	--text: #ffffff;
	--muted: #9499b5;
	--text-soft: rgba(255, 255, 255, 0.86);
	--text-secondary: rgba(255, 255, 255, 0.74);
	--border: rgba(168, 85, 247, 0.12);
	--ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
	--font-title: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset e base */
*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.8;
	color: var(--text);
	background: var(--black);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/* Grain — ruído cinematográfico */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9998;
	opacity: 0.025;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:root {
	--site-nav-height: 72px;
}

a { color: var(--blue); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--lilac); }

.container {
	width: min(1200px, 92vw);
	margin: 0 auto;
}

/* ==========================================================================
   Navegação cinematográfica
   ========================================================================== */

.site-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.85rem 0;
	background:
		linear-gradient(
			180deg,
			rgba(0, 85, 255, 0.1) 0%,
			rgba(0, 85, 255, 0.035) 55%,
			transparent 100%
		);
	transition: background 0.6s var(--ease-cinema), backdrop-filter 0.6s, border-color 0.6s;
}

.site-nav::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(0, 85, 255, 0.28) 18%,
		rgba(0, 85, 255, 0.5) 50%,
		rgba(0, 85, 255, 0.28) 82%,
		transparent 100%
	);
	box-shadow:
		0 0 10px rgba(0, 85, 255, 0.32),
		0 6px 28px rgba(0, 85, 255, 0.14);
	opacity: 0.72;
	transition: opacity 0.6s var(--ease-cinema), box-shadow 0.6s var(--ease-cinema);
}

.site-nav.is-scrolled {
	background:
		linear-gradient(
			180deg,
			rgba(0, 85, 255, 0.14) 0%,
			rgba(0, 85, 255, 0.05) 38%,
			rgba(6, 6, 10, 0.9) 100%
		);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 85, 255, 0.2);
}

.site-nav.is-scrolled::after {
	opacity: 1;
	box-shadow:
		0 0 14px rgba(0, 85, 255, 0.42),
		0 8px 32px rgba(0, 85, 255, 0.18);
}

.site-nav__inner {
	width: min(1200px, 92vw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	position: relative;
	z-index: 10012;
}

.site-nav__logo {
	flex-shrink: 0;
	max-width: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-4px);
	transition:
		max-width 0.55s var(--ease-cinema),
		opacity 0.45s var(--ease-cinema),
		transform 0.45s var(--ease-cinema);
	pointer-events: none;
}

.site-nav.is-past-hero .site-nav__logo {
	max-width: min(360px, 62vw);
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.logo a {
	font-family: var(--font-title);
	font-weight: 800;
	font-size: 1.5rem;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: -0.02em;
}

.logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}

.klicaki-logo {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.klicaki-logo--nav {
	height: clamp(46px, 5.8vw, 58px);
	width: auto;
	max-width: min(360px, 62vw);
}

.klicaki-logo--footer {
	height: clamp(56px, 9vw, 80px);
	width: auto;
	max-width: min(480px, 92vw);
}

.klicaki-logo--hero {
	height: clamp(180px, 30vw, 340px);
	width: auto;
	max-width: min(920px, 98vw);
	margin: 0 0 2rem;
	filter: drop-shadow(0 12px 40px rgba(59, 130, 246, 0.28));
}

.hero-logo {
	margin-bottom: 0.75rem;
}

.logo-accent {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.site-nav .nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav .nav-links a {
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.3s;
}

.site-nav .nav-links a:hover { color: var(--text); }

.btn-nav { display: inline-flex; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	position: relative;
	z-index: 10013;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: transform 0.4s var(--ease-cinema), opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
	display: none;
	position: fixed;
	top: var(--site-nav-height, 72px);
	left: 0;
	right: 0;
	bottom: 0;
	height: calc(100dvh - var(--site-nav-height, 72px));
	background: rgba(6, 6, 10, 0.98);
	z-index: 10010;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.25rem 1.5rem;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.45s var(--ease-cinema), visibility 0.45s;
	border-top: 1px solid var(--border);
}

.mobile-menu.is-open {
	display: flex;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mobile-menu__panel {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	width: min(100%, 22rem);
	max-height: 100%;
	gap: 0.75rem;
}

.mobile-menu__title {
	margin: 0 0 0.25rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	text-align: center;
}

.mobile-menu__links,
.mobile-menu .nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	border: 1px solid var(--border);
	border-radius: 10px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
}

.mobile-menu__links li + li,
.mobile-menu .nav-links li + li {
	border-top: 1px solid var(--border);
}

.mobile-menu__links a,
.mobile-menu .nav-links a {
	font-family: var(--font-title);
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.8rem 1rem;
	text-transform: none;
	letter-spacing: normal;
	transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__links a::after,
.mobile-menu .nav-links a::after {
	content: '→';
	font-size: 0.95rem;
	color: var(--blue);
	opacity: 0.7;
	flex-shrink: 0;
}

.mobile-menu__links a:active,
.mobile-menu .nav-links a:active,
.mobile-menu__links a:hover,
.mobile-menu .nav-links a:hover {
	background: rgba(0, 85, 255, 0.08);
	color: #fff;
}

.mobile-menu__cta {
	width: 100%;
	margin-top: 0.25rem;
	padding: 0.95rem 1rem;
	font-size: 0.95rem;
}

/* Botões */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	transition: opacity 0.3s, transform 0.3s var(--ease-cinema), border-color 0.3s, background 0.3s;
	will-change: transform;
}

.btn-primary {
	background: var(--gradient);
	color: #ffffff;
	border: none;
	padding: 0.9rem 2.2rem;
}

.btn-primary:hover {
	opacity: 0.88;
	transform: translateY(-1px);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(168, 85, 247, 0.35);
	padding: 0.9rem 2.2rem;
}

.btn-outline:hover {
	border-color: rgba(168, 85, 247, 0.7);
	background: rgba(168, 85, 247, 0.06);
	color: #fff;
}

/* Contacto telefónico — aviso legal ANACOM */
.phone-contact {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.phone-contact--inline {
	display: inline;
}

.phone-contact__link {
	color: var(--text);
	text-decoration: none;
}

.phone-contact__link:hover {
	color: var(--blue);
}

.phone-contact__legal,
.phone-btn__legal {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.72rem;
	line-height: 1.35;
	color: var(--muted);
	font-weight: 400;
}

.phone-btn {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
	text-align: left;
	line-height: 1.3;
}

.phone-btn__number {
	font-size: inherit;
	font-weight: 600;
}

.loja-ctas .phone-btn,
.cta-actions .phone-btn {
	align-items: center;
	text-align: center;
}

/* Cursor glow (desktop) */
.cursor-glow {
	position: fixed;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--gradient-glow-blue) 0%, transparent 70%);
	pointer-events: none;
	z-index: 9997;
	transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.4s;
}

@media (hover: hover) and (pointer: fine) {
	.cursor-glow.is-active { opacity: 1; }
}

/* ==========================================================================
   Sistema de reveal
   ========================================================================== */

.reveal {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 1.2s var(--ease-cinema), transform 1.2s var(--ease-cinema);
	will-change: transform, opacity;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal-left {
	transform: translateX(-60px);
}

.reveal-left.visible {
	transform: translateX(0);
}

.reveal-right {
	transform: translateX(60px);
}

.reveal-right.visible {
	transform: translateX(0);
}

.reveal-scale {
	transform: scale(0.95) translateY(40px);
}

.reveal-scale.visible {
	transform: scale(1) translateY(0);
}

.reveal-slow {
	transition-duration: 2s;
}

.reveal-zoom {
	transform: scale(0.96);
}

.reveal-zoom.visible {
	transform: scale(1);
}

/* ==========================================================================
   CENA 1 — Hero
   ========================================================================== */

.scene-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: var(--black);
	overflow: hidden;
}

.hero-brand-pattern {
	--hero-brand-x: 0px;
	--hero-brand-y: 0px;
	position: absolute;
	inset: -4%;
	z-index: 1;
	pointer-events: none;
	overflow: hidden;
	transform: translate3d(var(--hero-brand-x), var(--hero-brand-y), 0);
	will-change: transform;
}

.hero-brand-pattern__zoom {
	position: absolute;
	inset: -10%;
	background-image: var(--hero-brand-image);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale(1);
	animation: heroBrandZoom 26s ease-in-out infinite alternate;
	will-change: transform;
}

.hero-brand-pattern::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 78% at 50% 42%, rgba(6, 6, 10, 0.08) 0%, rgba(6, 6, 10, 0.42) 58%, rgba(6, 6, 10, 0.9) 100%),
		linear-gradient(180deg, rgba(6, 6, 10, 0.18) 0%, rgba(6, 6, 10, 0.52) 72%, rgba(6, 6, 10, 0.94) 100%);
}

.hero-glow {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(118deg, rgba(0, 85, 255, 0.16) 0%, rgba(107, 33, 168, 0.14) 52%, transparent 78%),
		radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
		radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
	animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
	0%, 100% { opacity: 0.8; }
	50% { opacity: 1; }
}

.hero-scanlines {
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0.012;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(255, 255, 255, 0.03) 2px,
		rgba(255, 255, 255, 0.03) 4px
	);
	pointer-events: none;
}

.hero-vignette {
	position: absolute;
	inset: 0;
	z-index: 3;
	background:
		radial-gradient(ellipse 120% 90% at 50% 32%, transparent 36%, rgba(0, 0, 0, 0.55) 100%),
		linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
	pointer-events: none;
}

.hero-circuit {
	display: none;
}

.circuit-line {
	fill: none;
	stroke: url(#circuitGrad);
	stroke-width: 1.5;
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	animation: drawCircuit 3s var(--ease-cinema) forwards;
}

.circuit-node {
	fill: var(--blue);
	opacity: 0;
	animation: nodePulse 2s ease-in-out infinite;
}

.circuit-node:nth-child(4) { animation-delay: 0.5s; }
.circuit-node:nth-child(5) { animation-delay: 1s; }
.circuit-node:nth-child(6) { animation-delay: 1.5s; }
.circuit-node:nth-child(7) { animation-delay: 2s; }

@keyframes drawCircuit {
	to { stroke-dashoffset: 0; }
}

@keyframes nodePulse {
	0%, 100% { opacity: 0.3; r: 3; }
	50% { opacity: 1; r: 5; }
}

.hero-content {
	position: relative;
	z-index: 5;
	padding: 8rem 0 4rem;
}

.hero-line {
	width: 60px;
	height: 2px;
	background: var(--gradient);
	margin-bottom: 1.5rem;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.8s var(--ease-cinema);
}

.hero-line.visible { transform: scaleX(1); }

.hero-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--muted);
	padding: 0.5rem 1rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-family: var(--font-title);
	font-weight: 800;
	font-size: clamp(3.5rem, 8vw, 7rem);
	line-height: 1.08;
	letter-spacing: -0.045em;
	margin: 0 0 1.5rem;
}

.hero-title__line {
	display: block;
	filter: blur(8px);
	opacity: 0;
	transition: filter 1s var(--ease-cinema), opacity 1s var(--ease-cinema);
}

.hero-title__line.visible {
	filter: blur(0);
	opacity: 1;
}

.hero-chromatic {
	text-shadow: 2px 0 rgba(59, 130, 246, 0.4), -2px 0 rgba(255, 50, 50, 0.15);
}

.hero-title__accent {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.1rem;
	color: var(--muted);
	max-width: 560px;
	margin: 0 0 2rem;
	min-height: 3.6em;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}

.scroll-hint {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--muted);
}

.scroll-hint__line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, var(--blue), transparent);
	animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
	0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
	50% { transform: scaleY(1); opacity: 1; }
}

/* ==========================================================================
   CENA 2 — Stats
   ========================================================================== */

.scene-stats {
	background: var(--dark);
	padding: 4rem 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat-item {
	text-align: center;
	padding: 2rem 1rem;
	border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
	font-family: var(--font-title);
	font-weight: 800;
	font-size: clamp(2.5rem, 5vw, 4rem);
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.stat-number,
.stat-suffix {
	display: inline-block;
	vertical-align: baseline;
}

.stat-suffix {
	font-family: var(--font-title);
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.stat-label {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--muted);
	margin-top: 0.75rem;
}

/* ==========================================================================
   CENA 3 — Sobre
   ========================================================================== */

.scene-about {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
	padding: 8rem 0;
}

.scene-anchor {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.scene-about--wireframe {
	background: #ffffff;
}

.scene-about--wireframe::after {
	display: none;
}

.scene-about--wireframe .about-grid::before {
	background: rgba(12, 11, 20, 0.08);
}

.scene-about--wireframe .section-label {
	color: #7c3aed;
}

.scene-about--wireframe .section-title {
	color: #0c0b14;
}

.scene-about--wireframe .about-text {
	background: rgba(59, 130, 246, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 2rem 2.25rem;
	border-radius: 1rem;
	border: 1px solid rgba(59, 130, 246, 0.14);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.05);
}

.scene-about--wireframe .about-text p {
	color: #4a4f6a;
}

.scene-about--wireframe .about-context li {
	color: #5c6178;
}

.scene-about--wireframe .about-gallery {
	background: rgba(168, 85, 247, 0.16);
	border: 1px solid rgba(168, 85, 247, 0.24);
	box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
}

.scene-about--wireframe .about-gallery__label {
	color: #7c3aed;
}

.scene-about--wireframe .about-gallery__intro {
	color: #4a4f6a;
}

.scene-about--wireframe .about-gallery__arrow {
	background: rgba(255, 255, 255, 0.72);
	color: #0c0b14;
	border-color: rgba(168, 85, 247, 0.22);
}

.scene-about--wireframe .about-gallery__arrow:hover {
	border-color: rgba(168, 85, 247, 0.45);
	color: #7c3aed;
	background: rgba(255, 255, 255, 0.9);
}

.about-wireframe-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.scene-about .container {
	position: relative;
	z-index: 2;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
}

.about-grid::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 10%;
	bottom: 10%;
	width: 1px;
	background: var(--border);
	transform: translateX(-50%);
}

.section-label {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.24em;
	color: var(--blue);
	font-weight: 700;
	margin-bottom: 1.1rem;
}

/* Secções principais — copy mais legível em fundos escuros */
.scene-services .section-label,
.scene-solutions .section-label,
.scene-process .section-label,
.loja-info .section-label,
.google-reviews .section-label {
	font-size: 0.82rem;
	letter-spacing: 0.26em;
}

.scene-services .section-label,
.scene-solutions .section-label,
.scene-process .section-label {
	text-align: center;
}

.loja-info .section-label {
	color: var(--lilac);
}

.google-reviews .section-label {
	color: var(--lilac);
}

.section-title {
	font-family: var(--font-title);
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
}

.section-title--center { text-align: center; }

.about-text p { color: var(--muted); margin: 0 0 1rem; }

.about-context {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
}

.about-context li {
	font-size: 0.8rem;
	color: var(--muted);
	padding-left: 1rem;
	position: relative;
}

.about-context li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--blue);
}

.about-context__partners {
	flex: 1 1 100%;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	padding-left: 0;
}

.about-context__partners::before {
	display: none;
}

.about-context__partners-label {
	position: relative;
	padding-left: 1rem;
	font-size: 0.8rem;
	color: inherit;
}

.about-context__partners-label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--blue);
}

.about-context__partner-logos {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.25rem;
	padding-left: 1rem;
}

.about-partner-logo {
	display: block;
	height: 1.5rem;
	width: auto;
	max-width: 5rem;
	object-fit: contain;
}

.about-partner-logo--digi {
	height: clamp(2.25rem, 5vw, 3rem);
	max-width: min(100%, 11rem);
	padding: 0.2rem 0.5rem;
	border-radius: 6px;
	background: #ffffff;
}

.scene-about--wireframe .about-context__partners-label,
.scene-about--wireframe .about-context__partner-logos {
	color: #5c6178;
}

.about-gallery {
	position: relative;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.about-gallery__header {
	padding: 1.25rem 1.35rem 0;
}

.about-gallery__intro {
	margin: 0.45rem 0 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--muted);
}

.about-gallery__label {
	display: block;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: var(--muted);
}

.about-gallery__viewport {
	position: relative;
	margin: 1rem 1.35rem 0;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	overflow: hidden;
	background: var(--black);
}

.about-gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.85s var(--ease-cinema);
	pointer-events: none;
}

.about-gallery__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.about-gallery__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-gallery__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: 2.5rem 1rem 0.85rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #fff;
	background: linear-gradient(180deg, transparent 0%, rgba(6, 6, 10, 0.88) 100%);
}

.about-gallery__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	padding: 1rem 1.35rem 1.25rem;
}

.about-gallery__arrow {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: rgba(17, 16, 29, 0.85);
	color: var(--text);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition:
		border-color 0.25s ease,
		color 0.25s ease,
		background 0.25s ease;
}

.about-gallery__arrow:hover {
	border-color: rgba(59, 130, 246, 0.55);
	color: var(--blue);
}

.about-gallery__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
}

.about-gallery__dot {
	width: 0.45rem;
	height: 0.45rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(107, 112, 144, 0.55);
	cursor: pointer;
	transition:
		transform 0.25s ease,
		background 0.25s ease,
		box-shadow 0.25s ease;
}

.about-gallery__dot.is-active {
	transform: scale(1.35);
	background: var(--blue);
	box-shadow: 0 0 12px rgba(59, 130, 246, 0.45);
}

.about-gallery--empty .about-gallery__viewport--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem 1.35rem 1.25rem;
	min-height: 220px;
	background:
		linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
		linear-gradient(315deg, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
		var(--black);
	border: 1px dashed rgba(107, 112, 144, 0.35);
}

.about-gallery__empty {
	margin: 0;
	padding: 1.5rem;
	text-align: center;
	font-size: 0.82rem;
	color: var(--muted);
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.scene-about--wireframe .about-text {
		padding: 1.5rem 1.25rem;
	}

	.about-gallery__viewport {
		margin-inline: 1rem;
	}

	.about-gallery__header,
	.about-gallery__controls {
		padding-inline: 1rem;
	}
}

/* ==========================================================================
   CENA 4 — Serviços
   ========================================================================== */

.scene-services {
	position: relative;
	overflow: hidden;
	background: var(--black);
	padding: 8rem 0;
}

.scene-services__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--services-section-bg);
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.scene-services__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			color-mix(in srgb, var(--black) 58%, transparent) 0%,
			color-mix(in srgb, var(--black) 72%, transparent) 55%,
			color-mix(in srgb, var(--black) 64%, transparent) 100%
		);
}

.scene-services.is-bg-visible .scene-services__bg {
	opacity: 0.42;
}

.scene-services .container {
	position: relative;
	z-index: 1;
}

.scene-services .section-label,
.scene-services .section-title { text-align: center; }

.services-intro {
	text-align: center;
	color: var(--text-soft);
	font-size: clamp(1.05rem, 2.2vw, 1.25rem);
	max-width: 680px;
	margin: 0 auto;
	line-height: 1.75;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 3rem;
	border: 1px solid var(--border);
}

.service-card {
	position: relative;
	padding: 2.5rem 2rem;
	border-right: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: transparent;
	transition: background 0.4s var(--ease-cinema), border-top 0.4s;
	overflow: hidden;
}

.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+7) { border-bottom: none; }

.service-card:hover {
	background: var(--card);
	border-top: 2px solid transparent;
	border-image: var(--gradient) 1;
}

.service-card__watermark {
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	font-family: var(--font-title);
	font-weight: 800;
	font-size: 4rem;
	opacity: 0.06;
	line-height: 1;
	transition: opacity 0.4s;
}

.service-card:hover .service-card__watermark { opacity: 0.12; }

.service-card__icon { font-size: 2rem; display: block; margin-bottom: 1rem; }

.service-card h3 {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.25rem;
	margin: 0 0 0.75rem;
}

.service-card p {
	color: var(--text-soft);
	font-size: 1rem;
	margin: 0 0 1rem;
	line-height: 1.75;
}

.service-card__list-title {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--lilac);
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.service-card__list {
	margin: 0 0 1.25rem;
	padding: 0 0 0 1rem;
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.65;
}

.service-card__list li {
	margin-bottom: 0.35rem;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--blue);
	text-decoration: none;
	transition: gap 0.3s var(--ease-cinema);
}

.service-card__link:hover {
	gap: 0.6rem;
}

