@font-face {
	font-family: "Inter";
	src: url("assets/fonts/inter-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("assets/fonts/inter-500.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("assets/fonts/inter-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("assets/fonts/inter-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "InterDisplay";
	src: url("assets/fonts/inter-display-600.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "InterDisplay";
	src: url("assets/fonts/inter-display-700.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--navy-900: rgb(25, 62, 158);
	--navy-800: rgb(19, 46, 118);
	--navy-700: rgb(39, 91, 232);
	--ink-900: rgb(13, 28, 46);
	--ink-700: rgb(64, 73, 68);
	--ink-500: rgb(107, 114, 128);
	--blue-100: rgb(239, 244, 255);
	--blue-300: rgb(220, 233, 255);
	--surface: rgb(248, 249, 255);
	--accent: rgb(214, 138, 58);
	--display: "InterDisplay", "Inter", sans-serif;
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink-900);
	font-family: "Inter", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

a {
	color: var(--navy-900);
}

a:hover {
	color: var(--navy-700);
}

:focus-visible {
	outline: 2px solid var(--ink-900);
	outline-offset: 2px;
}

img,
video {
	max-width: 100%;
}

/* Load-bearing: makes the <img> the flex/grid child, so its percentage width resolves correctly. */
picture {
	display: contents;
}

/* Dissolved by the rule above, <source> becomes a flex item: paints nothing, still eats a `gap`. */
source {
	display: none;
}

/* From the fasePRO design system stylesheet, which this page does not ship. Several blocks depend on
 * the inherited 24px line-height; without this rule each loses 7px of height. */
p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: var(--ink-700);
}

main {
	position: relative;
	z-index: 1;
}

@keyframes fpBreathe {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(25, 62, 158, 0);
	}
	50% {
		transform: scale(1.012);
		box-shadow: 0 0 0 3px rgba(25, 62, 158, 0.045);
	}
}

@keyframes fpBob {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(5px);
	}
}

.backdrop {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	background: rgb(246, 248, 255);
}

.backdrop__drift {
	position: absolute;
	inset: -45%;
	will-change: transform;
}

.backdrop__drift[data-drift="0"] {
	background: radial-gradient(38% 30% at 24% 18%, rgba(39, 91, 232, 0.34), transparent 66%);
}
.backdrop__drift[data-drift="1"] {
	background: radial-gradient(32% 26% at 76% 28%, rgba(214, 138, 58, 0.26), transparent 68%);
}
.backdrop__drift[data-drift="2"] {
	background: radial-gradient(36% 28% at 70% 72%, rgba(39, 91, 232, 0.28), transparent 68%);
}
.backdrop__drift[data-drift="3"] {
	background: radial-gradient(28% 22% at 32% 84%, rgba(214, 138, 58, 0.18), transparent 70%);
}

.backdrop__veil {
	position: absolute;
	inset: 0;
	opacity: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgb(255, 255, 255) 46%);
}

.skip {
	position: absolute;
	left: 16px;
	top: -64px;
	z-index: 100;
	background: var(--ink-900);
	color: rgb(255, 255, 255);
	padding: 12px 18px;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.skip:focus {
	top: 16px;
	color: rgb(255, 255, 255);
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: clamp(24px, 5vw, 64px);
	padding-right: clamp(24px, 5vw, 64px);
}

.wrap--center,
.center {
	text-align: center;
}

.center {
	margin: 0 auto;
}

.section {
	position: relative;
	padding-top: clamp(72px, 9vh, 120px);
	padding-bottom: clamp(72px, 9vh, 120px);
}

.section--anchor {
	scroll-margin-top: clamp(76px, 10vh, 104px);
}

.section__lead {
	margin: clamp(20px, 2.5vw, 32px) auto 0;
	max-width: 76ch;
	font-size: clamp(18px, 1vw + 13px, 21px);
	line-height: 1.6;
	color: var(--ink-700);
	text-wrap: pretty;
}

.overline {
	margin: 0 0 18px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-700);
}

.overline--light {
	color: rgba(255, 255, 255, 0.8);
}

.overline__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	flex: none;
}

.h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(32px, 3.6vw, 56px);
	line-height: 1.08;
	letter-spacing: -1.4px;
	font-weight: 600;
	color: var(--ink-900);
	text-wrap: balance;
}

.brandword {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-weight: 700;
	color: var(--navy-900);
}

.nowrap {
	white-space: nowrap;
}

.glass {
	background: rgba(255, 255, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(30px) saturate(1.6);
	-webkit-backdrop-filter: blur(30px) saturate(1.6);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 20px;
	border-radius: 9999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition:
		filter 0.15s ease,
		transform 0.15s ease;
}

.btn__icon {
	flex: none;
}

.btn--brand {
	background: linear-gradient(90deg, #193e9e, #275be8);
	color: rgb(255, 255, 255);
	box-shadow:
		0 4px 6px -4px rgba(25, 62, 158, 0.2),
		0 10px 15px -3px rgba(25, 62, 158, 0.2);
}

.btn--brand:hover {
	filter: brightness(0.94);
	transform: translateY(-1px);
	color: rgb(255, 255, 255);
}

.btn--lg {
	gap: 10px;
	height: 52px;
	padding: 0 28px;
	font-size: 17px;
}

.btn--white {
	gap: 10px;
	height: 56px;
	padding: 0 32px;
	background: rgb(255, 255, 255);
	color: var(--navy-900);
	font-size: 17px;
	box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.6);
	transition:
		transform 0.15s ease,
		background-color 0.15s ease;
}

.btn--white:hover {
	transform: translateY(-1px);
	background: var(--blue-100);
	color: var(--navy-900);
}

.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition:
		background 0.2s ease,
		border-color 0.2s ease;
}

.nav.is-scrolled {
	background: rgba(248, 249, 255, 0.72);
	backdrop-filter: saturate(1.5) blur(16px);
	-webkit-backdrop-filter: saturate(1.5) blur(16px);
	border-bottom-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 30px -22px rgba(25, 62, 158, 0.6);
}

.nav__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 18px clamp(24px, 5vw, 64px);
	display: flex;
	align-items: center;
	gap: 24px;
	transition: padding 0.2s ease;
}

.nav.is-scrolled .nav__inner {
	padding-top: 10px;
	padding-bottom: 10px;
}

.nav__logo {
	height: 26px;
	width: auto;
	display: block;
	align-self: center;
}

.nav__right {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 2px;
}

.nav__links a {
	padding: 10px 12px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink-700);
	text-decoration: none;
}

.nav__links a:hover {
	color: var(--navy-900);
}

/* Hidden by default because `app.js` is deferred and a deferred script is not guaranteed to run
 * before the first paint — a visible default flashed. Scripting off is covered by the <noscript> in
 * index.html. `visibility` rather than `display` keeps the box and drops it from the tab order. */
.nav__cta {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.28s ease,
		visibility 0s 0.28s;
}

.nav__cta.is-shown {
	opacity: 1;
	visibility: visible;
	transition:
		opacity 0.28s ease,
		visibility 0s;
}

.nav__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.9);
	color: var(--navy-900);
	box-shadow: 0 4px 16px -8px rgba(25, 62, 158, 0.4);
}

.nav__burger-close {
	display: none;
}

.nav__burger[aria-expanded="true"] .nav__burger-open {
	display: none;
}

.nav__burger[aria-expanded="true"] .nav__burger-close {
	display: block;
}

.nav__panel {
	display: none;
	flex-direction: column;
	padding: 4px clamp(24px, 5vw, 64px) 16px;
	background: rgba(248, 249, 255, 0.95);
	backdrop-filter: saturate(1.5) blur(16px);
	-webkit-backdrop-filter: saturate(1.5) blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 40px -26px rgba(25, 62, 158, 0.6);
}

.nav__panel a {
	display: flex;
	align-items: center;
	min-height: 52px;
	font-size: 17px;
	font-weight: 600;
	color: var(--ink-900);
	text-decoration: none;
	border-bottom: 1px solid var(--blue-300);
}

.nav__panel a:last-child {
	border-bottom: 0;
}

.nav__panel a:hover {
	color: var(--navy-900);
}

.hero {
	position: relative;
	overflow-x: clip;
	min-height: 92svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: clamp(104px, 13vh, 148px);
	padding-bottom: clamp(56px, 7vh, 92px);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 4vw, 56px);
	align-items: center;
}

.hero__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.pill {
	margin: 0 0 20px;
	display: inline-flex;
	align-items: center;
	padding: 7px 16px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 4px 16px -8px rgba(25, 62, 158, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-size: 14px;
	font-weight: 600;
	color: var(--ink-700);
}

.hero__title {
	margin: 0;
	max-width: 20ch;
	font-family: var(--display);
	font-size: clamp(36px, 3.9vw, 54px);
	line-height: 1.08;
	letter-spacing: -1.6px;
	font-weight: 600;
	color: var(--ink-900);
	text-wrap: balance;
}

.hero__lead {
	margin: 20px 0 0;
	font-size: clamp(17px, 0.7vw + 13px, 19px);
	line-height: 1.6;
	color: var(--ink-700);
	max-width: 42ch;
	text-wrap: pretty;
}

.hero__cta {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.hero__art {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(360px, 50vh, 600px);
}

.hero__img {
	display: block;
	width: min(118%, 640px);
	height: auto;
	max-width: none;
	will-change: transform;
	filter: drop-shadow(0 34px 48px rgba(25, 62, 158, 0.2));
}

.rail {
	position: relative;
	margin-top: clamp(40px, 5vh, 64px);
	border-radius: 16px;
	padding: clamp(26px, 3.5vw, 44px) clamp(22px, 3vw, 40px);
	box-shadow: 0 34px 64px -34px rgba(25, 62, 158, 0.55);
	text-align: left;
}

.rail__track {
	position: relative;
}

.rail__line {
	position: absolute;
	left: 6.25%;
	right: 6.25%;
	top: 22px;
	height: 1px;
	background: var(--blue-300);
}

.rail__steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
}

.rail__step {
	cursor: pointer;
	font-family: inherit;
	background: none;
	border: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 13px;
}

.rail__dot {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	transition:
		transform 0.25s var(--ease),
		background 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
	transform: scale(1);
	background: var(--blue-100);
	border: 1px solid var(--blue-300);
	color: var(--navy-900);
}

.rail__step.is-active .rail__dot {
	transform: scale(1.1);
	background: linear-gradient(135deg, #193e9e, #275be8);
	border-color: transparent;
	box-shadow:
		0 4px 6px -4px rgba(25, 62, 158, 0.35),
		0 10px 15px -3px rgba(25, 62, 158, 0.35);
	color: #fff;
}

.rail__label {
	transition: color 0.25s var(--ease);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ink-500);
	text-align: center;
}

.rail__step.is-active .rail__label {
	font-weight: 700;
	color: var(--ink-900);
}

.rail__detail {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid var(--blue-300);
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.rail__detail-name {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(19px, 1vw + 14px, 22px);
	letter-spacing: -0.2px;
	font-weight: 600;
	color: var(--ink-900);
}

.rail__detail-blurb {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--ink-700);
	text-wrap: pretty;
}

.pains {
	display: flex;
	flex-direction: column;
	gap: clamp(32px, 4.5vh, 44px);
}

.pains__head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(20px, 3vw, 56px);
	align-items: end;
}

.pains__kicker {
	margin: 0;
	padding-bottom: 8px;
	max-width: 26ch;
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-500);
	text-align: right;
	text-wrap: pretty;
}

.pains__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: clamp(16px, 2vw, 22px);
}

.card {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: clamp(22px, 2.4vw, 28px);
	background: rgb(255, 255, 255);
	border: 1px solid var(--blue-300);
	border-radius: 16px;
	box-shadow: 0 20px 44px -30px rgba(25, 62, 158, 0.4);
}

.card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--navy-900);
}

.card__num {
	font-family: var(--display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--navy-900);
	font-variant-numeric: tabular-nums;
}

.card__text {
	margin: 0;
	font-size: clamp(16.5px, 0.6vw + 13px, 18px);
	line-height: 1.5;
	color: var(--ink-900);
	text-wrap: pretty;
}

.pains__outro {
	margin-top: clamp(76px, 9.5vh, 120px);
	padding-top: clamp(60px, 7.5vh, 92px);
	padding-bottom: clamp(28px, 4vh, 52px);
	border-top: 1px solid var(--blue-300);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: clamp(24px, 3vh, 32px);
}

.pains__rule {
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background: var(--accent);
}

.pains__claim {
	margin: 0;
	max-width: 26ch;
	font-family: var(--display);
	font-size: clamp(28px, 2.6vw + 10px, 44px);
	line-height: 1.18;
	letter-spacing: -1.2px;
	font-weight: 600;
	color: var(--navy-900);
	text-wrap: balance;
}

.pains__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--blue-100);
	color: var(--navy-900);
	animation: fpBob 2.2s ease-in-out infinite;
}

.thesis {
	position: relative;
	min-height: clamp(540px, 76svh, 780px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding-top: clamp(80px, 9vh, 120px);
	padding-bottom: clamp(80px, 9vh, 120px);
	background: linear-gradient(152deg, rgb(13, 28, 46) 0%, rgb(25, 62, 158) 56%, rgb(39, 91, 232) 100%);
}

.thesis__photo {
	position: absolute;
	inset: -24% 0;
	background-image: url("assets/img/tese-fundo-1920.webp");
	/* biome-ignore lint/suspicious/noDuplicateProperties: the line above is the fallback for browsers
	   without image-set(); dropping either one costs the AVIF or costs older Safari the image. */
	background-image: image-set(
		url("assets/img/tese-fundo-1920.avif") type("image/avif"),
		url("assets/img/tese-fundo-1920.webp") type("image/webp")
	);
	background-size: cover;
	background-position: center;
	filter: saturate(0.62) contrast(1.04);
	opacity: 0.58;
	will-change: transform;
}

.thesis__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(13, 28, 46, 0.74) 0%,
		rgba(25, 62, 158, 0.62) 62%,
		rgba(39, 91, 232, 0.5) 100%
	);
}

.thesis__body {
	position: relative;
}

.thesis__title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(36px, 4.6vw, 68px);
	line-height: 1.06;
	letter-spacing: -2px;
	font-weight: 600;
	color: rgb(255, 255, 255);
}

.hl {
	white-space: nowrap;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	background-image: linear-gradient(rgba(214, 138, 58, 0.62), rgba(214, 138, 58, 0.62));
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 0.34em;
	padding: 0 0.06em;
	margin: 0 -0.06em;
	transition: background-size 0.08s linear;
}

.thesis__lead {
	margin: 24px auto 0;
	max-width: 74ch;
	font-size: clamp(18px, 1vw + 13px, 22px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
	text-wrap: pretty;
}

.inst {
	margin-top: clamp(40px, 5vh, 64px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
	min-height: 420px;
}

.inst__copy {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.inst__text {
	margin: 0;
	font-size: clamp(19px, 1vw + 14px, 23px);
	line-height: 1.55;
	color: var(--ink-900);
	text-wrap: pretty;
}

/* Not `.brandword`: an inline-flex box cannot break internally, and this phrase has to wrap. */
.inst__strong {
	color: var(--navy-900);
	font-weight: 700;
}

.inst__hint {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink-500);
}

.inst__card {
	box-shadow: 0 34px 64px -34px rgba(25, 62, 158, 0.55);
	border-radius: 16px;
	padding: clamp(22px, 2.6vw, 30px);
}

.inst__caption {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--ink-700);
}

.inst__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.inst__tab {
	cursor: pointer;
	font-family: inherit;
	padding: 6px 15px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	transition:
		background-color 0.3s var(--ease),
		color 0.3s var(--ease),
		border-color 0.3s var(--ease);
	border: 1px solid var(--blue-300);
	background: rgba(255, 255, 255, 0.7);
	color: var(--ink-700);
	animation: fpBreathe 3.4s var(--ease) infinite;
}

.inst__tab:hover {
	border-color: var(--navy-700);
}

.inst__tab.is-active {
	border-color: var(--navy-900);
	background: var(--navy-900);
	color: rgb(255, 255, 255);
	animation: none;
}

.inst__steps {
	margin-top: 16px;
	display: flex;
	flex-direction: column;
}

.inst__steps:focus-visible {
	outline-offset: 4px;
}

.inst__step {
	padding: 12px 0;
	border-top: 1px solid rgba(220, 233, 255, 0.9);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.inst__step-line {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.inst__step-num {
	min-width: 18px;
	font-size: 12px;
	font-weight: 600;
	transition: color 0.4s var(--ease);
	color: var(--ink-700);
}

.inst__step-name {
	font-size: 17px;
	transition: color 0.4s var(--ease);
	color: var(--ink-900);
	text-decoration: none;
}

.inst__step.is-off .inst__step-num,
.inst__step.is-off .inst__step-name {
	color: var(--ink-500);
}

.inst__step.is-off .inst__step-name {
	text-decoration: line-through;
	text-decoration-color: rgba(107, 114, 128, 0.55);
}

.inst__step-note {
	margin: 0;
	padding-left: 30px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink-500);
}

.inst__foot {
	margin-top: 12px;
}

.inst__all {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy-900);
}

.inst__all-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--navy-900);
	flex: none;
}

.ia {
	background: var(--blue-100);
	border-top: 1px solid var(--blue-300);
	border-bottom: 1px solid var(--blue-300);
}

.ia__head {
	max-width: 74ch;
}

.ia__lead {
	margin: 24px auto 0;
	font-size: clamp(17px, 1vw + 12px, 19px);
	line-height: 1.6;
	color: var(--ink-700);
	text-wrap: pretty;
}

.ia__card {
	margin: clamp(40px, 5vh, 56px) auto 0;
	max-width: 1000px;
	background: rgb(255, 255, 255);
	border: 1px solid var(--blue-300);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 28px 56px -34px rgba(25, 62, 158, 0.45);
}

.ia__row {
	display: grid;
	grid-template-columns: minmax(196px, 0.85fr) 1.7fr;
	gap: clamp(14px, 3vw, 44px);
	padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 38px);
}

.ia__row + .ia__row {
	border-top: 1px solid var(--blue-300);
}

.ia__stage {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ia__stage-label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-500);
}

.ia__stage-name {
	font-family: var(--display);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.3px;
	color: var(--navy-900);
}

.ia__detail {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ia__title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--ink-900);
}

.ia__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink-700);
	text-wrap: pretty;
}

.ia__human {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 22px);
	padding: clamp(24px, 2.8vw, 32px) clamp(22px, 3vw, 38px);
	background: var(--ink-900);
}

.ia__human svg {
	flex: none;
}

.ia__human-text {
	margin: 0;
	font-size: clamp(16px, 0.6vw + 13px, 18.5px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
	text-wrap: pretty;
}

.ia__human-text strong {
	display: block;
	font-family: var(--display);
	font-size: clamp(19px, 1vw + 14px, 23px);
	font-weight: 600;
	letter-spacing: -0.4px;
	color: rgb(255, 255, 255);
	margin-bottom: 6px;
}

/* Not `--ink-500`: on this tinted section it measures 4.38:1, under WCAG AA for 14px. This is
 * 4.65:1. The design ships the failing value. */
.ia__note {
	margin: clamp(16px, 2.4vh, 22px) auto 0;
	max-width: 1000px;
	font-size: 14px;
	line-height: 1.6;
	color: rgb(103, 110, 124);
	text-align: center;
}

.rehearse {
	position: relative;
	overflow-x: clip;
	padding-top: clamp(64px, 8vh, 104px);
	padding-bottom: clamp(56px, 7vh, 88px);
}

.rehearse__glow {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: min(1100px, 94vw);
	top: 22%;
	bottom: 2%;
	background: radial-gradient(55% 50% at 50% 50%, rgba(39, 91, 232, 0.16), transparent 72%);
	filter: blur(26px);
}

.rehearse__wrap {
	position: relative;
}

.rehearse__head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(20px, 3vw, 48px);
	align-items: center;
}

.rehearse__title {
	margin: 0;
	max-width: 22ch;
	font-family: var(--display);
	font-size: clamp(34px, 4vw, 62px);
	line-height: 1.06;
	letter-spacing: -1.8px;
	font-weight: 600;
	color: var(--ink-900);
	text-wrap: balance;
}

.rehearse__kicker {
	margin: 0;
	max-width: 38ch;
	font-size: clamp(16px, 1vw + 11px, 18px);
	line-height: 1.6;
	color: var(--ink-700);
	text-align: right;
	text-wrap: pretty;
}

.rehearse__stage {
	position: relative;
	z-index: 2;
	margin-top: clamp(40px, 5.5vh, 64px);
	pointer-events: none;
}

.mockup {
	position: relative;
	width: 100%;
	aspect-ratio: 1720 / 1090;
	will-change: transform;
}

.mockup__video {
	position: absolute;
	left: 12.791%;
	top: 5.229%;
	width: 74.709%;
	height: 73.853%;
	object-fit: cover;
	background: var(--surface);
}

.mockup__frame {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
	filter: drop-shadow(0 44px 64px rgba(25, 62, 158, 0.28));
}

.gestao {
	position: relative;
	z-index: 1;
	padding-top: clamp(128px, 16vh, 200px);
	padding-bottom: clamp(88px, 11vh, 140px);
}

.gestao__head {
	max-width: 980px;
}

.gestao__title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(30px, 3.2vw, 50px);
	line-height: 1.08;
	letter-spacing: -1.4px;
	font-weight: 600;
	color: var(--ink-900);
	text-wrap: balance;
}

.gestao__lead {
	margin: 24px auto 0;
	max-width: 750px;
	font-size: clamp(17px, 1vw + 12px, 19px);
	line-height: 1.6;
	color: var(--ink-700);
	text-wrap: pretty;
}

.mapa {
	margin: clamp(28px, 4vh, 48px) 0 0;
}

.mapa__frame {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 34px 64px -34px rgba(25, 62, 158, 0.55);
}

.mapa__frame iframe {
	display: block;
	width: 100%;
	height: clamp(420px, 58vh, 560px);
	border: 0;
	background: var(--blue-100);
}

.mapa__shield {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 2;
	align-items: flex-end;
	justify-content: center;
	padding: 0 0 20px;
	border: 0;
	background: rgba(13, 28, 46, 0.1);
	cursor: pointer;
	font-family: inherit;
}

.mapa__shield-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--navy-900);
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 10px 24px -12px rgba(25, 62, 158, 0.7);
}

.mapa__caption {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 10px 20px;
}

.mapa__source {
	flex: none;
	margin-left: auto;
	font-size: 13px;
	line-height: 1.5;
	color: var(--ink-500);
}

.gestao__cards {
	margin-top: clamp(24px, 3vh, 36px);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: clamp(16px, 2vw, 24px);
}

.gestao__card {
	box-shadow: 0 20px 44px -30px rgba(25, 62, 158, 0.5);
	border-radius: 16px;
	padding: clamp(20px, 2.2vw, 26px);
}

.gestao__card-label {
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ink-700);
}

.gestao__card-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-900);
	text-wrap: pretty;
}

.tres {
	position: relative;
	scroll-margin-top: 0;
	background: var(--navy-800);
}

.tres__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.tres__drift {
	position: absolute;
	inset: -10% -10% -20%;
	will-change: transform;
}

.tres__drift[data-drift="5"] {
	background: radial-gradient(34% 22% at 76% 58%, rgba(39, 91, 232, 0.5), transparent 68%);
}
.tres__drift[data-drift="6"] {
	background: radial-gradient(30% 20% at 24% 76%, rgba(39, 91, 232, 0.34), transparent 70%);
}
.tres__drift[data-drift="7"] {
	background: radial-gradient(24% 16% at 58% 92%, rgba(214, 138, 58, 0.16), transparent 72%);
}

.tres__band {
	height: clamp(16px, 3vh, 40px);
}

.tres__panel {
	position: sticky;
	top: 0;
	display: flex;
	align-items: center;
	min-height: 100svh;
	max-height: 100svh;
	overflow: hidden;
	padding-top: clamp(56px, 7.5vh, 100px);
	padding-bottom: clamp(18px, 3vh, 44px);
}

.tres__panel-inner {
	width: 100%;
}

.tres__wrap {
	position: relative;
}

.tres__head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: clamp(16px, 3vw, 48px);
	align-items: end;
}

.tres__title {
	margin: 0;
	max-width: 26ch;
	font-family: var(--display);
	font-size: clamp(32px, 3.8vw, 58px);
	line-height: 1.06;
	letter-spacing: -1.8px;
	font-weight: 600;
	color: rgb(255, 255, 255);
	text-wrap: balance;
}

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

.tres__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 9999px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: rgb(255, 255, 255);
	transition:
		background 0.2s var(--ease),
		border-color 0.2s var(--ease);
}

.tres__arrow:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.6);
}

.tres__slider {
	margin-top: clamp(10px, 2.2vh, 32px);
	overflow: hidden;
	border-radius: 20px;
}

.tres__track {
	display: flex;
	transition: transform 0.62s var(--ease);
}

.tres__slide {
	flex: 0 0 100%;
	min-width: 0;
	padding-right: clamp(0px, 2vw, 24px);
}

.tres__count {
	margin: clamp(26px, 5vh, 64px) 0 clamp(14px, 2.2vh, 22px);
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.tres__slide-title {
	margin: 0;
	max-width: 26ch;
	font-family: var(--display);
	font-size: clamp(26px, 2.2vw + 8px, 40px);
	line-height: 1.08;
	letter-spacing: -1.2px;
	font-weight: 600;
	color: rgb(255, 255, 255);
	text-wrap: balance;
}

.tres__slide-lead {
	margin: clamp(10px, 1.8vh, 18px) 0 0;
	max-width: 56ch;
	font-size: clamp(16px, 0.6vw + 12px, 18.5px);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
	text-wrap: pretty;
}

.tres__items {
	margin-top: clamp(12px, 2vh, 26px);
	padding-top: clamp(10px, 1.6vh, 18px);
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px clamp(20px, 2.6vw, 40px);
	max-width: 80ch;
}

.tres__item {
	margin: 0;
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 14.5px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.76);
	text-wrap: pretty;
}

.tres__bullet {
	flex: none;
	margin-top: 8px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.tres__dots {
	margin-top: clamp(10px, 1.8vh, 24px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.tres__dot {
	display: flex;
	align-items: center;
	gap: 9px;
	cursor: pointer;
	font-family: inherit;
	padding: 8px 16px;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 600;
	transition:
		background-color 0.3s var(--ease),
		color 0.3s var(--ease),
		border-color 0.3s var(--ease);
	border: 1px solid rgba(255, 255, 255, 0.32);
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.88);
}

.tres__dot:hover {
	border-color: rgba(255, 255, 255, 0.75);
}

.tres__dot.is-active {
	border-color: rgba(255, 255, 255, 0.94);
	background: rgba(255, 255, 255, 0.94);
	color: var(--navy-900);
}

.tres__dot-n {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	opacity: 0.72;
}

.tres__runway {
	height: 190svh;
}

.contato {
	position: relative;
	min-height: clamp(420px, 62svh, 640px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	padding-top: clamp(72px, 9vh, 112px);
	padding-bottom: clamp(72px, 9vh, 112px);
	background: var(--ink-900);
}

.contato__photo {
	position: absolute;
	inset: -28% 0;
	background-image: url("assets/img/contato-fundo-1920.webp");
	/* biome-ignore lint/suspicious/noDuplicateProperties: WebP fallback, same as .thesis__photo. */
	background-image: image-set(
		url("assets/img/contato-fundo-1920.avif") type("image/avif"),
		url("assets/img/contato-fundo-1920.webp") type("image/webp")
	);
	background-size: cover;
	background-position: center 58%;
	filter: saturate(0.7) contrast(1.04);
	will-change: transform;
}

.contato__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(13, 28, 46, 0.86) 0%,
		rgba(13, 28, 46, 0.66) 48%,
		rgba(25, 62, 158, 0.52) 100%
	);
}

.contato__body {
	position: relative;
}

.contato__title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(40px, 5.4vw, 80px);
	line-height: 1.02;
	letter-spacing: -2.4px;
	font-weight: 600;
	color: rgb(255, 255, 255);
}

.contato__lead {
	margin: 22px auto 0;
	max-width: 72ch;
	font-size: clamp(18px, 1vw + 13px, 22px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	text-wrap: pretty;
}

.contato__cta {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.foot {
	position: relative;
	z-index: 1;
	background: var(--surface);
	border-top: 1px solid var(--blue-300);
}

.foot__inner {
	padding-top: 56px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.foot__logo {
	height: 22px;
	width: auto;
	display: block;
	align-self: flex-start;
}

.foot__block {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 14px;
	line-height: 1.8;
	color: var(--ink-700);
}

/* The bare `p` rule matches these directly, and a direct match beats the 14px/1.8 inherited from
   .foot__block — so both have to be restated here or the footer renders at 16px/24px. */
.foot__block p {
	margin: 0;
	font-size: 14px;
	line-height: 1.8;
}

.foot__a11y {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--ink-700);
}

.foot__a11y svg {
	flex: none;
}

.foot__a11y p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

.foot__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: center;
	font-size: 14px;
	color: var(--ink-700);
	border-top: 1px solid var(--blue-100);
	padding-top: 20px;
}

.foot__legal p {
	margin: 0;
	font-size: 14px;
}

.foot__legal .foot__copy {
	margin-left: auto;
}

/* Must stay above the 820px block, which re-enables these on small screens. */
@media (max-height: 700px) {
	[data-slide-itens] {
		display: none;
	}
}

@media (max-width: 900px) {
	[data-m-stack] {
		grid-template-columns: 1fr;
	}

	.nav__links {
		display: none;
	}

	.nav__burger {
		display: inline-flex;
	}

	/* Must live in the SAME query that shows the burger. Gated one breakpoint lower, 821-900px got a
	   burger that toggled `hidden` on a panel still held at `display: none` — no navigation at all. */
	.nav__panel:not([hidden]) {
		display: flex;
	}

	.rail__track {
		padding: 4px 0 4px 2px;
	}

	.rail__line {
		left: 22px;
		right: auto;
		top: 14px;
		bottom: 14px;
		width: 1px;
		height: auto;
	}

	.rail__steps {
		display: flex;
		flex-direction: column;
		gap: 18px;
	}

	.rail__step {
		flex-direction: row;
		align-items: center;
		gap: 16px;
		width: auto;
		padding: 2px;
		text-align: left;
	}

	.rail__label {
		font-size: 13.5px;
		letter-spacing: 0.03em;
		text-align: left;
	}
}

@media (max-width: 820px) {
	.glass,
	.pill {
		backdrop-filter: blur(12px) saturate(1.3);
		-webkit-backdrop-filter: blur(12px) saturate(1.3);
	}

	.hero__title {
		letter-spacing: -1px;
	}

	.thesis__title {
		letter-spacing: -1.2px;
	}

	.hl,
	.nowrap {
		white-space: normal;
	}

	.contato__title {
		letter-spacing: -1.4px;
	}

	.rehearse__title,
	.gestao__title,
	.tres__title,
	.h2 {
		letter-spacing: -1px;
	}

	.inst__tab {
		min-height: 44px;
		padding: 10px 16px;
		font-size: 15px;
	}

	.tres__dot {
		min-height: 44px;
		padding: 10px 16px;
	}

	.hero {
		min-height: auto;
		padding-top: 100px;
		padding-bottom: 44px;
	}

	.hero__art {
		min-height: auto;
	}

	.hero__img {
		width: min(102%, 440px);
		transform: none !important;
	}

	.mockup {
		aspect-ratio: auto;
		transform: none !important;
	}

	.mockup__frame {
		display: none;
	}

	.mockup__video {
		position: static;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 10;
		border-radius: 12px;
		box-shadow: 0 20px 40px -24px rgba(25, 62, 158, 0.45);
	}

	.tres__band,
	.tres__runway {
		display: none;
	}

	.tres__panel {
		position: static;
		min-height: 0;
		max-height: none;
		overflow: visible;
		padding-top: 64px;
		padding-bottom: 56px;
	}

	.tres__slider {
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
		overscroll-behavior-x: contain;
	}

	.tres__slider::-webkit-scrollbar {
		display: none;
	}

	.tres__track {
		transform: none !important;
		transition: none;
	}

	.tres__slide {
		scroll-snap-align: start;
		padding-right: 0;
	}

	[data-slide-itens] {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.rail__label {
		font-size: 14.5px;
	}

	.gestao {
		padding-top: 76px;
	}

	.rehearse {
		padding-top: 56px;
	}
}

/* The map steals the scroll gesture from a finger, so the shield is gated on the input device, not on
   the viewport width — a tablet in landscape is wide AND touch, and used to get trapped with no pill
   to escape through. Leaflet keeps `dragging` on; mapa.html only disables scrollWheelZoom. */
@media (hover: none), (pointer: coarse) {
	#fp-mapa:not([data-mapa-on]) {
		pointer-events: none;
	}

	.mapa__shield:not([data-off]) {
		display: flex;
	}
}

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

	/* fpBreathe is declared on .inst__tab and only cancelled by .inst__tab.is-active, so the tab that
	   LOSES is-active starts pulsing. [data-breathe] alone misses it — it is only on tabs 0 and 1. */
	.inst__tab,
	[data-breathe],
	.pains__arrow {
		animation: none !important;
	}

	/* The bar is grown by setupScrollEffects, which never runs here. Without this the designed
	   highlight is absent altogether, not merely un-animated. */
	.hl {
		background-size: 100% 0.34em;
	}

	.tres__track,
	.nav,
	.nav__inner {
		transition: none;
	}

	.nav__cta,
	.nav__cta.is-shown {
		transition: none;
	}
}
