/* ==========================================================================
   Ricardo Dalla — Direito Tributário desde 1983
   Paleta: azul-marinho do arco da marca, grafite das letras, marfim e ouro.
   ========================================================================== */

/* ---------- Fontes (auto-hospedadas, sem requisições a terceiros) ---------- */
@font-face {
	font-family: "Noto Serif Display";
	src: url("../fonts/noto-serif-display.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Noto Serif Display";
	src: url("../fonts/noto-serif-display-italic.woff2") format("woff2");
	font-weight: 300 700;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Jost";
	src: url("../fonts/jost.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Jost";
	src: url("../fonts/jost-italic.woff2") format("woff2");
	font-weight: 300 700;
	font-style: italic;
	font-display: swap;
}
/* Fallbacks com métricas próximas para evitar saltos de layout. */
@font-face {
	font-family: "Jost Fallback";
	src: local("Arial"), local("Helvetica Neue"), local("Helvetica");
	size-adjust: 97%;
	ascent-override: 106%;
	descent-override: 36%;
}
@font-face {
	font-family: "Serif Display Fallback";
	src: local("Georgia"), local("Times New Roman");
	size-adjust: 104%;
	ascent-override: 98%;
	descent-override: 26%;
}

/* ---------- Tokens ---------- */
:root {
	--navy-950: #070a1c;
	--navy-900: #0d1233;
	--navy-850: #111740;
	--navy-800: #161c4a;
	--navy-700: #1f2562;
	--navy-600: #30337b;
	--navy-500: #4a4f9c;
	--navy-300: #a3a7d8;
	--ivory-50: #fbf9f5;
	--ivory-100: #f5f1e9;
	--ivory-200: #ebe4d6;
	--ivory-300: #ddd3c0;
	--ink-900: #15151b;
	--ink-700: #383842;
	--ink-500: #6a6974;
	--ink-400: #8b8a93;
	--graphite: #5e5c5d;
	--gold-300: #e6d3a6;
	--gold-400: #d8b978;
	--gold-500: #c5a15a;
	--gold-600: #a98541;
	--gold-700: #8a6b30;
	--white: #fff;

	--font-serif: "Noto Serif Display", "Serif Display Fallback", Georgia, "Times New Roman", serif;
	--font-sans: "Jost", "Jost Fallback", "Helvetica Neue", Arial, sans-serif;

	--max: 1240px;
	--max-narrow: 780px;
	--gutter: clamp(20px, 5vw, 56px);
	--section: clamp(56px, 6.4vw, 96px);
	--header-h: 84px;
	--radius: 2px;
	--radius-lg: 6px;

	--ease-out: cubic-bezier(.16, 1, .3, 1);
	--ease-in-out: cubic-bezier(.65, 0, .35, 1);
	--shadow-soft: 0 30px 60px -30px rgba(13, 18, 51, .35);
	--shadow-card: 0 1px 0 rgba(13, 18, 51, .04), 0 18px 40px -24px rgba(13, 18, 51, .28);

	--logo-ink: #fbf9f5;
	--logo-arc: var(--gold-500);

	color-scheme: light;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
	margin: 0;
	background: var(--ivory-50);
	color: var(--ink-700);
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
/* O overflow do body passa para a viewport e não corta nada: sem isto, as figuras que entram
   de lado alargam a página no celular e o cabeçalho fixo fica mais largo que a tela. */
.site-main,
.site-footer {
	overflow-x: clip;
}
body.menu-open {
	overflow: hidden;
}
img,
video,
svg {
	display: block;
	max-width: 100%;
}
img {
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}
button {
	cursor: pointer;
	background: none;
	border: 0;
	padding: 0;
}
h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--ink-900);
	font-weight: 500;
}
p {
	margin: 0 0 1em;
}
ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
address {
	font-style: normal;
}
figure {
	margin: 0;
}
::selection {
	background: var(--gold-300);
	color: var(--navy-900);
}
:focus-visible {
	outline: 2px solid var(--gold-500);
	outline-offset: 3px;
}
.site-main {
	outline: none;
}
[hidden]:not(.mobile-menu) {
	display: none !important;
}

.ico {
	width: 1.15em;
	height: 1.15em;
	flex: none;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.ico.flip {
	transform: rotate(180deg);
}

.sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	padding: 12px 18px;
	background: var(--gold-500);
	color: var(--navy-900);
	font-weight: 600;
	transform: translateY(-160%);
	transition: transform .3s var(--ease-out);
}
.skip-link:focus {
	transform: none;
}
.hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------- Tipografia ---------- */
.display-1,
.display-2,
.display-3,
.page-title {
	font-variant-numeric: lining-nums;
	font-family: var(--font-serif);
	font-weight: 400;
	letter-spacing: -.018em;
	text-wrap: balance;
}
.display-1 {
	font-size: clamp(2.45rem, 1.3rem + 4.3vw, 5.2rem);
	line-height: 1.03;
}
.display-2 {
	font-size: clamp(1.95rem, 1.3rem + 2.4vw, 3.45rem);
	line-height: 1.1;
}
.display-3 {
	font-size: clamp(1.5rem, 1.12rem + 1.25vw, 2.25rem);
	line-height: 1.18;
}
.display-1 em,
.display-2 em,
.display-3 em,
.page-title em {
	font-style: italic;
	font-weight: 400;
	color: var(--gold-600);
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 22px;
	font-family: var(--font-sans);
	font-size: .76rem;
	font-weight: 500;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold-700);
}
.eyebrow::before {
	content: "";
	width: 34px;
	height: 1px;
	background: currentColor;
	opacity: .7;
}
.eyebrow-light {
	color: var(--gold-400);
}
.lead {
	font-size: clamp(1.08rem, 1rem + .35vw, 1.3rem);
	line-height: 1.6;
	color: var(--ink-500);
	max-width: 58ch;
}
.kicker {
	display: inline-block;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold-700);
}

/* ---------- Layout ---------- */
.container {
	width: 100%;
	max-width: calc(var(--max) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container-narrow {
	max-width: calc(var(--max-narrow) + var(--gutter) * 2);
}
.section {
	position: relative;
	padding-block: var(--section);
}
.section-head {
	max-width: 760px;
	margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head .lead {
	margin-top: 22px;
}
.section-head-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	max-width: none;
	flex-wrap: wrap;
}

/* ---------- Botões e links ---------- */
.btn {
	--btn-bg: transparent;
	--btn-fg: var(--navy-900);
	--btn-bd: transparent;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 54px;
	padding: 0 28px;
	border: 1px solid var(--btn-bd);
	border-radius: var(--radius);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	line-height: 1.2;
	isolation: isolate;
	overflow: hidden;
	transition: color .45s var(--ease-out), border-color .45s var(--ease-out), background-color .45s var(--ease-out), transform .45s var(--ease-out);
}
.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--btn-hover, rgba(255, 255, 255, .14));
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .6s var(--ease-out);
}
.btn:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.btn .ico {
	transition: transform .5s var(--ease-out);
}
.btn:hover .ico-arrow-right,
.btn:hover .ico-arrow-up-right {
	transform: translateX(4px);
}
.btn-sm {
	min-height: 44px;
	padding: 0 20px;
	font-size: .72rem;
}
.btn-block {
	width: 100%;
}
.btn-gold {
	--btn-bg: var(--gold-500);
	--btn-fg: var(--navy-950);
	--btn-hover: var(--gold-400);
}
.btn-navy {
	--btn-bg: var(--navy-900);
	--btn-fg: var(--ivory-50);
	--btn-hover: var(--navy-600);
}
.btn-line {
	--btn-bd: rgba(251, 249, 245, .38);
	--btn-fg: var(--ivory-50);
	--btn-hover: rgba(251, 249, 245, .12);
}
.btn-ghost-light {
	--btn-bd: rgba(251, 249, 245, .4);
	--btn-fg: var(--ivory-50);
	--btn-hover: rgba(251, 249, 245, .1);
}
.btn-play {
	--btn-fg: var(--ivory-50);
	padding-left: 8px;
	letter-spacing: .12em;
}
.btn-play::after {
	display: none;
}
.btn-play small {
	margin-left: 6px;
	color: var(--gold-400);
	letter-spacing: .08em;
}
.play-dot {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(251, 249, 245, .12);
	border: 1px solid rgba(251, 249, 245, .35);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--ivory-50);
	transition: background-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.play-dot::before {
	content: "";
	position: absolute;
	inset: -7px;
	border-radius: 50%;
	border: 1px solid rgba(197, 161, 90, .55);
	animation: pulse 2.6s var(--ease-out) infinite;
}
.play-dot .ico {
	width: 16px;
	height: 16px;
	margin-left: 2px;
}
.btn-play:hover .play-dot {
	background: var(--gold-500);
	color: var(--navy-950);
	transform: scale(1.06);
}
@keyframes pulse {
	0% {
		transform: scale(.85);
		opacity: 1;
	}
	100% {
		transform: scale(1.35);
		opacity: 0;
	}
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--navy-700);
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0 1px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	padding-bottom: 4px;
	transition: background-size .5s var(--ease-out), color .3s;
}
.link-arrow:hover {
	background-size: 100% 1px;
	color: var(--gold-700);
}
.link-arrow .ico {
	transition: transform .5s var(--ease-out);
}
.link-arrow:hover .ico-arrow-right {
	transform: translateX(4px);
}
.link-light {
	color: var(--gold-300);
}
.link-light:hover {
	color: var(--ivory-50);
}
.link-button {
	color: var(--navy-600);
	text-decoration: underline;
	text-decoration-color: var(--gold-500);
	text-underline-offset: 4px;
}
.round-btn {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid rgba(251, 249, 245, .28);
	color: var(--ivory-50);
	transition: background-color .35s var(--ease-out), border-color .35s, color .35s;
}
.round-btn:hover {
	background: var(--gold-500);
	border-color: var(--gold-500);
	color: var(--navy-950);
}
.round-btn[disabled] {
	opacity: .35;
	pointer-events: none;
}

/* ---------- Barra de leitura ---------- */
.progress {
	position: fixed;
	inset: 0 0 auto;
	z-index: 120;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
	transform: scaleX(0);
	transform-origin: left;
	pointer-events: none;
}

/* ---------- Cabeçalho ---------- */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: var(--header-h);
	color: var(--ivory-50);
	transition: background-color .5s var(--ease-out), height .5s var(--ease-out), transform .6s var(--ease-out), box-shadow .5s;
	view-transition-name: site-header;
}
.admin-bar .site-header {
	top: 32px;
}
.site-header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 10, 28, .55), rgba(7, 10, 28, 0));
	pointer-events: none;
	transition: opacity .5s;
}
.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 44px);
	height: 100%;
}
.brand {
	display: block;
	flex: none;
	margin-right: auto;
}
.brand-logo {
	width: clamp(118px, 11vw, 148px);
	height: auto;
	transition: width .5s var(--ease-out);
}
.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 34px);
}
.primary-nav a {
	position: relative;
	display: inline-block;
	padding: 8px 0;
	font-size: .78rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
	opacity: .9;
	transition: opacity .3s, color .3s;
}
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 1px;
	background: var(--gold-500);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s var(--ease-out);
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
	opacity: 1;
}
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after,
.primary-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}
.header-cta .ico {
	width: 16px;
	height: 16px;
}
.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	margin-right: -10px;
	place-items: center;
	color: inherit;
}
.nav-toggle-lines {
	position: relative;
	display: block;
	width: 26px;
	height: 12px;
}
.nav-toggle-lines i {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: currentColor;
	transition: transform .5s var(--ease-out), top .5s var(--ease-out), width .4s;
}
.nav-toggle-lines i:first-child {
	top: 0;
}
.nav-toggle-lines i:last-child {
	top: 10px;
	width: 70%;
	left: auto;
	right: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
	top: 5px;
	transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
	top: 5px;
	width: 100%;
	transform: rotate(-45deg);
}

/* Cabeçalho após rolar: vidro marfim. */
.site-header.is-scrolled {
	--header-h: 70px;
	--logo-ink: var(--graphite);
	--logo-arc: var(--navy-600);
	color: var(--navy-900);
	background: rgba(251, 249, 245, .86);
	backdrop-filter: saturate(1.4) blur(16px);
	-webkit-backdrop-filter: saturate(1.4) blur(16px);
	box-shadow: 0 1px 0 rgba(13, 18, 51, .08), 0 12px 30px -24px rgba(13, 18, 51, .4);
}
.site-header.is-scrolled::before {
	opacity: 0;
}
.site-header.is-scrolled .brand-logo {
	width: clamp(104px, 9vw, 124px);
}
.site-header.is-scrolled .header-cta {
	--btn-bd: rgba(13, 18, 51, .22);
	--btn-fg: var(--navy-900);
	--btn-hover: rgba(13, 18, 51, .06);
}
.site-header.is-hidden {
	transform: translateY(-100%);
}
body.menu-open .site-header {
	--logo-ink: var(--ivory-50);
	--logo-arc: var(--gold-500);
	color: var(--ivory-50);
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
	transform: none;
}

/* Menu do celular. */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	background: radial-gradient(120% 80% at 100% 0%, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
	color: var(--ivory-50);
	clip-path: circle(0% at calc(100% - 44px) 42px);
	transition: clip-path .8s var(--ease-in-out), visibility 0s linear .8s;
	visibility: hidden;
}
.mobile-menu[hidden] {
	display: flex;
}
.mobile-menu.is-open {
	clip-path: circle(150% at calc(100% - 44px) 42px);
	visibility: visible;
	transition: clip-path .8s var(--ease-in-out), visibility 0s;
}
.mobile-menu-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding-top: calc(var(--header-h) + 28px);
	padding-bottom: 40px;
	overflow-y: auto;
}
.mobile-links li {
	overflow: hidden;
	border-bottom: 1px solid rgba(251, 249, 245, .1);
}
.mobile-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	font-family: var(--font-serif);
	font-size: clamp(1.7rem, 7vw, 2.3rem);
	line-height: 1.1;
	transform: translateY(105%);
	transition: transform .7s var(--ease-out), color .3s;
}
.mobile-menu.is-open .mobile-links a {
	transform: none;
}
.mobile-menu.is-open .mobile-links li:nth-child(2) a { transition-delay: .06s; }
.mobile-menu.is-open .mobile-links li:nth-child(3) a { transition-delay: .12s; }
.mobile-menu.is-open .mobile-links li:nth-child(4) a { transition-delay: .18s; }
.mobile-menu.is-open .mobile-links li:nth-child(5) a { transition-delay: .24s; }
.mobile-menu.is-open .mobile-links li:nth-child(6) a { transition-delay: .3s; }
.mobile-menu.is-open .mobile-links li:nth-child(7) a { transition-delay: .36s; }
.mobile-links a:hover,
.mobile-links a[aria-current="page"] {
	color: var(--gold-400);
}
.mobile-menu-foot {
	display: grid;
	gap: 14px;
	font-size: .95rem;
}
.mobile-menu-foot a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ivory-200);
}
.mobile-menu-foot .seal {
	margin-top: 12px;
}

/* ---------- Abertura: o filme institucional como protagonista ---------- */
.hero {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: max(700px, 100svh);
	padding-top: calc(var(--header-h) + 40px);
	background: var(--navy-950);
	color: var(--ivory-50);
	overflow: hidden;
	isolation: isolate;
}
.hero-media,
.hero-shade {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.hero-poster,
.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% 50%;
	filter: saturate(.92) contrast(1.04);
}
.hero-video {
	opacity: 0;
	transition: opacity 1.6s var(--ease-out);
}
.hero-video.is-playing {
	opacity: 1;
}
.hero-poster {
	transform: scale(1.03);
	animation: slow-zoom 24s var(--ease-in-out) infinite alternate;
}
@keyframes slow-zoom {
	to {
		transform: scale(1.1);
	}
}
/* Degradê só onde há texto: o filme fica visível no restante da tela. */
.hero-shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(7, 10, 28, .9) 0%, rgba(7, 10, 28, .72) 30%, rgba(7, 10, 28, .28) 58%, rgba(7, 10, 28, .06) 100%),
		linear-gradient(0deg, rgba(7, 10, 28, .88) 0%, rgba(7, 10, 28, .2) 26%, rgba(7, 10, 28, 0) 40%),
		linear-gradient(180deg, rgba(7, 10, 28, .6) 0%, rgba(7, 10, 28, 0) 20%);
}
.hero-shade::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
	opacity: .06;
	mix-blend-mode: overlay;
}
/* Cantoneiras douradas de enquadramento, como numa tela de cinema. */
.hero-frame {
	position: absolute;
	z-index: 0;
	inset: calc(var(--header-h) + 18px) 28px 104px;
	pointer-events: none;
}
.hero-frame i {
	position: absolute;
	width: 44px;
	height: 44px;
	border: 0 solid rgba(216, 185, 120, .75);
	opacity: 0;
	animation: frame-in 1.2s 1.1s var(--ease-out) forwards;
}
.hero-frame i:nth-child(1) { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.hero-frame i:nth-child(2) { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.hero-frame i:nth-child(3) { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.hero-frame i:nth-child(4) { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
@keyframes frame-in {
	from {
		opacity: 0;
		transform: scale(.6);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.hero-arc {
	position: absolute;
	z-index: -1;
	left: -8%;
	bottom: 16%;
	width: 118%;
	height: auto;
	aspect-ratio: 553.7 / 108.9;
	color: var(--gold-500);
	opacity: .12;
	clip-path: inset(0 100% 0 0);
	animation: arc-draw 2.6s .5s var(--ease-in-out) forwards;
}
@keyframes arc-draw {
	to {
		clip-path: inset(0 0 0 0);
	}
}
.hero-inner {
	position: relative;
	z-index: 1;
	margin-block: auto;
	padding-block: clamp(16px, 3vh, 36px) clamp(70px, 12vh, 130px);
}
.hero-foot {
	margin-top: auto;
}
.hero-copy {
	max-width: 900px;
}
.hero .display-1 {
	color: var(--ivory-50);
	text-shadow: 0 2px 30px rgba(7, 10, 28, .35);
}
.hero .display-1 em {
	color: var(--gold-400);
}
.hero-lead {
	max-width: 48ch;
	margin: 26px 0 40px;
	font-size: clamp(1.05rem, .97rem + .4vw, 1.3rem);
	line-height: 1.6;
	color: rgba(251, 249, 245, .86);
	font-weight: 300;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 22px 34px;
}
.hero-anim {
	opacity: 0;
	transform: translateY(28px);
	animation: rise 1.2s calc(var(--d, 0) * .12s + .15s) var(--ease-out) forwards;
}
@keyframes rise {
	to {
		opacity: 1;
		transform: none;
	}
}

/* Botão do filme: anel dourado que acompanha o andamento do vídeo. */
.film-cta {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: var(--ivory-50);
	text-align: left;
}
.film-cta-ring {
	position: relative;
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	flex: none;
	border-radius: 50%;
	background: rgba(7, 10, 28, .35);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: transform .5s var(--ease-out), background-color .5s var(--ease-out);
}
.film-cta-ring .film-cta-svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
}
.film-cta-ring circle {
	fill: none;
	stroke: rgba(251, 249, 245, .32);
	stroke-width: 1.5;
}
.film-cta-ring .film-cta-progress {
	stroke: var(--gold-400);
	stroke-width: 2;
	stroke-dasharray: 301.6;
	stroke-dashoffset: 301.6;
	stroke-linecap: round;
}
.film-cta-ring .ico {
	width: 20px;
	height: 20px;
	margin-left: 3px;
	color: var(--ivory-50);
	transition: color .4s;
}
.film-cta-ring::after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 1px solid rgba(216, 185, 120, .45);
	animation: pulse 2.8s var(--ease-out) infinite;
}
.film-cta:hover .film-cta-ring {
	transform: scale(1.07);
	background: var(--gold-500);
}
.film-cta:hover .film-cta-ring .ico {
	color: var(--navy-950);
}
.film-cta-text {
	display: grid;
	gap: 3px;
}
.film-cta-text b {
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.film-cta-text small {
	font-size: .8rem;
	color: var(--gold-300);
	letter-spacing: .04em;
}

/* Barra do filme: minutagem, progresso e controles. */
.hero-foot {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(251, 249, 245, .12);
	background: linear-gradient(180deg, rgba(7, 10, 28, .15), rgba(7, 10, 28, .55));
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.hero-foot-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	min-height: 78px;
}
.film-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: .7rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(251, 249, 245, .78);
	white-space: nowrap;
}
.rec-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gold-400);
	box-shadow: 0 0 0 0 rgba(216, 185, 120, .6);
	animation: rec 2s ease-out infinite;
}
@keyframes rec {
	0% { box-shadow: 0 0 0 0 rgba(216, 185, 120, .6); }
	100% { box-shadow: 0 0 0 10px rgba(216, 185, 120, 0); }
}
.film-time {
	font-variant-numeric: tabular-nums;
	letter-spacing: .12em;
	color: rgba(251, 249, 245, .55);
}
.film-time b {
	font-weight: 500;
	color: var(--ivory-50);
}
.film-progress {
	position: relative;
	height: 1px;
	background: rgba(251, 249, 245, .18);
	overflow: hidden;
}
.film-progress span {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
	transform: scaleX(0);
	transform-origin: left;
}
.film-controls {
	display: flex;
	gap: 10px;
}
.video-toggle {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(251, 249, 245, .3);
	color: var(--ivory-50);
	transition: background-color .3s, color .3s, border-color .3s;
}
.video-toggle:hover {
	background: var(--ivory-50);
	color: var(--navy-900);
}
.video-toggle .ico {
	width: 16px;
	height: 16px;
}
.video-toggle .when-paused,
.video-toggle[aria-pressed="true"] .when-playing {
	display: none;
}
.video-toggle[aria-pressed="true"] .when-paused {
	display: contents;
}
[data-sound-toggle][aria-pressed="true"] {
	background: var(--gold-500);
	border-color: var(--gold-500);
	color: var(--navy-950);
}

/* O selo "costura" a abertura à faixa de credenciais. */
.hero-seal-anchor {
	position: relative;
	z-index: 6;
	height: 0;
}
.hero-seal {
	position: absolute;
	right: var(--gutter);
	top: 0;
	transform: translateY(-58%);
}
.hero-seal .seal {
	filter: drop-shadow(0 18px 40px rgba(7, 10, 28, .45));
}

/* ---------- Selo "Desde 1983" ---------- */
.seal {
	--seal: 220px;
	--seal-fg: var(--gold-600);
	--seal-bg: rgba(251, 249, 245, .6);
	position: relative;
	display: grid;
	place-items: center;
	width: var(--seal);
	height: var(--seal);
	flex: none;
	color: var(--seal-fg);
}
.seal-on-dark {
	--seal-fg: var(--gold-400);
	--seal-bg: rgba(13, 18, 51, .42);
}
.seal-lg {
	--seal: clamp(170px, 16vw, 232px);
}
.seal-md {
	--seal: clamp(140px, 13vw, 190px);
}
.seal-sm {
	--seal: 118px;
}
.seal-ring {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--seal-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	animation: spin 38s linear infinite;
}
.seal:hover .seal-ring {
	animation-play-state: paused;
}
@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}
.seal-line {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.1;
	opacity: .85;
}
.seal-line-thin {
	stroke-width: .6;
	opacity: .55;
}
.seal-text {
	fill: currentColor;
	font-family: var(--font-sans);
	font-size: 11.2px;
	font-weight: 500;
	letter-spacing: .18em;
}
.seal-core {
	position: relative;
	display: grid;
	justify-items: center;
	line-height: 1;
	text-align: center;
}
.seal-since {
	font-size: calc(var(--seal) * .052);
	letter-spacing: .3em;
	text-transform: uppercase;
	opacity: .9;
}
.seal-year {
	margin-top: calc(var(--seal) * .02);
	font-family: var(--font-serif);
	font-size: calc(var(--seal) * .165);
	font-weight: 500;
	letter-spacing: -.01em;
	color: var(--ivory-50);
	font-variant-numeric: lining-nums;
}
.seal:not(.seal-on-dark) .seal-year {
	color: var(--navy-900);
}
.seal-rule {
	width: calc(var(--seal) * .2);
	height: 1px;
	margin: calc(var(--seal) * .035) 0;
	background: currentColor;
	opacity: .7;
}
.seal-years {
	font-size: calc(var(--seal) * .058);
	letter-spacing: .18em;
	text-transform: uppercase;
}
.seal-years b {
	font-weight: 600;
}
.seal-sm .seal-text {
	font-size: 12px;
}

/* ---------- Faixa de credenciais ---------- */
.marquee {
	position: relative;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--ivory-200);
	border-top: 1px solid rgba(197, 161, 90, .25);
	border-bottom: 1px solid rgba(197, 161, 90, .25);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
	display: flex;
	width: max-content;
	animation: marquee 48s linear infinite;
}
.marquee:hover .marquee-track {
	animation-play-state: paused;
}
.marquee-list {
	display: flex;
	flex: none;
}
.marquee-list li {
	display: flex;
	align-items: center;
	gap: 38px;
	padding: 22px 0 22px 38px;
	font-family: var(--font-serif);
	font-size: 1.12rem;
	font-style: italic;
	white-space: nowrap;
}
.marquee-list li::after {
	content: "";
	width: 7px;
	height: 7px;
	background: var(--gold-500);
	transform: rotate(45deg);
}
@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

/* ---------- O escritório ---------- */
.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	align-items: center;
	gap: clamp(36px, 6.5vw, 100px);
}
.about-text {
	margin: 34px 0 40px;
	font-size: 1.12rem;
	color: var(--ink-700);
	max-width: 56ch;
}
.about-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 32px;
}
.frame-gold {
	position: relative;
	isolation: isolate;
}
.frame-gold::before {
	content: "";
	position: absolute;
	inset: 26px -26px -26px 26px;
	z-index: -1;
	border: 1px solid var(--gold-500);
	transition: transform 1s var(--ease-out);
}
.frame-gold img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: 30% 50%;
	box-shadow: var(--shadow-soft);
}
.about-figure:hover .frame-gold::before,
.bio-figure:hover .frame-gold::before {
	transform: translate(-10px, -10px);
}
.about-figure figcaption,
.bio-figure figcaption {
	display: grid;
	gap: 4px;
	margin-top: 48px;
	padding-left: 26px;
	font-size: .9rem;
	color: var(--ink-500);
}
.about-figure figcaption strong,
.bio-figure figcaption strong {
	font-family: var(--font-serif);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--ink-900);
}

.stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(48px, 6vw, 80px);
}
.stats-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat {
	display: grid;
	align-content: start;
	gap: 10px;
	padding: 36px 28px 8px;
	border-top: 1px solid var(--ivory-300);
	border-left: 1px solid var(--ivory-300);
}
.stat:first-child {
	border-left: 0;
	padding-left: 0;
}
.stat-num {
	font-family: var(--font-serif);
	font-size: clamp(2.3rem, 1.85rem + 1.7vw, 3.5rem);
	font-weight: 400;
	line-height: 1;
	color: var(--navy-900);
	font-variant-numeric: lining-nums tabular-nums;
}
.stat-num b {
	font-weight: 500;
}
.stat-label {
	max-width: 22ch;
	font-size: .92rem;
	line-height: 1.5;
	color: var(--ink-500);
}

/* ---------- Atuação ---------- */
.practice {
	background: var(--ivory-100);
}
.practice::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: var(--ivory-300);
}
.practice-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--ivory-300);
	border-left: 1px solid var(--ivory-300);
}
.practice-card {
	border-right: 1px solid var(--ivory-300);
	border-bottom: 1px solid var(--ivory-300);
}
.practice-card a {
	position: relative;
	display: grid;
	align-content: start;
	gap: 14px;
	height: 100%;
	min-height: 330px;
	padding: clamp(28px, 3vw, 44px);
	overflow: hidden;
	isolation: isolate;
	transition: color .5s var(--ease-out);
}
.practice-card a::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--navy-900);
	transform: translateY(101%);
	transition: transform .7s var(--ease-out);
}
.practice-card a:hover::before,
.practice-card a:focus-visible::before {
	transform: none;
}
.practice-card a:hover,
.practice-card a:focus-visible {
	color: var(--ivory-200);
}
.practice-index {
	font-size: .75rem;
	letter-spacing: .2em;
	color: var(--gold-700);
}
.practice-icon {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin: 18px 0 8px;
	border: 1px solid var(--gold-500);
	border-radius: 50%;
	color: var(--gold-600);
	transition: background-color .5s var(--ease-out), color .5s, transform .7s var(--ease-out);
}
.practice-icon .ico {
	width: 26px;
	height: 26px;
	stroke-width: 1.25;
}
.practice-card h3 {
	font-family: var(--font-serif);
	font-size: clamp(1.3rem, 1.12rem + .55vw, 1.6rem);
	line-height: 1.22;
	transition: color .5s;
}
.practice-card p {
	margin: 0;
	font-size: .98rem;
	line-height: 1.65;
	color: var(--ink-500);
	transition: color .5s;
}
.practice-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 18px;
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-600);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.practice-card a:hover h3,
.practice-card a:focus-visible h3 {
	color: var(--ivory-50);
}
.practice-card a:hover p,
.practice-card a:focus-visible p {
	color: rgba(251, 249, 245, .72);
}
.practice-card a:hover .practice-icon,
.practice-card a:focus-visible .practice-icon {
	background: var(--gold-500);
	color: var(--navy-950);
	transform: rotate(-8deg);
}
.practice-card a:hover .practice-more,
.practice-card a:focus-visible .practice-more {
	opacity: 1;
	transform: none;
	color: var(--gold-400);
}

/* ---------- Linha do tempo ---------- */
.timeline-section {
	background: var(--navy-900);
	color: var(--ivory-200);
	overflow: hidden;
}
.timeline-section::after {
	content: "";
	position: absolute;
	right: -10%;
	top: -30%;
	width: 60%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(48, 51, 123, .55), transparent 65%);
	pointer-events: none;
	z-index: 0;
}
.timeline-section > .container {
	position: relative;
	z-index: 1;
}
.timeline-section .display-2 {
	color: var(--ivory-50);
}
.timeline-section .display-2 em {
	color: var(--gold-400);
}
.timeline-nav {
	display: flex;
	gap: 12px;
}
.timeline {
	position: relative;
	z-index: 1;
}
.timeline-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: clamp(250px, 26vw, 330px);
	gap: 0;
	padding: 18px var(--gutter) 30px max(var(--gutter), calc((100vw - var(--max)) / 2));
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
	scrollbar-width: none;
	cursor: grab;
	-webkit-overflow-scrolling: touch;
}
.timeline-track::-webkit-scrollbar {
	display: none;
}
.timeline-track.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
	user-select: none;
}
.tl-item {
	position: relative;
	padding: 0 34px 0 0;
	scroll-snap-align: start;
}
.tl-item::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 88px;
	height: 1px;
	background: rgba(251, 249, 245, .16);
}
.tl-year {
	display: block;
	font-family: var(--font-serif);
	font-size: clamp(2.3rem, 1.95rem + 1.4vw, 3.3rem);
	line-height: 1;
	color: var(--ivory-50);
	font-variant-numeric: lining-nums;
}
.tl-dot {
	position: relative;
	display: block;
	width: 13px;
	height: 13px;
	margin: 18px 0 30px;
	border-radius: 50%;
	background: var(--navy-900);
	border: 1px solid var(--gold-500);
}
.tl-dot::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--gold-500);
}
.tl-item.is-now .tl-year {
	color: var(--gold-400);
}
.tl-item.is-now .tl-dot {
	box-shadow: 0 0 0 6px rgba(197, 161, 90, .15);
}
.tl-title {
	margin-bottom: 10px;
	font-size: .8rem;
	font-weight: 500;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-400);
}
.tl-item p {
	margin: 0;
	font-size: .98rem;
	line-height: 1.65;
	color: rgba(251, 249, 245, .7);
	max-width: 30ch;
}
.timeline-progress {
	max-width: calc(var(--max));
	height: 1px;
	margin: 18px auto 0;
	margin-inline: max(var(--gutter), calc((100vw - var(--max)) / 2));
	background: rgba(251, 249, 245, .12);
}
.timeline-progress span {
	display: block;
	height: 100%;
	background: var(--gold-500);
	transform: scaleX(.15);
	transform-origin: left;
	transition: transform .3s linear;
}

/* ---------- Livro ---------- */
/* Linha do tempo e livro são escuros: seguidos, viram um bloco só, sem vão dobrado. */
.timeline-section + .book {
	margin-top: -1px;
	padding-top: clamp(20px, 3vw, 44px);
}
.book {
	background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%);
	color: rgba(251, 249, 245, .78);
	overflow: hidden;
}
.book-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(36px, 6.5vw, 100px);
}
.book-figure {
	position: relative;
}
.book-image {
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: 0 50px 80px -40px rgba(0, 0, 0, .7);
}
.book-image img {
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 1.6s var(--ease-out);
}
.book-figure:hover .book-image img {
	transform: scale(1.08);
}
.award-badge {
	position: absolute;
	right: -18px;
	bottom: -28px;
	display: grid;
	justify-items: center;
	align-content: center;
	gap: 6px;
	width: 138px;
	height: 138px;
	border-radius: 50%;
	background: var(--gold-500);
	color: var(--navy-950);
	text-align: center;
	box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .6);
	font-size: .66rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	line-height: 1.3;
}
.award-badge::before {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: 50%;
	border: 1px dashed rgba(7, 10, 28, .35);
}
.award-badge .ico {
	width: 22px;
	height: 22px;
}
.award-badge b {
	font-variant-numeric: lining-nums;
	font-family: var(--font-serif);
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1;
}
.book .display-2 {
	color: var(--ivory-50);
}
.book .display-2 em {
	color: var(--gold-400);
}
.book-subtitle {
	margin: 12px 0 28px;
	font-family: var(--font-serif);
	font-size: clamp(1.08rem, 1rem + .35vw, 1.3rem);
	font-style: italic;
	color: var(--ivory-200);
}
.book-facts {
	display: grid;
	gap: 12px;
	margin: 32px 0;
}
.book-facts li {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(251, 249, 245, .1);
	color: var(--ivory-100);
}
.book-facts .ico {
	color: var(--gold-400);
}
.book-quote {
	position: relative;
	margin: 40px 0 34px;
	padding: 0 0 0 28px;
	border-left: 1px solid var(--gold-500);
}
.book-quote .ico {
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
	color: var(--gold-500);
}
.book-quote p {
	margin: 0 0 12px;
	font-family: var(--font-serif);
	font-size: clamp(1.2rem, 1.05rem + .55vw, 1.5rem);
	font-style: italic;
	line-height: 1.42;
	color: var(--ivory-50);
}
.book-quote cite {
	font-size: .8rem;
	font-style: normal;
	letter-spacing: .08em;
	color: var(--gold-400);
}

/* ---------- IBDTI ---------- */
.ibdti {
	background: var(--ivory-50);
}
.ibdti-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(36px, 6.5vw, 100px);
}
.ibdti-brand {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-bottom: 36px;
}
.ibdti-brand img {
	width: clamp(160px, 16vw, 220px);
}
.since-badge {
	display: inline-grid;
	place-items: center;
	padding: 10px 16px;
	border: 1px solid var(--gold-500);
	font-size: .72rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold-700);
}
.ibdti-copy p {
	max-width: 56ch;
	color: var(--ink-700);
}
.ibdti-copy .display-3 {
	margin-bottom: 26px;
}
.ibdti-copy .display-2 {
	margin-bottom: 30px;
}
.ibdti-copy > .btn {
	margin-top: 36px;
}
.ibdti-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px 32px;
	margin-top: 36px;
}
.ibdti-figure {
	position: relative;
}
.ibdti-figure img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}
.ibdti-figure::after {
	content: "";
	position: absolute;
	left: -18px;
	right: 40%;
	bottom: -18px;
	height: 8px;
	background: #dea128;
}
.ibdti-figure figcaption {
	margin-top: 30px;
	font-size: .85rem;
	color: var(--ink-500);
}

/* ---------- Destaques ---------- */
.highlights {
	background: var(--ivory-100);
}
.highlight-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}
.highlight-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.highlight-card a {
	display: block;
	height: 100%;
	background: var(--white);
	box-shadow: var(--shadow-card);
	transition: transform .7s var(--ease-out), box-shadow .7s var(--ease-out);
}
.highlight-card a:hover {
	transform: translateY(-6px);
	box-shadow: 0 1px 0 rgba(13, 18, 51, .04), 0 40px 60px -30px rgba(13, 18, 51, .4);
}
.highlight-media {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--navy-900);
}
.highlight-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.4s var(--ease-out), opacity .6s;
}
.highlight-card a:hover .highlight-media img {
	transform: scale(1.07);
	opacity: .9;
}
.highlight-body {
	display: grid;
	gap: 10px;
	padding: 24px 24px 26px;
}
.highlight-body h3 {
	font-family: var(--font-serif);
	font-size: 1.22rem;
	font-weight: 400;
	line-height: 1.28;
}
.highlight-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--navy-600);
}

.feature-list {
	display: grid;
	gap: clamp(48px, 7vw, 100px);
}
.feature {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	align-items: center;
	gap: clamp(36px, 6vw, 90px);
}
.feature.is-flipped .feature-media {
	order: 2;
}
.feature-media {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}
.feature-media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 1.6s var(--ease-out);
}
.feature:hover .feature-media img {
	transform: scale(1.05);
}
.feature-index {
	font-variant-numeric: lining-nums;
	display: block;
	font-family: var(--font-serif);
	font-size: 3.6rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1px var(--gold-500);
	margin-bottom: 18px;
}
.feature-copy .display-3 {
	margin: 12px 0 18px;
}
.feature-copy .display-3 a:hover {
	color: var(--navy-600);
}

/* ---------- Artigos ---------- */
.articles-home-grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: clamp(36px, 6vw, 96px);
	align-items: start;
}
.articles-home-aside {
	position: sticky;
	top: calc(var(--header-h) + 40px);
}
.articles-home-aside .lead {
	margin: 22px 0 32px;
}
.press-figure {
	margin-bottom: 34px;
}
.press-figure img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: var(--radius-lg);
	filter: sepia(.15) saturate(.9);
}
.press-figure figcaption {
	margin-top: 12px;
	font-size: .85rem;
	color: var(--ink-500);
}
.article-list {
	border-top: 1px solid var(--ivory-300);
	counter-reset: art;
}
.article-row {
	border-bottom: 1px solid var(--ivory-300);
}
.article-row[hidden] {
	display: none;
}
.article-row a {
	position: relative;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 44px;
	gap: 18px;
	align-items: center;
	padding: 26px 8px 26px 0;
	transition: padding .5s var(--ease-out), background-color .5s;
}
.article-row a::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 100%;
	background: var(--navy-600);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .7s var(--ease-out);
}
.article-row a:hover::before {
	transform: scaleX(1);
}
.article-row a:hover {
	padding-left: 12px;
}
.article-num {
	font-variant-numeric: lining-nums;
	font-family: var(--font-serif);
	font-size: 1.35rem;
	color: var(--gold-600);
	font-variant-numeric: lining-nums tabular-nums;
}
.article-main {
	display: grid;
	gap: 6px;
	min-width: 0;
}
.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 18px;
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ink-400);
}
.article-meta .topic {
	color: var(--gold-700);
}
.article-meta .minutes {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.article-meta .ico {
	width: 14px;
	height: 14px;
}
.article-title {
	font-family: var(--font-serif);
	font-size: clamp(1.18rem, 1.08rem + .42vw, 1.45rem);
	font-weight: 400;
	line-height: 1.3;
	color: var(--ink-900);
	transition: color .3s;
}
.article-row a:hover .article-title {
	color: var(--navy-600);
}
.article-excerpt {
	font-size: .96rem;
	line-height: 1.6;
	color: var(--ink-500);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-go {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--ivory-300);
	color: var(--navy-700);
	transition: background-color .4s var(--ease-out), color .4s, border-color .4s, transform .5s var(--ease-out);
}
.article-row a:hover .article-go {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: var(--gold-400);
	transform: rotate(45deg);
}

.filters {
	display: grid;
	gap: 22px;
	margin-bottom: 44px;
}
.search-field {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 620px;
}
.search-field > .ico {
	position: absolute;
	left: 20px;
	color: var(--ink-400);
	pointer-events: none;
}
.search-field input {
	width: 100%;
	height: 60px;
	padding: 0 54px 0 56px;
	border: 1px solid var(--ivory-300);
	border-radius: 40px;
	background: var(--white);
	font-size: 1.02rem;
	transition: border-color .3s, box-shadow .3s;
	-webkit-appearance: none;
	appearance: none;
}
.search-field input::-webkit-search-cancel-button {
	display: none;
}
.search-field input:focus {
	outline: none;
	border-color: var(--gold-500);
	box-shadow: 0 0 0 4px rgba(197, 161, 90, .18);
}
.search-clear {
	position: absolute;
	right: 12px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--ink-500);
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s, background-color .2s;
}
.search-clear.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.search-clear:hover {
	background: var(--ivory-100);
}
.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid var(--ivory-300);
	border-radius: 40px;
	background: transparent;
	font-size: .9rem;
	color: var(--ink-700);
	transition: background-color .3s var(--ease-out), color .3s, border-color .3s;
}
.chip span {
	font-size: .75rem;
	color: var(--ink-400);
	transition: color .3s;
}
.chip:hover {
	border-color: var(--navy-600);
}
.chip.is-active {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: var(--ivory-50);
}
.chip.is-active span {
	color: var(--gold-400);
}
.results-count {
	margin: 0;
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink-400);
}
.empty-state {
	padding: 60px 0;
	text-align: center;
}
.search-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 44px;
}
.search-inline .search-field {
	flex: 1 1 320px;
}

/* ---------- Chamada de contato ---------- */
.cta-band {
	position: relative;
	padding-block: clamp(72px, 8.5vw, 124px);
	background: var(--navy-950);
	color: rgba(251, 249, 245, .8);
	overflow: hidden;
	isolation: isolate;
}
.cta-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.cta-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.8);
}
.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(100deg, rgba(7, 10, 28, .95) 0%, rgba(7, 10, 28, .82) 45%, rgba(7, 10, 28, .45) 100%);
}
.cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr);
	align-items: end;
	gap: 60px;
}
.cta-band .display-2 {
	color: var(--ivory-50);
	max-width: 17ch;
}
.cta-band .display-2 em {
	color: var(--gold-400);
}
.cta-band .lead {
	margin: 26px 0 40px;
	color: rgba(251, 249, 245, .74);
}
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.cta-facts {
	display: grid;
	gap: 18px;
	padding: 30px;
	border: 1px solid rgba(251, 249, 245, .14);
	background: rgba(7, 10, 28, .45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	font-size: .95rem;
}
.cta-facts li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}
.cta-facts .ico {
	margin-top: 4px;
	color: var(--gold-400);
}
.cta-facts a:hover {
	color: var(--gold-300);
}

/* ---------- Abertura das páginas internas ---------- */
.page-hero {
	position: relative;
	padding: calc(var(--header-h) + clamp(40px, 5.5vw, 80px)) 0 clamp(44px, 5.5vw, 80px);
	background: var(--navy-900);
	color: rgba(251, 249, 245, .78);
	overflow: hidden;
	isolation: isolate;
}
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(90% 120% at 100% 0%, rgba(48, 51, 123, .6), transparent 60%),
		linear-gradient(180deg, var(--navy-950), var(--navy-900));
}
.page-hero.has-image::before {
	background: linear-gradient(100deg, rgba(7, 10, 28, .96) 0%, rgba(7, 10, 28, .82) 50%, rgba(7, 10, 28, .6) 100%);
}
.page-hero-media {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.page-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-hero-arc {
	position: absolute;
	z-index: -1;
	right: -12%;
	bottom: -8%;
	width: 90%;
	height: auto;
	aspect-ratio: 553.7 / 108.9;
	color: var(--gold-500);
	opacity: .1;
	clip-path: inset(0 100% 0 0);
	animation: arc-draw 2.2s .2s var(--ease-in-out) forwards;
}
.page-hero-inner {
	position: relative;
}
.page-title {
	max-width: 20ch;
	font-size: clamp(2.3rem, 1.5rem + 3.1vw, 4.5rem);
	line-height: 1.06;
	color: var(--ivory-50);
}
.page-title em {
	color: var(--gold-400);
}
.is-article-hero .page-title {
	max-width: 24ch;
	font-size: clamp(1.9rem, 1.35rem + 2.2vw, 3.3rem);
}
.page-lead {
	max-width: 58ch;
	margin: 26px 0 0;
	font-size: clamp(1.05rem, 1rem + .35vw, 1.28rem);
	font-weight: 300;
	line-height: 1.6;
}
.page-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	margin-top: 32px;
	font-size: .82rem;
	letter-spacing: .08em;
}
.meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ivory-200);
}
.meta-item .ico {
	color: var(--gold-400);
}
.meta-topic {
	padding: 4px 14px;
	border: 1px solid rgba(197, 161, 90, .5);
	border-radius: 40px;
	color: var(--gold-300);
	transition: background-color .3s, color .3s;
}
.meta-topic:hover {
	background: var(--gold-500);
	color: var(--navy-950);
}
.page-hero-seal {
	position: absolute;
	right: max(var(--gutter), calc((100vw - var(--max)) / 2));
	bottom: clamp(40px, 6vw, 80px);
}
.breadcrumbs {
	margin-bottom: 36px;
	font-size: .76rem;
	letter-spacing: .08em;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(251, 249, 245, .55);
}
.breadcrumbs li + li::before {
	content: "/";
	color: var(--gold-500);
	opacity: .8;
}
.breadcrumbs a:hover {
	color: var(--gold-300);
}
.breadcrumbs [aria-current] {
	color: var(--ivory-100);
	max-width: 36ch;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ---------- Escritório ---------- */
.bio-grid {
	display: grid;
	grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
	gap: clamp(36px, 6.5vw, 100px);
	align-items: start;
}
.bio-figure {
	position: sticky;
	top: calc(var(--header-h) + 40px);
}
.bio-copy .display-2 {
	margin-bottom: 34px;
}
.film-card {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	align-items: center;
	gap: 22px;
	width: 100%;
	margin-top: 44px;
	padding: 14px;
	border: 1px solid var(--ivory-300);
	background: var(--white);
	text-align: left;
	transition: border-color .4s, box-shadow .6s var(--ease-out);
}
.film-card:hover {
	border-color: var(--gold-500);
	box-shadow: var(--shadow-card);
}
.film-card-media {
	position: relative;
	display: block;
	overflow: hidden;
}
.film-card-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.film-card .play-dot {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.film-card-text {
	display: grid;
	gap: 4px;
	color: var(--ink-500);
	font-size: .95rem;
}
.film-card-text b {
	font-family: var(--font-serif);
	font-size: 1.18rem;
	font-weight: 400;
	color: var(--ink-900);
}
.credentials {
	background: var(--ivory-100);
}
.cred-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--ivory-300);
	border: 1px solid var(--ivory-300);
}
.cred {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: clamp(28px, 3vw, 40px);
	background: var(--ivory-50);
}
.cred-icon {
	color: var(--gold-600);
}
.cred-icon .ico {
	width: 32px;
	height: 32px;
	stroke-width: 1.2;
}
.cred h3 {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.15;
}
.cred p {
	margin: 0;
	font-size: .98rem;
	color: var(--ink-500);
}
.independence {
	background: var(--ivory-50);
	text-align: center;
}
.independence-inner {
	max-width: 980px;
}
.quote-mark {
	width: 54px;
	height: 54px;
	margin: 0 auto 26px;
	color: var(--gold-500);
}
.independence .display-3 {
	margin-bottom: 26px;
	font-style: italic;
	font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.5rem);
}
.independence .eyebrow::before {
	display: none;
}

/* ---------- IBDTI (página) ---------- */
.ibdti-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
	align-items: center;
	gap: 48px;
}
.ibdti-hero-mark {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 26px;
}
.ibdti-hero-mark img {
	width: 100%;
	max-width: 420px;
}
.since-seal {
	display: grid;
	justify-items: center;
	gap: 2px;
	padding: 18px 34px;
	border: 1px solid rgba(222, 161, 40, .6);
	color: #e9b453;
	font-size: .7rem;
	letter-spacing: .24em;
	text-transform: uppercase;
}
.since-seal b {
	font-variant-numeric: lining-nums;
	font-family: var(--font-serif);
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	color: var(--ivory-50);
}
.ctn-feature {
	background: var(--navy-900);
	color: rgba(251, 249, 245, .78);
}
.ctn-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	align-items: center;
	gap: clamp(36px, 6vw, 90px);
}
.ctn-media {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-lg);
}
.ctn-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 1.6s var(--ease-out);
}
.ctn-media:hover img {
	transform: scale(1.05);
}
.ctn-copy .display-2 {
	color: var(--ivory-50);
	margin-bottom: 22px;
}
.ctn-copy .display-2 em {
	color: var(--gold-400);
}
.ctn-copy .btn {
	margin-top: 18px;
}

/* ---------- Texto corrido (artigos e páginas) ---------- */
.prose {
	color: var(--ink-700);
}
.prose > * {
	margin-block: 0;
}
.prose > * + * {
	margin-top: 1.2em;
}
.prose-lg {
	font-size: 1.12rem;
}
.prose a {
	color: var(--navy-600);
	text-decoration: underline;
	text-decoration-color: rgba(197, 161, 90, .7);
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
	transition: color .3s, text-decoration-color .3s;
	overflow-wrap: anywhere;
}
.prose a:hover {
	color: var(--gold-700);
	text-decoration-color: var(--gold-700);
}
.prose h2 {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 2.2em;
	font-family: var(--font-sans);
	font-size: .9rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.5;
	color: var(--navy-700);
}
.prose h2::before {
	content: "";
	flex: none;
	width: 28px;
	height: 1px;
	background: var(--gold-500);
}
.prose h3 {
	margin-top: 1.8em;
	font-family: var(--font-serif);
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.2;
}
.prose ul,
.prose ol {
	display: grid;
	gap: .55em;
	padding-left: 0;
}
.prose ul li {
	position: relative;
	padding-left: 26px;
}
.prose ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .8em;
	width: 12px;
	height: 1px;
	background: var(--gold-600);
}
.prose ol {
	counter-reset: li;
}
.prose ol li {
	position: relative;
	padding-left: 34px;
	counter-increment: li;
}
.prose ol li::before {
	content: counter(li, decimal-leading-zero);
	position: absolute;
	left: 0;
	font-family: var(--font-serif);
	color: var(--gold-700);
}
.prose blockquote {
	margin: 2em 0;
	padding: 6px 0 6px 28px;
	border-left: 1px solid var(--gold-500);
	font-family: var(--font-serif);
	font-size: 1.3rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--ink-900);
}
.prose strong {
	color: var(--ink-900);
	font-weight: 600;
}
.prose-article {
	font-size: clamp(1.06rem, 1rem + .25vw, 1.18rem);
	line-height: 1.85;
}
.prose .dropcap::first-letter {
	float: left;
	margin: .06em .12em 0 -.02em;
	font-family: var(--font-serif);
	font-size: 4em;
	font-weight: 400;
	line-height: .8;
	color: var(--navy-600);
}
.prose .dek {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 1.1rem + .5vw, 1.55rem);
	font-style: italic;
	line-height: 1.45;
	color: var(--ink-900);
}
.prose .dek + .dek {
	margin-top: .4em;
	font-size: 1.15rem;
	color: var(--ink-500);
}
.prose .dek:last-of-type {
	padding-bottom: 1.2em;
	border-bottom: 1px solid var(--ivory-300);
}
.prose .byline {
	padding: 14px 18px;
	background: var(--ivory-100);
	border-left: 2px solid var(--gold-500);
	font-size: .95rem;
	line-height: 1.55;
	color: var(--ink-500);
}
.prose .speech strong {
	font-family: var(--font-sans);
	font-size: .78em;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--navy-600);
}
.prose .note {
	padding: 16px 20px;
	background: var(--ivory-100);
	font-size: .92rem;
	line-height: 1.6;
	color: var(--ink-500);
}
.prose .signature {
	margin-top: 2.6em;
	padding-top: 1.4em;
	border-top: 1px solid var(--ivory-300);
	font-size: .95rem;
	line-height: 1.6;
	color: var(--ink-500);
}
.prose .signature p {
	margin: 0;
}
.prose .signature p:first-child {
	font-family: var(--font-serif);
	font-size: 1.15rem;
	color: var(--ink-900);
}
.table-scroll {
	overflow-x: auto;
}
.prose table {
	width: 100%;
	border-collapse: collapse;
	font-size: .95rem;
}
.prose th,
.prose td {
	padding: 10px 12px;
	border-bottom: 1px solid var(--ivory-300);
	text-align: left;
}

/* Galerias dos destaques. */
.rd-gallery {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 12px;
	margin: 2.2em 0 !important;
}
.rd-gallery-item {
	position: relative;
	display: block;
	grid-column: span 6;
	overflow: hidden;
	background: var(--navy-900);
	cursor: zoom-in;
	text-decoration: none !important;
}
.rd-gallery-item:nth-child(3n + 1) {
	grid-column: span 12;
}
.rd-gallery-item img {
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 1.2s var(--ease-out), opacity .5s;
}
.rd-gallery-item:nth-child(3n + 1) img {
	aspect-ratio: 16 / 9;
}
.rd-gallery-item:hover img {
	transform: scale(1.05);
	opacity: .88;
}
.rd-gallery-item::after {
	content: attr(data-caption);
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 18px 14px;
	background: linear-gradient(0deg, rgba(7, 10, 28, .85), transparent);
	color: var(--ivory-50);
	font-size: .85rem;
	line-height: 1.4;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.rd-gallery-item[data-caption=""]::after {
	display: none;
}
.rd-gallery-item:hover::after {
	opacity: 1;
	transform: none;
}
.rd-gallery > figcaption {
	grid-column: 1 / -1;
	font-size: .88rem;
	color: var(--ink-500);
}
.rd-figure {
	margin: 2.2em 0 !important;
}
.rd-figure a {
	display: block;
	overflow: hidden;
	cursor: zoom-in;
}
.rd-figure img {
	width: 100%;
	transition: transform 1.2s var(--ease-out);
}
.rd-figure a:hover img {
	transform: scale(1.03);
}
.rd-figure figcaption {
	margin-top: 12px;
	font-size: .88rem;
	color: var(--ink-500);
}

/* ---------- Página de artigo ---------- */
.article {
	padding-top: clamp(40px, 5vw, 72px);
}
.article-grid {
	display: grid;
	grid-template-columns: 120px minmax(0, var(--max-narrow)) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 60px);
}
.article-aside {
	position: relative;
}
.share {
	position: sticky;
	top: calc(var(--header-h) + 40px);
	display: grid;
	justify-items: start;
	gap: 12px;
}
.share-label {
	margin-bottom: 4px;
	font-size: .68rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--ink-400);
}
.share-btn {
	position: relative;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--ivory-300);
	color: var(--navy-700);
	transition: background-color .35s var(--ease-out), color .35s, border-color .35s;
}
.share-btn:hover {
	background: var(--navy-900);
	border-color: var(--navy-900);
	color: var(--gold-400);
}
.share-btn.is-copied::after {
	content: "Link copiado";
	position: absolute;
	left: calc(100% + 10px);
	top: 50%;
	padding: 6px 10px;
	background: var(--navy-900);
	color: var(--ivory-50);
	font-size: .72rem;
	white-space: nowrap;
	transform: translateY(-50%);
}
.article-body {
	min-width: 0;
}
.source-note {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 36px 0 0;
	font-size: .9rem;
	color: var(--ink-500);
}
.source-note a {
	color: var(--navy-600);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.author-box {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 26px;
	margin-top: 64px;
	padding: 32px;
	background: var(--ivory-100);
	border-left: 2px solid var(--gold-500);
}
.author-photo img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	object-position: 30% 40%;
}
.author-box .eyebrow {
	margin-bottom: 8px;
}
.author-name {
	margin: 0 0 8px;
	font-family: var(--font-serif);
	font-size: 1.35rem;
	color: var(--ink-900);
}
.author-box p {
	font-size: .98rem;
	color: var(--ink-500);
}
.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px;
}
.post-nav-link {
	display: grid;
	gap: 8px;
	padding: 24px;
	border: 1px solid var(--ivory-300);
	transition: border-color .4s, background-color .4s;
}
.post-nav-link:hover {
	border-color: var(--navy-600);
	background: var(--white);
}
.post-nav-link span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--gold-700);
}
.post-nav-link b {
	font-family: var(--font-serif);
	font-size: 1.08rem;
	font-weight: 400;
	line-height: 1.35;
	color: var(--ink-900);
}
.post-nav-link.is-next {
	grid-column: 2;
	text-align: right;
	justify-items: end;
}
.related-articles {
	background: var(--ivory-100);
}

/* ---------- Contato ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: clamp(36px, 6vw, 90px);
	align-items: start;
}
.contact-cards {
	display: grid;
	gap: 18px;
}
.contact-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 20px;
	padding: 28px;
	background: var(--white);
	box-shadow: var(--shadow-card);
}
.contact-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--navy-900);
	color: var(--gold-400);
}
.contact-icon .ico {
	width: 24px;
	height: 24px;
}
.contact-card h2 {
	margin-bottom: 8px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--gold-700);
}
.contact-card p {
	margin: 0 0 10px;
	font-family: var(--font-serif);
	font-size: 1.15rem;
	line-height: 1.45;
	color: var(--ink-900);
	overflow-wrap: anywhere;
}
.contact-card p a:hover {
	color: var(--navy-600);
}
.contact-form-wrap {
	padding: clamp(28px, 4vw, 56px);
	background: var(--white);
	box-shadow: var(--shadow-soft);
	border-top: 2px solid var(--gold-500);
}
.form-intro {
	margin: 10px 0 30px;
	font-size: .9rem;
	color: var(--ink-400);
}
.contact-form {
	display: grid;
	gap: 18px;
}
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.field {
	position: relative;
}
.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 26px 16px 10px;
	border: 1px solid var(--ivory-300);
	border-radius: var(--radius);
	background: var(--ivory-50);
	font-size: 1rem;
	line-height: 1.5;
	transition: border-color .3s, box-shadow .3s, background-color .3s;
	-webkit-appearance: none;
	appearance: none;
}
.field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%23a98541' stroke-width='1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}
.field textarea {
	resize: vertical;
	min-height: 160px;
}
.field label {
	position: absolute;
	left: 17px;
	top: 18px;
	font-size: 1rem;
	color: var(--ink-400);
	pointer-events: none;
	transform-origin: left top;
	transition: transform .3s var(--ease-out), color .3s;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field label.is-static {
	transform: translateY(-10px) scale(.72);
	color: var(--gold-700);
	letter-spacing: .06em;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--gold-500);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(197, 161, 90, .15);
}
.field.is-invalid input,
.field.is-invalid textarea {
	border-color: #b3261e;
}
.consent {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	gap: 12px;
	font-size: .9rem;
	line-height: 1.55;
	color: var(--ink-500);
}
.consent input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	accent-color: var(--navy-900);
}
.consent a {
	color: var(--navy-600);
	text-decoration: underline;
}
.consent.is-invalid {
	color: #b3261e;
}
.form-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 24px;
	padding: 16px 18px;
	font-size: .95rem;
	line-height: 1.5;
}
.form-notice .ico {
	margin-top: 3px;
}
.form-notice.is-success {
	background: #eef5ee;
	color: #22543a;
	border-left: 2px solid #2f7a52;
}
.form-notice.is-error {
	background: #fbeeed;
	color: #7d1f1a;
	border-left: 2px solid #b3261e;
}
.contact-form button[type="submit"].is-sending {
	opacity: .7;
	pointer-events: none;
}
.map-band {
	position: relative;
	height: clamp(340px, 42vw, 480px);
	background: var(--navy-900);
}
.map-facade {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
	background:
		radial-gradient(60% 90% at 70% 50%, rgba(48, 51, 123, .6), transparent),
		repeating-linear-gradient(0deg, rgba(251, 249, 245, .04) 0 1px, transparent 1px 44px),
		repeating-linear-gradient(90deg, rgba(251, 249, 245, .04) 0 1px, transparent 1px 44px),
		var(--navy-900);
	color: var(--ivory-100);
}
.map-facade-inner {
	display: grid;
	justify-items: start;
	gap: 16px;
}
.map-note {
	margin: 0;
	font-size: .82rem;
	color: rgba(251, 249, 245, .55);
}
.map-band iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	filter: grayscale(.2) contrast(1.05);
}

/* ---------- Rodapé ---------- */
.site-footer {
	position: relative;
	padding-top: clamp(56px, 6.5vw, 96px);
	background: var(--navy-950);
	color: rgba(251, 249, 245, .66);
	font-size: .95rem;
	overflow: hidden;
	--logo-ink: #fbf9f5;
	--logo-arc: var(--gold-500);
}
.footer-arc {
	position: absolute;
	left: -10%;
	top: 30px;
	width: 70%;
	height: auto;
	aspect-ratio: 553.7 / 108.9;
	color: var(--gold-500);
	opacity: .06;
	pointer-events: none;
}
.footer-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
	gap: clamp(36px, 5vw, 70px);
	padding-bottom: 56px;
}
.brand-footer .brand-logo {
	width: 170px;
}
.footer-tagline {
	margin: 26px 0 30px;
	max-width: 34ch;
}
.footer-title {
	margin-bottom: 22px;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--gold-400);
}
.footer-col address a {
	display: block;
	margin-bottom: 20px;
	line-height: 1.7;
	transition: color .3s;
}
.footer-contacts {
	display: grid;
	gap: 10px;
}
.footer-contacts a,
.footer-menu a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: color .3s;
	overflow-wrap: anywhere;
}
.footer-contacts .ico {
	color: var(--gold-500);
}
.footer-col a:hover {
	color: var(--ivory-50);
}
.footer-menu {
	display: grid;
	gap: 12px;
}
.ibdti-mini img {
	width: 150px;
	margin-bottom: 18px;
	opacity: .92;
	transition: opacity .3s;
}
.ibdti-mini:hover img {
	opacity: 1;
}
.social {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}
.social a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(251, 249, 245, .18);
	color: var(--ivory-100);
	transition: background-color .35s, color .35s, border-color .35s;
}
.social a:hover {
	background: var(--gold-500);
	border-color: var(--gold-500);
	color: var(--navy-950) !important;
}
.social .ico {
	width: 18px;
	height: 18px;
}
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px 30px;
	position: relative;
	padding-block: 26px;
	font-size: .82rem;
	color: rgba(251, 249, 245, .5);
}
.footer-bottom::before {
	content: "";
	position: absolute;
	top: 0;
	left: var(--gutter);
	right: var(--gutter);
	height: 1px;
	background: rgba(251, 249, 245, .1);
}
.footer-bottom p {
	margin: 0;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
}
.footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color .3s;
}
.footer-links a:hover {
	color: var(--gold-300);
}

/* ---------- Janelas: filme e fotos ---------- */
.film-modal,
.lightbox {
	width: 100vw;
	max-width: none;
	height: 100vh;
	height: 100dvh;
	max-height: none;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(7, 10, 28, .94);
	color: var(--ivory-50);
	overflow: hidden;
}
.film-modal::backdrop,
.lightbox::backdrop {
	background: rgba(7, 10, 28, .7);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.film-modal[open],
.lightbox[open] {
	display: grid;
	place-items: center;
	animation: fade-in .5s var(--ease-out);
}
@keyframes fade-in {
	from {
		opacity: 0;
	}
}
.film-frame {
	width: min(92vw, calc((100dvh - 140px) * 16 / 9));
	aspect-ratio: 16 / 9;
	background: #000;
	box-shadow: 0 40px 120px -40px #000;
	animation: zoom-in .7s var(--ease-out);
}
@keyframes zoom-in {
	from {
		transform: scale(.94);
		opacity: 0;
	}
}
.film-frame video {
	width: 100%;
	height: 100%;
}
.film-close,
.lightbox-close {
	position: absolute;
	top: 22px;
	right: 22px;
}
.film-close,
.lightbox-btn {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(251, 249, 245, .3);
	color: var(--ivory-50);
	transition: background-color .3s, color .3s;
}
.film-close:hover,
.lightbox-btn:hover {
	background: var(--gold-500);
	border-color: var(--gold-500);
	color: var(--navy-950);
}
.lightbox-figure {
	display: grid;
	justify-items: center;
	gap: 14px;
	max-width: 92vw;
	touch-action: pan-y;
}
.lightbox-figure img {
	max-width: 92vw;
	max-height: calc(100dvh - 150px);
	width: auto;
	object-fit: contain;
	box-shadow: 0 40px 120px -40px #000;
	transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.lightbox-figure img.is-loading {
	opacity: 0;
	transform: scale(.98);
}
.lightbox-figure figcaption {
	display: flex;
	gap: 18px;
	justify-content: space-between;
	width: 100%;
	max-width: 900px;
	font-size: .9rem;
	color: rgba(251, 249, 245, .78);
}
.lightbox-count {
	flex: none;
	color: var(--gold-400);
	letter-spacing: .12em;
}
.lightbox-prev,
.lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox-prev {
	left: 22px;
}
.lightbox-next {
	right: 22px;
}

/* ---------- Revelação ao rolar ---------- */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
	transition-delay: calc(var(--d, 0) * 90ms);
}
.js [data-reveal="left"] {
	transform: translateX(-40px);
}
.js [data-reveal="right"] {
	transform: translateX(40px);
}
.js [data-reveal].is-in {
	opacity: 1;
	transform: none;
}

/* Parallax suave com animações guiadas pela rolagem (navegadores que suportam). */
@supports (animation-timeline: view()) {
	.cta-media img,
	.page-hero-media img {
		animation: parallax linear both;
		animation-timeline: view();
		animation-range: entry 0% exit 100%;
	}
	@keyframes parallax {
		from {
			transform: translateY(-6%) scale(1.14);
		}
		to {
			transform: translateY(6%) scale(1.14);
		}
	}
}

/* Transições entre páginas (Chrome, Edge e Safari recentes). */
@view-transition {
	navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
	animation-duration: .45s;
	animation-timing-function: var(--ease-out);
}

/* ---------- Responsivo ---------- */
@media (max-width: 1180px) {
	.primary-nav .menu {
		gap: 18px;
	}
	.header-cta span {
		display: none;
	}
	.header-cta {
		width: 44px;
		padding: 0;
	}
	.highlight-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	:root {
		--header-h: 72px;
	}
	.primary-nav,
	.header-cta {
		display: none;
	}
	.nav-toggle {
		display: grid;
	}
	.hero-seal .seal {
		--seal: 150px;
	}
	.hero-frame {
		display: none;
	}
	.hero-shade {
		background:
			linear-gradient(90deg, rgba(7, 10, 28, .85) 0%, rgba(7, 10, 28, .55) 55%, rgba(7, 10, 28, .25) 100%),
			linear-gradient(0deg, rgba(7, 10, 28, .9) 0%, rgba(7, 10, 28, .2) 40%, rgba(7, 10, 28, .1) 100%);
	}
	.about-grid,
	.book-grid,
	.ibdti-grid,
	.bio-grid,
	.contact-grid,
	.articles-home-grid,
	.ctn-grid,
	.ibdti-hero-inner,
	.cta-inner {
		grid-template-columns: minmax(0, 1fr);
	}
	.about-figure {
		max-width: 520px;
	}
	.bio-figure,
	.articles-home-aside {
		position: static;
		max-width: 560px;
	}
	.stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.stat:nth-child(3) {
		border-left: 0;
		padding-left: 0;
	}
	.stats-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.stats-3 .stat:nth-child(3) {
		border-left: 1px solid var(--ivory-300);
		padding-left: 28px;
	}
	.practice-grid,
	.cred-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.feature,
	.feature.is-flipped {
		grid-template-columns: minmax(0, 1fr);
	}
	.feature.is-flipped .feature-media {
		order: 0;
	}
	.article-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.article-aside {
		order: 2;
	}
	.share {
		position: static;
		display: flex;
		align-items: center;
	}
	.share-label {
		margin: 0 8px 0 0;
	}
	.page-hero-seal {
		display: none;
	}
	.ibdti-hero-mark {
		justify-items: start;
	}
	.ibdti-hero-mark img {
		max-width: 320px;
	}
	.book-figure {
		max-width: 640px;
	}
	.award-badge {
		right: 12px;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 1rem;
	}
	.hero {
		min-height: max(640px, 100svh);
	}
	.hero-seal .seal {
		--seal: 104px;
	}
	.hero-seal {
		transform: translateY(-50%);
	}
	.hero-lead {
		margin: 20px 0 30px;
	}
	.hero-actions .btn {
		width: 100%;
	}
	.hero-shade {
		background:
			linear-gradient(0deg, rgba(7, 10, 28, .96) 0%, rgba(7, 10, 28, .78) 45%, rgba(7, 10, 28, .25) 75%, rgba(7, 10, 28, .45) 100%);
	}
	.hero-foot-inner {
		grid-template-columns: auto auto minmax(0, 1fr);
		gap: 12px 16px;
		min-height: 64px;
		padding-block: 12px 16px;
	}
	.film-controls {
		grid-column: 2;
		grid-row: 1;
	}
	.film-progress {
		grid-column: 1 / -1;
		grid-row: 2;
		margin-right: 118px;
	}
	.film-label {
		display: none;
	}
	.video-toggle {
		width: 38px;
		height: 38px;
	}
	.hero .eyebrow {
		gap: 10px;
		font-size: .66rem;
		letter-spacing: .16em;
	}
	.hero .eyebrow::before {
		width: 20px;
	}
	.hero-copy .display-1 {
		font-size: clamp(2.2rem, 10.5vw, 2.8rem);
	}
	.marquee-list li {
		font-size: 1.1rem;
		padding-block: 16px;
	}
	.stats,
	.stats-3 {
		grid-template-columns: minmax(0, 1fr);
	}
	.stat,
	.stats-3 .stat:nth-child(3) {
		border-left: 0;
		border-top: 0;
		padding: 26px 0 22px;
		border-bottom: 1px solid var(--ivory-300);
	}
	.stat:first-child {
		border-top: 1px solid var(--ivory-300);
	}
	.practice-grid,
	.cred-grid,
	.highlight-grid,
	.highlight-grid-3,
	.footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.practice-card a {
		min-height: 0;
	}
	.practice-more {
		opacity: 1;
		transform: none;
	}
	.frame-gold::before {
		inset: 16px -12px -16px 12px;
	}
	.about-figure figcaption,
	.bio-figure figcaption {
		margin-top: 32px;
		padding-left: 0;
	}
	.article-row a {
		grid-template-columns: 38px minmax(0, 1fr);
		padding-block: 22px;
	}
	.article-num {
		font-size: 1.25rem;
	}
	.article-go {
		display: none;
	}
	.field-row {
		grid-template-columns: minmax(0, 1fr);
	}
	.author-box {
		grid-template-columns: minmax(0, 1fr);
		padding: 24px;
	}
	.post-nav {
		grid-template-columns: minmax(0, 1fr);
	}
	.post-nav-link.is-next {
		grid-column: 1;
	}
	.film-card {
		grid-template-columns: minmax(0, 1fr);
	}
	.contact-card {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}
	.rd-gallery-item,
	.rd-gallery-item:nth-child(3n + 1) {
		grid-column: span 12;
	}
	.lightbox-prev,
	.lightbox-next {
		top: auto;
		bottom: 18px;
		transform: none;
	}
	.lightbox-figure img {
		max-height: calc(100dvh - 220px);
	}
	.award-badge {
		width: 112px;
		height: 112px;
		bottom: -22px;
	}
	.award-badge b {
		font-size: 1.5rem;
	}
	.breadcrumbs [aria-current] {
		max-width: 22ch;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.cta-facts {
		padding: 22px;
	}
}

@media (hover: none) {
	.practice-more {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.js [data-reveal],
	.hero-anim {
		opacity: 1;
		transform: none;
	}
	.hero-arc,
	.page-hero-arc {
		clip-path: none;
	}
	.marquee-track {
		animation: none;
	}
}

@media print {
	.site-header,
	.mobile-menu,
	.cta-band,
	.site-footer,
	.share,
	.post-nav,
	.progress,
	.map-band {
		display: none !important;
	}
	.page-hero {
		padding: 0 0 20px;
		background: none;
		color: #000;
	}
	.page-title {
		color: #000;
	}
	body {
		background: #fff;
		color: #000;
	}
}
