/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
	--bg-navy: #020618;
	--bg-light: #e1e7f4;
	--text-light: #f1f3f9;
	--text-light-80: rgba(241, 243, 249, 0.8);
	--text-light-90: rgba(241, 243, 249, 0.9);
	--text-navy-70: rgba(2, 6, 24, 0.7);
	--gold-1: #dd9318;
	--gold-2: #d49224;
	--gold-border: rgba(221, 147, 24, 0.7);
	--gold-border-2: rgba(212, 146, 36, 0.8);
	--blue: #2688e3;
	--divider: #d9d9d9;
	--overlay-navy-35: rgba(2, 6, 24, 0.35);
	--glass-bg: rgba(25, 28, 37, 0.8);

	--font-head: "Inter", -apple-system, sans-serif;
	--font-text: "Inter", -apple-system, sans-serif;

	--container: 1800px;
	--gutter: clamp(24px, 4vw, 60px);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 24px;
	--radius-pill: 170px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--bg-navy);
	color: var(--text-light);
	font-family: var(--font-text);
	font-weight: 400;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
	/* clip (não hidden): 'hidden' força overflow-y a 'auto' e transforma o body
	   num scroll-container, quebrando o ScrollTrigger (que observa a window). */
	overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, .h-eyebrow { text-wrap: balance; }

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.section { padding-block: clamp(60px, 8vw, 120px); }
.section--light { background: var(--bg-light); color: var(--text-navy-70); }

.eyebrow {
	display: inline-block;
	font-family: var(--font-head);
	font-weight: 300;
	font-size: 14px;
	letter-spacing: 0.14px;
	text-transform: uppercase;
	color: var(--gold-1);
	border: 1px solid var(--gold-border);
	border-radius: var(--radius-pill);
	padding: 8px 20px;
	margin-bottom: 24px;
}

.section-title {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(30px, 3.4vw, 52px);
	line-height: 1.12;
	letter-spacing: 0.01em;
	max-width: 900px;
}
.section-title--center { margin-inline: auto; text-align: center; }
.section-title .accent { color: var(--gold-1); font-weight: 500; }

.section-subtitle {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(16px, 1.4vw, 22px);
	line-height: 1.4;
	color: var(--text-light-80);
	max-width: 640px;
	margin-top: 24px;
}
.section-title--center + .section-subtitle { margin-inline: auto; text-align: center; }
.section--light .section-subtitle { color: var(--text-navy-70); }

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-text);
	font-weight: 500;
	font-size: 17px;
	border-radius: 0;
	padding: 16px 32px;
	overflow: hidden;
	transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.25s ease, box-shadow 0.25s ease;
}
/* subtle sheen sweep on hover */
.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
	transform: translateX(-120%);
	transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: #1f74c9; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(38,136,227,0.4); }
.btn--outline { border: 1px solid var(--gold-border); color: var(--text-light); }
.btn--outline:hover { border-color: var(--gold-1); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(221,147,24,0.18); }

/* ==========================================================================
   Header — unificado em assets/css/header.css (mesmo menu em todo o site)
   ========================================================================== */

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	min-height: 94vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-block: clamp(96px, 15vh, 200px) clamp(48px, 7vh, 100px);
	overflow: clip;
}
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(ellipse at 70% 20%, #1a2438 0%, var(--bg-navy) 65%);
}
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(2,6,24,0.25) 0%, rgba(2,6,24,0.55) 55%, rgba(2,6,24,0.92) 100%),
		linear-gradient(90deg, rgba(2,6,24,0.7) 0%, rgba(2,6,24,0.1) 60%);
}
.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(24px, 4vw, 64px);
}
.hero-text { flex: 1 1 auto; min-width: 0; }
.hero-content .btn { flex: 0 0 auto; margin-top: 0; }
.hero h1 {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(32px, 4.4vw, 66px);
	line-height: 1.08;
	letter-spacing: -0.01em;
	max-width: 960px;
}
.hero p {
	margin-top: 28px;
	max-width: 640px;
	font-size: clamp(16px, 1.3vw, 19px);
	font-weight: 300;
	color: var(--text-light-80);
	line-height: 1.55;
}

/* animated scroll cue */
.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	width: 26px;
	height: 42px;
	border: 2px solid rgba(241,243,249,0.4);
	border-radius: 14px;
	z-index: 2;
}
/* Indicador de scroll: só no mobile */
@media (min-width: 901px) { .hero-scroll { display: none; } }
.hero-scroll::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 8px;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	background: var(--text-light);
	border-radius: 2px;
	animation: hero-scroll-dot 1.8s ease-in-out infinite;
}
@keyframes hero-scroll-dot {
	0% { opacity: 0; transform: translateY(0); }
	40% { opacity: 1; }
	80% { opacity: 0; transform: translateY(14px); }
	100% { opacity: 0; }
}

/* Stats band (below hero) */
.hero-stats-band {
	background: var(--bg-navy);
	padding-block: clamp(40px, 5vw, 72px);
}
.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: clamp(32px, 4vw, 56px);
}
.hero-stats .stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}
.stat-number {
	--corner: rgba(241,243,249,0.55);
	--arm: 16px;
	align-self: stretch;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: clamp(112px, 13vw, 144px);
	font-family: var(--font-text);
	font-weight: 600;
	font-size: clamp(30px, 3.4vw, 50px);
	line-height: 1.08;
	color: var(--text-light);
	padding: 16px 26px;
	transition: background-color 0.3s ease;
	background-image:
		linear-gradient(var(--corner), var(--corner)), linear-gradient(var(--corner), var(--corner)),
		linear-gradient(var(--corner), var(--corner)), linear-gradient(var(--corner), var(--corner)),
		linear-gradient(var(--corner), var(--corner)), linear-gradient(var(--corner), var(--corner)),
		linear-gradient(var(--corner), var(--corner)), linear-gradient(var(--corner), var(--corner));
	background-repeat: no-repeat;
	background-size:
		var(--arm) 1px, 1px var(--arm),
		var(--arm) 1px, 1px var(--arm),
		var(--arm) 1px, 1px var(--arm),
		var(--arm) 1px, 1px var(--arm);
	background-position:
		left top, left top,
		right top, right top,
		left bottom, left bottom,
		right bottom, right bottom;
}
.stat:hover .stat-number { --corner: var(--gold-1); }
.hero-stats .stat-label {
	font-size: 14px;
	font-weight: 300;
	color: var(--text-light-80);
	max-width: 220px;
	text-align: center;
}

/* ==========================================================================
   Institucional (image + feature list)
   ========================================================================== */
.institucional .container {
	display: grid;
	grid-template-columns: minmax(0, 852px) 1fr;
	gap: var(--gutter);
	align-items: stretch;
}
/* Photo matches the body's height so the CTA lines up with the image bottom.
   The image is absolutely positioned so it doesn't force its own height. */
.institucional-photo {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	min-height: 420px;
}
.institucional-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.institucional-body { display: flex; flex-direction: column; }

.institucional-body .section-title { max-width: 100%; }
.institucional-body .section-subtitle { max-width: 100%; }

.feature-list { margin-top: 40px; }
.feature-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-block: 24px;
	border-top: 1px solid var(--divider);
}
.feature-item:last-child { border-bottom: 1px solid var(--divider); }
.feature-item-text h3 {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 8px;
}
.feature-item-text p {
	font-size: 15px;
	font-weight: 300;
	color: var(--text-light-80);
	max-width: 420px;
}
.feature-item .arrow { flex-shrink: 0; width: 18px; height: 18px; transform: rotate(-135deg); opacity: 0.7; }

.institucional-body .btn { margin-top: 40px; align-self: flex-start; }

/* ==========================================================================
   Values marquee
   ========================================================================== */
.marquee-wrap { overflow: clip; padding-block: 24px; display: flex; flex-direction: column; gap: 16px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-row { display: flex; gap: 16px; width: max-content; animation: marquee-scroll 40s linear infinite; }
.marquee-row--reverse { animation-direction: reverse; }
.marquee-pill {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(22px, 2.6vw, 40px);
	padding: 14px 36px;
	border: 1px solid var(--gold-border);
	border-radius: 4px;
	white-space: nowrap;
	color: var(--text-light-80);
}
@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-row { animation: none; } }

/* ==========================================================================
   Serviços (2x2 grid)
   ========================================================================== */
.servicos-header { text-align: center; margin-bottom: 60px; }
.servicos-header .section-title { margin-inline: auto; }

.servicos-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.servicos-grid__cross {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}
.servico-card {
	position: relative;
	z-index: 1;
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 870 / 395;
	transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease;
	box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}
.servico-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px rgba(2,6,24,0.55);
	z-index: 2;
}
.servico-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.servico-card:hover img { transform: scale(1.07); }
.servico-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2,6,24,0.75) 0%, rgba(2,6,24,0.15) 45%, rgba(2,6,24,0) 100%);
	transition: background 0.4s ease;
}
.servico-card:hover::after {
	background: linear-gradient(180deg, rgba(2,6,24,0.8) 0%, rgba(2,6,24,0.25) 55%, rgba(38,136,227,0.15) 100%);
}
.servico-card-body {
	position: absolute;
	left: 0; right: 0; top: 0;
	padding: 28px;
	z-index: 1;
}
.servico-card-title {
	display: flex;
	align-items: center;
	gap: 14px;
}
.servico-card-title::before {
	content: "";
	flex-shrink: 0;
	width: 4px;
	align-self: stretch;
	min-height: 1.1em;
	background: var(--blue);
	border-radius: 2px;
	transform-origin: top;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.servico-card:hover .servico-card-title::before {
	transform: scaleY(1.25);
	box-shadow: 0 0 16px rgba(38,136,227,0.8);
}
.servico-card-body h3 {
	font-family: var(--font-head);
	font-weight: 400;
	font-size: clamp(20px, 2.2vw, 30px);
}
.servico-card-body p {
	margin-top: 8px;
	padding-left: 18px;
	font-size: 15px;
	font-weight: 300;
	color: var(--text-light-90);
}

/* ==========================================================================
   Vantagens (bg image + glass benefits panel)
   ========================================================================== */
.vantagens .vantagens-card {
	position: relative;
	max-width: var(--container);
	margin-inline: auto;
	border-radius: var(--radius-lg);
	overflow: clip;
	min-height: 560px;
	display: flex;
	align-items: center;
}
.vantagens-card > img.vantagens-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.vantagens-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(2,6,24,0.9) 0%, rgba(2,6,24,0.55) 45%, rgba(2,6,24,0.15) 100%);
}
.vantagens-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
	padding: clamp(32px, 4vw, 56px);
}
.vantagens-text { max-width: 620px; }
.vantagens-text .section-title { font-size: clamp(28px, 3vw, 52px); line-height: 1.05; max-width: 100%; color: #fff; }
.vantagens-text .section-subtitle { max-width: 560px; }

/* Right column — glass panel + CTA below it (CTA sits on the right) */
.vantagens-right {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 24px;
}
.vantagens-right .btn { align-self: flex-start; }

.vantagens-panel {
	width: 334px;
	max-width: 100%;
	background: var(--glass-bg);
	border: 1px solid var(--gold-border-2);
	backdrop-filter: blur(6px);
	border-radius: var(--radius-md);
	padding: 34px;
	display: grid;
	gap: 32px;
}
.benefit-item { display: flex; align-items: center; gap: 14px; }
.benefit-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--blue);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
}
.benefit-icon img { width: 24px; height: 24px; }
.benefit-item span {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 18px;
	line-height: 1.2;
	color: #fff;
}

/* ==========================================================================
   CTA play (light section)
   ========================================================================== */
.cta-play { text-align: center; }
.cta-play .play-badge {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-text); font-weight: 500; font-size: 16px;
	margin-bottom: 24px;
}
.cta-play .play-badge img { width: 32px; height: 32px; }
.cta-play h2 {
	font-family: var(--font-head); font-weight: 500;
	font-size: clamp(32px, 5vw, 56px);
	max-width: 800px; margin-inline: auto;
}
.cta-play p { margin: 24px auto 0; max-width: 560px; color: var(--text-navy-70); font-weight: 400; }
.cta-play .btn { margin-top: 32px; }

/* ==========================================================================
   Depoimentos (circle vector + scroll-locked slides)
   ========================================================================== */
.depoimentos { position: relative; }
.depoimentos__sticky {
	position: sticky;
	top: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-block: 80px;
	overflow: clip;
}
.depoimentos-header { text-align: center; margin-bottom: clamp(40px, 6vw, 80px); }
.depoimentos-header .section-title { margin-inline: auto; }

.dep-stage {
	position: relative;
	max-width: var(--container);
	margin-inline: auto;
	width: 100%;
	padding-inline: var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

/* Left — circle vector + DEP labels (labels sit OUTSIDE the ring, to its right) */
.dep-nav { position: relative; min-height: 460px; display: flex; align-items: center; }
.dep-circle {
	position: absolute;
	left: auto;
	right: 50%;
	top: 50%;
	transform: translateY(-50%);
	width: clamp(420px, 46vw, 680px);
	aspect-ratio: 1;
	opacity: 0.9;
	pointer-events: none;
}
.dep-labels {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 53px;
	padding-left: 52%;
}
.dep-label {
	display: flex;
	align-items: center;
	gap: 20px;
	font-family: var(--font-head);
	font-weight: 300;
	font-size: clamp(28px, 3.2vw, 52px);
	color: var(--text-light);
	opacity: 0.3;
	transition: opacity 0.4s ease, transform 0.4s ease;
	background: none;
	text-align: left;
	cursor: pointer;
}
.dep-label .bar {
	width: 0;
	height: 3px;
	background: var(--gold-1);
	transition: width 0.4s ease;
}
.dep-label:hover { opacity: 0.65; }
.dep-label.is-active { opacity: 1; transform: translateX(6px); }
.dep-label.is-active .bar { width: 40px; }

/* Right — testimonial slides */
.dep-slides { position: relative; min-height: 300px; }
.dep-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	pointer-events: none;
}
.dep-slide.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.dep-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; background: var(--divider); margin-bottom: 32px; }
.dep-quote {
	font-family: var(--font-head); font-weight: 300;
	font-size: clamp(18px, 1.5vw, 20px);
	line-height: 1.5; color: var(--text-light);
	max-width: 620px;
}
.dep-author { margin-top: 32px; font-size: clamp(18px, 1.4vw, 24px); font-weight: 300; }
.dep-author .role { color: var(--text-light-80); }

/* ==========================================================================
   Parceiros
   ========================================================================== */
.parceiros { text-align: center; }
.parceiros .section-title { margin-inline: auto; }
.parceiros .section-subtitle { margin-inline: auto; text-align: center; }
.parceiros-logos {
	margin-top: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(40px, 8vw, 120px);
	flex-wrap: wrap;
}
.parceiros-logos img { height: 34px; width: auto; opacity: 0.95; }
.parceiros-logos img.logo-obsbot { height: 30px; }
.parceiros-film {
	margin-top: 44px;
	width: 100%;
	max-width: 1191px;
	margin-inline: auto;
	height: 60px;
	opacity: 0.7;
}
.parceiros-film img { width: 100%; height: 100%; }

/* ==========================================================================
   Galeria
   ========================================================================== */
.galeria-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}
.galeria-item { position: relative; }
.galeria-item > img { width: 100%; aspect-ratio: 640 / 360; object-fit: cover; display: block; }
.galeria-caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px var(--gutter) 0 0;
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(16px, 1.4vw, 24px);
	color: var(--text-light);
}
.galeria-item:first-child .galeria-caption { padding-left: 0; }
.galeria-cta { display: inline-flex; align-items: center; gap: 12px; }
.galeria-cta .arrow { width: 18px; height: 18px; transform: rotate(-135deg); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	position: relative;
	padding-block: 80px 40px;
	background: linear-gradient(180deg, var(--bg-navy) 0%, #06122b 100%);
	overflow: clip;
}
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
.footer-brand .logo img { height: 32px; margin-bottom: 16px; }
.footer-brand address {
	font-style: normal; display: flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 300; color: var(--text-light-80);
}
.footer-brand address img { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 500; font-size: 16px; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-light-80); }
.footer-col a:hover { color: var(--text-light); }
.footer-social { display: flex; gap: 16px; }
.footer-social img { width: 20px; height: 20px; }
.footer-bottom {
	margin-top: 60px; padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.1);
	display: flex; justify-content: space-between;
	font-size: 13px; color: var(--text-light-80);
	flex-wrap: wrap; gap: 12px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
	.primary-nav, .header-cta .btn--outline { display: none; }
	.nav-toggle { display: block; }

	.hero-content { flex-direction: column; align-items: flex-start; gap: 28px; }
	.hero-stats { grid-template-columns: 1fr; gap: 20px; }
	.stat-number { min-height: 104px; }
	.institucional .container { grid-template-columns: 1fr; }
	.institucional-photo { min-height: 0; aspect-ratio: 852 / 700; }
	.servicos-grid { grid-template-columns: 1fr; }
	.servicos-grid__cross { display: none; }
	.servico-card { aspect-ratio: 16 / 10; }
	.galeria-grid { grid-template-columns: 1fr; }
	.galeria-caption { padding: 16px var(--gutter) 28px; }
	.footer-top { grid-template-columns: 1fr; gap: 32px; }
	.parceiros-logos { gap: 40px; }

	/* Soluções headline must not word-wrap awkwardly on mobile */
	.servicos-header .section-title { font-size: clamp(24px, 6.4vw, 34px); }

	/* Vantagens stacks: text over image, then panel */
	.vantagens-inner { grid-template-columns: 1fr; gap: 28px; }
	.vantagens-panel { width: 100%; }
	.vantagens-card::after {
		background: linear-gradient(180deg, rgba(2,6,24,0.65) 0%, rgba(2,6,24,0.85) 100%);
	}

	/* Depoimentos: no scroll pin on mobile — auto-timed, single testimonial */
	.depoimentos { height: auto !important; }
	.depoimentos__sticky { position: static; min-height: 0; padding-block: 60px; }
	.dep-stage { grid-template-columns: 1fr; gap: 32px; }
	.dep-nav { min-height: 0; justify-content: center; }
	.dep-circle { left: 50%; transform: translate(-50%, -50%); width: 420px; opacity: 0.35; }
	.dep-labels { flex-direction: row; justify-content: center; gap: 24px; padding-left: 0; margin-left: 0; }
	.dep-label { font-size: 20px; }
	.dep-label:not(.is-active) { display: none; }
	.dep-slides { min-height: 320px; text-align: center; }
	.dep-avatar { margin-inline: auto; }
	.dep-quote { margin-inline: auto; }
}

/* ==========================================================================
   Extra hovers & micro-interactions
   ========================================================================== */
.site-header .logo { transition: opacity 0.25s ease; }
.site-header .logo:hover { opacity: 0.8; }

.feature-item { transition: border-color 0.3s ease; }
.feature-item:hover { border-top-color: var(--gold-border); }
.feature-item .arrow { transition: transform 0.35s ease, opacity 0.3s ease; }
.feature-item:hover .arrow { transform: rotate(-135deg) translate(2px, -2px); opacity: 1; }

.marquee-pill { transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.marquee-pill:hover { color: var(--text-light); border-color: var(--gold-1); background: rgba(221,147,24,0.08); }

.vantagens-panel .benefit-item { transition: transform 0.3s ease; }
.vantagens-panel .benefit-item:hover { transform: translateX(6px); }
.benefit-icon { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vantagens-panel .benefit-item:hover .benefit-icon { transform: scale(1.08); box-shadow: 0 8px 20px rgba(38,136,227,0.5); }

.parceiros-logos img { transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease; filter: grayscale(0.2); }
.parceiros-logos img:hover { transform: scale(1.09); opacity: 1; filter: grayscale(0); }

.dep-avatar { transition: transform 0.4s ease; }
.dep-slide.is-active:hover .dep-avatar { transform: scale(1.06); }

.galeria-item > img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.galeria-item:hover > img { transform: scale(1.05); }
.galeria-cta { transition: gap 0.3s ease, color 0.3s ease; }
.galeria-item:hover .galeria-cta { gap: 18px; color: var(--gold-1); }
.galeria-cta .arrow { transition: transform 0.35s ease; }
.galeria-item:hover .galeria-cta .arrow { transform: rotate(-135deg) translate(3px, -3px); }

.footer-col a, .footer-brand address, .footer-bottom a { transition: color 0.25s ease; }
.footer-social img { transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0.85; }
.footer-social a:hover img { transform: translateY(-3px) scale(1.1); opacity: 1; }
.footer-bottom a:hover { color: var(--gold-1); }

/* ==========================================================================
   GSAP reveal states (only active once JS confirms GSAP is present)
   ========================================================================== */
.gsap-on [data-anim] { opacity: 0; will-change: transform, opacity; }
.gsap-on [data-anim="hero-title"],
.gsap-on [data-anim="hero-sub"],
.gsap-on [data-anim="hero-cta"] { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
	.gsap-on [data-anim] { opacity: 1 !important; }
	.hero-scroll { display: none; }
}

/* ==========================================================================
   Target cursor (custom cursor with corner brackets)
   ========================================================================== */
body.has-target-cursor,
body.has-target-cursor * { cursor: none !important; }

.target-cursor-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
	z-index: 9999;
	mix-blend-mode: difference;
	transform: translate(-50%, -50%);
}
.target-cursor-dot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 5px;
	height: 5px;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	will-change: transform;
}
.target-cursor-corner {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 12px;
	border: 3px solid #fff;
	will-change: transform;
}
.corner-tl { border-right: none; border-bottom: none; }
.corner-tr { border-left: none; border-bottom: none; }
.corner-br { border-left: none; border-top: none; }
.corner-bl { border-right: none; border-top: none; }

