:root {
	--paper: #F3F0E8;
	--paper-light: #FBFAF7;
	--ink: #111111;
	--graphite: #242424;
	--muted: #77736D;
	--accent: #C45A3C;
	--line: #D8D3CA;
	--shell: min(92vw, 1480px);
	--reading: min(88vw, 760px);
	--serif: "Newsreader", Georgia, serif;
	--sans: "Manrope", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button,
input { font: inherit; }

.shell {
	width: var(--shell);
	margin-inline: auto;
}

.shell--reading {
	width: var(--reading);
}

.skip-link {
	position: fixed;
	left: 1rem;
	top: -4rem;
	z-index: 9999;
	background: var(--ink);
	color: var(--paper-light);
	padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
	border-bottom: 1px solid transparent;
}

body.admin-bar .site-header { top: 32px; }

.site-header.is-scrolled {
	background: color-mix(in srgb, var(--paper-light) 95%, transparent);
	backdrop-filter: blur(14px);
	border-color: var(--line);
	box-shadow: 0 10px 30px rgba(17,17,17,.035);
}

.header-inner {
	min-height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.wordmark {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	width: auto;
	font-family: var(--sans);
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .16em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.wordmark-logo {
	display: block;
	width: 28px;
	height: 28px;
	max-width: 28px;
	min-width: 28px;
	object-fit: contain;
	flex: 0 0 28px;
	filter: brightness(0) saturate(100%);
}

.wordmark-name {
	display: inline-block;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.menu {
	display: flex;
	align-items: center;
	gap: 1.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu a {
	position: relative;
	font-size: .92rem;
	font-weight: 500;
}

.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -.35rem;
	height: 1px;
	background: currentColor;
	transition: right .25s ease;
}

.menu a:hover::after { right: 0; }

.icon-button,
.menu-toggle,
.search-close {
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.icon-button {
	font-size: 1.35rem;
	padding: .25rem;
}

.menu-toggle {
	display: none;
	width: 38px;
	height: 38px;
	position: relative;
}

.menu-toggle span {
	position: absolute;
	left: 7px;
	right: 7px;
	height: 1px;
	background: var(--ink);
	transition: transform .3s ease, top .3s ease;
}

.menu-toggle span:first-child { top: 14px; }
.menu-toggle span:last-child { top: 22px; }

body.menu-open .menu-toggle span:first-child { top: 18px; transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { top: 18px; transform: rotate(-45deg); }

.mobile-panel {
	position: fixed;
	inset: 0;
	background: var(--paper-light);
	padding: 120px 6vw 8vh;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-12px);
	transition: .3s ease;
	z-index: 90;
}

body.admin-bar .mobile-panel { top: 32px; }

.mobile-panel[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.mobile-nav a {
	font-family: var(--serif);
	font-size: clamp(2.6rem, 10vw, 5rem);
	line-height: 1;
	padding: .22em 0;
	border-bottom: 1px solid var(--line);
}

.search-panel {
	position: fixed;
	inset: 0;
	background: var(--ink);
	color: var(--paper-light);
	z-index: 120;
	display: grid;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity .25s ease;
}

body.admin-bar .search-panel { top: 32px; }

.search-panel[aria-hidden="false"] {
	visibility: visible;
	opacity: 1;
}

.search-panel-inner { position: relative; }

.search-panel h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(2.5rem, 5vw, 5.25rem);
	line-height: 1;
	max-width: 850px;
	margin: .2em 0 .55em;
}

.search-close {
	position: absolute;
	right: 0;
	top: -3rem;
	font-size: 2.4rem;
	color: var(--paper-light);
}

.search-form {
	display: flex;
	align-items: end;
	gap: 1rem;
	max-width: 900px;
}

.search-field {
	flex: 1;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: inherit;
	padding: 1rem 0;
	outline: none;
	font-size: 1.1rem;
	min-width: 220px;
}

.search-form button {
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	padding: .8rem 1.25rem;
	cursor: pointer;
}

.hero {
	min-height: 92vh;
	display: grid;
	align-items: center;
	padding: 132px 0 56px;
	background: var(--paper-light);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	align-items: stretch;
	min-height: 70vh;
}

.hero-copy {
	padding: clamp(3rem, 7vw, 7rem) clamp(2rem, 6vw, 6rem) 3rem 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.eyebrow {
	margin: 0 0 1.6rem;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--accent);
}

.hero h1,
.section-heading h2,
.section-books h2,
.archive-header h1,
.article-header h1,
.page-hero h1,
.page-heading h1,
.lead-story h2,
.product-editorial h1 {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -.035em;
}

.hero h1 {
	font-size: clamp(4.4rem, 8vw, 9.5rem);
	line-height: .83;
	margin: 0;
}

.hero-lead,
.page-hero-lead {
	max-width: 620px;
	margin: 2rem 0 2.2rem;
	font-size: clamp(1.05rem, 1.35vw, 1.35rem);
	color: #34312E;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	width: max-content;
	padding-bottom: .2rem;
	border-bottom: 1px solid var(--ink);
	font-weight: 600;
}

.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero-visual {
	position: relative;
	overflow: hidden;
	min-height: 630px;
	background:
		linear-gradient(140deg, rgba(196,90,60,.12), transparent 35%),
		radial-gradient(circle at 76% 18%, rgba(255,255,255,.12), transparent 16%),
		linear-gradient(125deg, #161616 0%, #2B2926 45%, #111 100%);
}

.hero-visual::before {
	content: "";
	position: absolute;
	inset: 8%;
	border: 1px solid rgba(255,255,255,.14);
}

.hero-visual::after {
	content: "";
	position: absolute;
	width: 58%;
	height: 1px;
	background: rgba(255,255,255,.35);
	right: -8%;
	top: 31%;
	transform: rotate(-24deg);
	transform-origin: right center;
}

.visual-lines {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
	background-size: 100% 13%;
	mask-image: linear-gradient(to right, transparent, black 36%, black);
}

.editorial-stamp {
	position: absolute;
	left: 9%;
	bottom: 12%;
	width: min(70%, 330px);
	aspect-ratio: 1.7 / 1;
	border: 1px solid rgba(255,255,255,.78);
	color: white;
	display: grid;
	place-content: center;
	text-align: center;
	padding: 1.4rem;
}

.editorial-stamp span {
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	font-weight: 600;
	letter-spacing: .28em;
	margin-right: -.28em;
}

.editorial-stamp strong {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	letter-spacing: .14em;
	margin-right: -.14em;
	line-height: 1.15;
}

.editorial-stamp--ink {
	position: static;
	width: min(100%, 360px);
	color: var(--ink);
	border-color: var(--ink);
}

.visual-index {
	position: absolute;
	right: 5%;
	top: 50%;
	color: rgba(255,255,255,.65);
	font-size: .65rem;
	letter-spacing: .18em;
	transform: rotate(90deg) translateX(50%);
	transform-origin: right center;
}

.manifesto-strip {
	background: var(--ink);
	color: var(--paper-light);
	padding: clamp(3rem, 7vw, 6rem) 0;
}

.manifesto-strip p {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1.08;
	max-width: 1100px;
}

.section { padding: clamp(5rem, 10vw, 9rem) 0; }

.section-heading { margin-bottom: clamp(2.5rem, 5vw, 5rem); }

.section-heading h2,
.section-books h2 {
	font-size: clamp(3rem, 6vw, 6.5rem);
	line-height: .92;
	margin: 0;
}

.section-heading--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 3rem;
}

.section-intro {
	max-width: 430px;
	color: var(--muted);
}

.editorial-grid {
	display: grid;
	grid-template-columns: 1.35fr .82fr .82fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: start;
}

.story-card:first-child { grid-row: span 2; }

.story-image {
	display: block;
	overflow: hidden;
	background: #DDD7CD;
	aspect-ratio: 5 / 3.4;
	margin-bottom: 1.3rem;
}

.story-card:first-child .story-image { aspect-ratio: 4 / 3.4; }

.story-image img,
.image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}

.story-card:hover .story-image img { transform: scale(1.025); }

.image-placeholder {
	background:
		linear-gradient(135deg, rgba(196,90,60,.65), transparent 50%),
		linear-gradient(145deg, #2A2927, #BDB6AB);
}
.image-placeholder--dark { background: linear-gradient(150deg, #111, #555); }
.image-placeholder--warm { background: linear-gradient(150deg, #D8C6A9, #8D5A46); }

.story-meta,
.reading-time {
	font-size: .69rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.story-meta { color: var(--accent); margin: .2rem 0 .8rem; }
.story-meta a { color: inherit; }

.story-card h2,
.story-card h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.8rem, 2.5vw, 3rem);
	line-height: 1.04;
	margin: 0 0 .8rem;
}

.story-card p { color: #494541; margin: 0 0 1rem; }
.reading-time { color: var(--muted); }

.section-topics {
	border-top: 1px solid var(--line);
	background: var(--paper);
}

.topics-list { border-top: 1px solid var(--ink); }

.topics-list a {
	display: grid;
	grid-template-columns: 80px 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1.35rem 0;
	border-bottom: 1px solid var(--line);
	font-family: var(--serif);
	font-size: clamp(1.7rem, 3.3vw, 4rem);
	line-height: 1;
	transition: color .25s ease, padding .25s ease;
}

.topics-list a span,
.topics-list a b {
	font-family: var(--sans);
	font-size: .7rem;
	letter-spacing: .1em;
	font-weight: 700;
	color: var(--muted);
}

.topics-list a:hover {
	color: var(--accent);
	padding-left: .5rem;
}

.section-books {
	background: var(--ink);
	color: var(--paper-light);
}

.books-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

.eyebrow--light { color: #E29C84; }
.text-link--light { border-color: var(--paper-light); margin-top: 2rem; }

.book-stage {
	position: relative;
	height: 520px;
	perspective: 1000px;
}

.book {
	position: absolute;
	width: 210px;
	height: 330px;
	display: grid;
	place-items: center;
	font-family: var(--serif);
	font-size: 5rem;
	box-shadow: 0 30px 60px rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.2);
	transition: transform .35s ease;
}

.book--one {
	left: 5%;
	top: 20%;
	background: #E9E1D5;
	color: #191919;
	transform: rotate(-9deg);
}
.book--two {
	left: 35%;
	top: 5%;
	background: var(--accent);
	color: white;
	z-index: 2;
	transform: rotate(3deg);
}
.book--three {
	right: 4%;
	top: 25%;
	background: #2F4A4B;
	color: white;
	transform: rotate(9deg);
}
.book-stage:hover .book--one { transform: rotate(-12deg) translateY(-6px); }
.book-stage:hover .book--two { transform: rotate(1deg) translateY(-12px); }
.book-stage:hover .book--three { transform: rotate(12deg) translateY(-4px); }

.section-library { background: var(--paper-light); }

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

.library-note {
	padding: 2rem 2rem 2rem 0;
	border-right: 1px solid var(--line);
}

.library-note + .library-note { padding-left: 2rem; }

.library-note span {
	font-size: .7rem;
	letter-spacing: .13em;
	color: var(--accent);
	font-weight: 700;
}

.library-note h3 {
	font-family: var(--serif);
	font-size: clamp(1.8rem, 2.6vw, 2.9rem);
	line-height: 1.03;
	font-weight: 500;
	margin: 2rem 0 1rem;
}

.library-note p { color: var(--muted); }

.page-hero {
	padding: clamp(10rem, 18vw, 15rem) 0 clamp(5rem, 9vw, 8rem);
	background: var(--paper-light);
	border-bottom: 1px solid var(--line);
}

.page-hero--dark {
	background: var(--ink);
	color: var(--paper-light);
	border-bottom-color: #2A2A2A;
}

.page-hero--dark .page-hero-lead { color: #BBB4AB; }
.page-hero--compact { padding-bottom: 5rem; }

.page-hero h1 {
	font-size: clamp(4.4rem, 9vw, 10rem);
	line-height: .88;
	margin: 0;
	max-width: 1200px;
}

.page-hero-lead {
	max-width: 680px;
	margin-bottom: 0;
}

.journal-lead { background: var(--paper-light); }

.lead-story {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	gap: clamp(2.5rem, 6vw, 6rem);
	align-items: center;
}

.lead-story-media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #D8D2C8;
}

.lead-story-media img,
.lead-story-media .image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lead-story h2 {
	font-size: clamp(3rem, 5vw, 6rem);
	line-height: .92;
	margin: 0 0 1.25rem;
}

.lead-story-copy > p:not(.story-meta) {
	max-width: 520px;
	color: var(--muted);
}

.journal-latest { background: var(--paper); }

.journal-search .search-form {
	color: var(--ink);
	max-width: 440px;
}

.story-list { border-top: 1px solid var(--ink); }

.story-row {
	display: grid;
	grid-template-columns: 220px 1fr auto;
	gap: 2rem;
	align-items: center;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--line);
}

.story-row-image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.story-row-image img,
.story-row-image .image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-row h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(1.7rem, 2.5vw, 2.8rem);
	line-height: 1;
	margin: 0;
}

.topics-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--ink);
}

.topic-card {
	min-height: 380px;
	padding: 2rem;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	transition: background .25s ease, color .25s ease;
}

.topic-card:nth-child(even) { border-right: 0; }

.topic-card > span {
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--accent);
}

.topic-card h2 {
	font-family: var(--serif);
	font-size: clamp(2.5rem, 4vw, 5rem);
	font-weight: 500;
	line-height: .95;
	margin: auto 0 1rem;
}

.topic-card p {
	max-width: 520px;
	color: var(--muted);
}

.topic-card b {
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .1em;
}

.topic-card:hover {
	background: var(--ink);
	color: var(--paper-light);
}
.topic-card:hover p { color: #BEB7AF; }

.section-books-page { background: var(--paper); }

.book-grid,
.recommendation-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.book-cover,
.recommendation-cover {
	display: block;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.book-cover img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

.book-cover-placeholder {
	width: 100%;
	aspect-ratio: 2 / 3;
	background: linear-gradient(150deg, #151515, #4B3129);
	color: white;
	display: grid;
	place-items: center;
	font-family: var(--serif);
	font-size: 7rem;
}

.book-card h2,
.recommendation-card h2 {
	font-family: var(--serif);
	font-size: clamp(2rem, 3vw, 3.4rem);
	line-height: 1;
	font-weight: 500;
	margin: 0 0 1rem;
}

.book-card > p:not(.eyebrow),
.recommendation-card > p:not(.eyebrow) {
	color: var(--muted);
}

.recommendation-cover img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.recommendation-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	display: block;
	background:
		linear-gradient(145deg, transparent 49.5%, rgba(255,255,255,.22) 50%, transparent 50.5%),
		linear-gradient(135deg, #BEA78D, #4C3B35);
}

.recommendation-placeholder--large { aspect-ratio: 4 / 5; }

.affiliate-note {
	background: #E9E3D9;
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--line);
}

.affiliate-note p {
	margin: 0;
	font-size: .78rem;
	color: #5F5A54;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 5rem;
	align-items: center;
}

.about-intro {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 2.3vw, 2.4rem);
	line-height: 1.2;
}

.about-layout {
	display: grid;
	grid-template-columns: .75fr 1.25fr;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.about-copy h2 {
	font-family: var(--serif);
	font-size: clamp(3rem, 5vw, 5rem);
	font-weight: 500;
	line-height: .95;
	margin: 0 0 2rem;
}

.about-copy > p,
.page-content {
	font-family: var(--serif);
	font-size: clamp(1.15rem, 1.5vw, 1.35rem);
	line-height: 1.7;
}

.empty-editorial {
	border-top: 1px solid var(--ink);
	padding: 2rem 0;
}

.empty-editorial span {
	font-size: .7rem;
	letter-spacing: .14em;
	color: var(--accent);
	font-weight: 700;
}

.empty-editorial p {
	font-family: var(--serif);
	font-size: clamp(1.6rem, 2.5vw, 2.8rem);
	max-width: 820px;
	margin: 1rem 0 0;
}

.empty-editorial--large {
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.empty-editorial--large h2 {
	font-family: var(--serif);
	font-size: clamp(3rem, 5vw, 5rem);
	font-weight: 500;
	line-height: .95;
	max-width: 900px;
	margin: 1rem 0;
}

.product-editorial {
	padding: clamp(10rem, 16vw, 14rem) 0 8rem;
	background: var(--paper-light);
}

.product-editorial-grid {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: start;
}

.product-editorial-media img {
	width: 100%;
	height: auto;
}

.product-editorial h1 {
	font-size: clamp(4rem, 7vw, 8rem);
	line-height: .9;
	margin: 0 0 1.5rem;
}

.product-lead {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.25;
	color: #48423D;
}

.product-content {
	font-family: var(--serif);
	font-size: 1.2rem;
	line-height: 1.7;
	margin-top: 2rem;
}

.product-editorial-copy h2 {
	font-family: var(--serif);
	font-size: 2.4rem;
	font-weight: 500;
	margin-top: 2.4rem;
}

.amazon-button {
	display: inline-block;
	margin-top: 2rem;
	background: var(--ink);
	color: var(--paper-light);
	padding: 1rem 1.35rem;
	font-weight: 600;
}

.affiliate-microcopy {
	font-size: .7rem;
	color: var(--muted);
	margin-top: .7rem;
}

.page-standard {
	padding: 160px 0 8rem;
	min-height: 70vh;
}

.page-heading h1 {
	font-size: clamp(4rem, 8vw, 8rem);
	line-height: .9;
	margin: 0 0 3rem;
}

.site-footer {
	background: #0C0C0C;
	color: #E9E4DC;
	padding: 5rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr;
	gap: 4rem;
}

.editorial-stamp--small {
	position: static;
	width: 210px;
	color: #E9E4DC;
	border-color: #5E5A55;
	aspect-ratio: 1.7 / 1;
}

.footer-note {
	max-width: 340px;
	color: #A7A19A;
	margin-top: 1.5rem;
}

.footer-title {
	font-size: .7rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #8F8982;
}

.site-footer a {
	display: block;
	padding: .25rem 0;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 4rem;
	padding-top: 1.5rem;
	border-top: 1px solid #292929;
	font-size: .72rem;
	color: #77716A;
}

.archive-page {
	padding: 160px 0 8rem;
	min-height: 70vh;
}

.archive-header { margin-bottom: 5rem; }

.archive-header h1 {
	font-size: clamp(4rem, 8vw, 8rem);
	margin: 0;
}

.article {
	padding: 150px 0 7rem;
}

/* Título principal do artigo: forte, mas sem dominar a página */
.article-header h1 {
	font-size: clamp(2.65rem, 4.4vw, 4.85rem);
	line-height: .98;
	margin: 0;
	max-width: 900px;
}

/* Metadados abaixo do título */
.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem 1.6rem;
	margin-top: 1.65rem;
	padding-top: 1.1rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: .78rem;
	line-height: 1.45;
}

/* Imagem destacada do artigo */
.article-hero {
	margin-top: 3.25rem;
}

/* Corpo editorial */
.article-content {
	font-family: var(--serif);
	font-size: clamp(1.12rem, 1.25vw, 1.26rem);
	line-height: 1.78;
	padding-top: 3.5rem;
}

/* Ritmo dos parágrafos */
.article-content p {
	margin: 0 0 1.45em;
}

/* Hierarquia interna dos artigos */
.article-content h1,
.article-content h2,
.article-content h3 {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -.018em;
	line-height: 1.16;
	margin-bottom: .7em;
}

.article-content h1 {
	font-size: 1.58em;
	margin-top: 2.6em;
}

.article-content h2 {
	font-size: 1.25em;
	line-height: 1.2;
	margin-top: 2em;
	margin-bottom: .65em;
}

.article-content h3 {
	font-size: 1.08em;
	line-height: 1.25;
	margin-top: 1.8em;
	margin-bottom: .6em;
}

.article-content h1 + h2,
.article-content h2 + h3 {
	margin-top: 1.15em;
}

.article-content figure {
	margin-top: 2.5rem;
	margin-bottom: 2.8rem;
}

.article-content figure img {
	width: 100%;
	height: auto;
}

.article-content ul,
.article-content ol {
	margin: 0 0 1.6em;
	padding-left: 1.35em;
}

.article-content li + li {
	margin-top: .45em;
}

.article-content blockquote {
	margin: 2.4rem 0;
	padding: .15rem 0 .15rem 1.35rem;
	border-left: 2px solid var(--accent);
	font-size: 1.06em;
	line-height: 1.65;
	color: #393531;
}

.article-content blockquote p:last-child {
	margin-bottom: 0;
}

.article-content a {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 1px;
	text-underline-offset: .16em;
}

@media (max-width: 980px) {
	.desktop-nav { display: none; }
	.menu-toggle { display: block; }

	.hero { min-height: auto; padding-top: 112px; }
	.hero-grid { grid-template-columns: 1fr; min-height: auto; }
	.hero-copy { padding: 4rem 0 3rem; }
	.hero h1 { font-size: clamp(4rem, 16vw, 7rem); }
	.hero-visual { min-height: 68vw; max-height: 620px; }

	.editorial-grid { grid-template-columns: 1fr 1fr; }
	.story-card:first-child { grid-column: 1 / -1; grid-row: auto; }
	.story-card:first-child .story-image { aspect-ratio: 16 / 9; }

	.section-heading--row { display: block; }
	.section-intro { margin-top: 1.5rem; }

	.books-grid,
	.lead-story,
	.about-hero-grid,
	.about-layout,
	.product-editorial-grid { grid-template-columns: 1fr; }

	.book-stage { height: 480px; }

	.library-grid,
	.book-grid,
	.recommendation-grid { grid-template-columns: 1fr 1fr; }

	.footer-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid > div:first-child { grid-column: 1 / -1; }

	.story-row { grid-template-columns: 180px 1fr; }
	.story-row .reading-time { grid-column: 2; }

	.topics-cards { grid-template-columns: 1fr; }
	.topic-card,
	.topic-card:nth-child(even) { border-right: 0; }

	.product-editorial-media { max-width: 560px; }
}

@media (max-width: 782px) {
	body.admin-bar .site-header,
	body.admin-bar .mobile-panel,
	body.admin-bar .search-panel { top: 46px; }
}

@media (max-width: 640px) {
	:root { --shell: 90vw; --reading: 88vw; }

	.header-inner { min-height: 72px; }
	.wordmark {
		font-size: .76rem;
		letter-spacing: .13em;
		gap: .5rem;
	}

	.wordmark-logo {
		width: 24px;
		height: 24px;
		max-width: 24px;
		min-width: 24px;
		flex-basis: 24px;
	}

	.hero-copy { padding-top: 3rem; }
	.hero h1 { font-size: clamp(4rem, 18vw, 6rem); line-height: .86; }
	.hero-lead { font-size: 1rem; }
	.hero-visual { min-height: 100vw; }
	.editorial-stamp { width: 78%; left: 7%; bottom: 9%; }

	.manifesto-strip p { font-size: 2rem; }

	.section { padding: 5rem 0; }
	.section-heading h2,
	.section-books h2 { font-size: 3.2rem; }

	.editorial-grid,
	.library-grid,
	.book-grid,
	.recommendation-grid { grid-template-columns: 1fr; gap: 3rem; }

	.story-card:first-child { grid-column: auto; }
	.story-card h3 { font-size: 2.15rem; }

	.topics-list a {
		grid-template-columns: 40px 1fr auto;
		font-size: 2rem;
	}

	.book-stage { height: 380px; }
	.book { width: 145px; height: 235px; font-size: 3.5rem; }
	.book--one { left: 1%; top: 22%; }
	.book--two { left: 31%; top: 4%; }
	.book--three { right: 1%; top: 26%; }

	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.footer-grid > div:first-child { grid-column: auto; }
	.footer-bottom { display: block; }
	.footer-bottom p + p { margin-top: 1rem; }

	.search-form { display: block; }
	.search-form button { margin-top: 1rem; }

	.page-hero { padding-top: 9rem; }
	.page-hero h1 { font-size: clamp(3.7rem, 16vw, 6rem); }
	.page-hero-lead { font-size: 1rem; }

	.story-row { grid-template-columns: 100px 1fr; gap: 1rem; }
	.story-row h3 { font-size: 1.7rem; }

	.topic-card { min-height: 300px; padding: 1.4rem 0; }
	.topic-card h2 { font-size: 2.8rem; }

	.product-editorial { padding-top: 9rem; }
	.product-editorial h1 { font-size: 4rem; }

	/* Artigos — ajuste mobile */
	.article { padding: 118px 0 5.5rem; }

	.article-header h1 {
		font-size: clamp(2.35rem, 11vw, 3.65rem);
		line-height: 1;
	}

	.article-meta {
		gap: .55rem 1rem;
		margin-top: 1.35rem;
		padding-top: 1rem;
		font-size: .72rem;
	}

	.article-hero { margin-top: 2.4rem; }

	.article-content {
		font-size: 1.06rem;
		line-height: 1.74;
		padding-top: 2.7rem;
	}

	.article-content h1 {
		font-size: 1.52rem;
		margin-top: 2.4em;
	}

	.article-content h2 {
		font-size: 1.3rem;
		line-height: 1.2;
		margin-top: 2em;
		margin-bottom: .65em;
	}

	.article-content h3 {
		font-size: 1.12rem;
		line-height: 1.25;
		margin-top: 1.8em;
		margin-bottom: .6em;
	}

	.article-content figure {
		margin-top: 2rem;
		margin-bottom: 2.25rem;
	}

	.article-content blockquote {
		margin: 2rem 0;
		padding-left: 1rem;
		font-size: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation: none !important;
		transition: none !important;
	}
}

/* Header claro sobre o hero escuro da página Livros */
.site-header--over-dark:not(.is-scrolled) {
    color: var(--paper-light);
}

.site-header--over-dark:not(.is-scrolled) .menu-toggle span {
    background: var(--paper-light);
}

.site-header--over-dark:not(.is-scrolled) .wordmark-logo {
	filter: brightness(0) invert(1);
}


/* =========================================================
   PÁGINA SOBRE — RETRATO AUTORAL + FRASE-MANIFESTO
   ========================================================= */

.page-hero--about {
	padding-top: clamp(9rem, 13vw, 11rem);
}

/* Mantém as duas colunas, mas sobe o texto da direita */
.page-hero--about .about-hero-grid {
	align-items: start;
}

.about-hero-main {
	min-width: 0;
}

/* Retrato */
.about-portrait {
	width: 100%;
	max-width: 560px;
	margin: 0 0 1.8rem;
	overflow: hidden;
	background: #E6E1D8;
}

.about-portrait-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* Frase-manifesto abaixo da foto */
.page-hero--about .about-manifesto {
	max-width: 560px;
	margin: 0 0 2.8rem;
	font-family: var(--serif) !important;
	font-size: clamp(1.65rem, 2.25vw, 2.35rem) !important;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: #2D2A27;
}

/* Respiro antes do nome */
.about-hero-main .eyebrow {
	margin: 0 0 1rem;
}

/* Texto de apresentação da coluna direita */
.page-hero--about .about-intro {
	padding-top: clamp(5rem, 7vw, 7rem);
}

/* Tablet */
@media (max-width: 980px) {
	.page-hero--about {
		padding-top: 8.5rem;
	}

	.page-hero--about .about-hero-grid {
		align-items: start;
	}

	.about-portrait {
		max-width: 620px;
		margin-bottom: 1.8rem;
	}

	.page-hero--about .about-manifesto {
		max-width: 620px;
		margin-bottom: 2.5rem;
		font-size: clamp(1.55rem, 3.3vw, 2rem) !important;
	}

	.page-hero--about .about-intro {
		max-width: 760px;
		margin-top: 0;
		padding-top: 1.5rem;
	}
}

/* Mobile */
@media (max-width: 640px) {
	.page-hero--about {
		padding-top: 7.5rem;
	}

	.about-portrait {
		max-width: none;
		margin-bottom: 1.5rem;
	}

	.page-hero--about .about-manifesto {
		font-size: 1.45rem !important;
		line-height: 1.14;
		margin-bottom: 2.2rem;
	}

	.about-hero-main .eyebrow {
		margin-bottom: .85rem;
	}

	.page-hero--about .about-intro {
		padding-top: .75rem;
	}
}

/* Legendas das imagens dentro dos artigos */
.article-content figcaption,
.article-content .wp-element-caption,
.article-content .wp-block-image figcaption {
	font-family: var(--sans);
	font-size: 0.78rem;
	line-height: 1.45;
	font-weight: 400;
	color: var(--muted);
	margin-top: 0.65rem;
	margin-bottom: 1.8rem;
	letter-spacing: 0;
	text-align: left;
	font-style: normal;
}

@media (max-width: 640px) {
	.article-content figcaption,
	.article-content .wp-element-caption,
	.article-content .wp-block-image figcaption {
		font-size: 0.74rem;
		line-height: 1.45;
	}
}



/* =========================================================
   MOBILE MENU — CORREÇÃO DE SOBREPOSIÇÃO / CONTRASTE
   ========================================================= */

@media (max-width: 980px) {

	body.menu-open {
		overflow: hidden !important;
	}

	/* Remove o backdrop-filter enquanto o menu está aberto.
	   Em navegadores móveis ele pode alterar o comportamento
	   de elementos position: fixed dentro do header. */
	body.menu-open .site-header {
		z-index: 9999 !important;
		background: var(--paper-light) !important;
		color: var(--ink) !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	.mobile-panel {
		position: fixed !important;
		inset: 0 !important;
		width: 100vw !important;
		height: 100dvh !important;
		min-height: 100dvh !important;
		z-index: 9998 !important;

		background: var(--paper-light) !important;
		color: var(--ink) !important;

		padding: 120px 6vw 8vh !important;

		overflow-y: auto !important;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;

		pointer-events: none;
	}

	.mobile-panel[aria-hidden="false"] {
		visibility: visible !important;
		opacity: 1 !important;
		transform: none !important;
		pointer-events: auto;
	}

	.mobile-nav {
		position: relative;
		z-index: 1;
	}

	.mobile-nav a {
		color: var(--ink) !important;
		background: transparent !important;
	}

	/* Garante contraste também na página Livros,
	   cujo header normal é claro sobre fundo escuro. */
	body.menu-open .site-header--over-dark:not(.is-scrolled) {
		color: var(--ink) !important;
	}

	body.menu-open .site-header--over-dark:not(.is-scrolled) .menu-toggle span {
		background: var(--ink) !important;
	}

	body.menu-open .site-header--over-dark:not(.is-scrolled) .wordmark-logo {
		filter: brightness(0) saturate(100%) !important;
	}
}

@media (max-width: 640px) {
	.mobile-panel {
		padding: 104px 6vw 7vh !important;
	}

	.mobile-nav a {
		font-size: clamp(2.35rem, 11.5vw, 4rem) !important;
		line-height: 1.04 !important;
	}
}


/* =========================================================
   MOBILE MENU — FIX ESPECÍFICO PARA HEADER SOBRE FUNDO ESCURO
   Corrige a página Livros sem depender da classe body.menu-open
   ========================================================= */

@media (max-width: 980px) {

	.site-header:has(.mobile-panel[aria-hidden="false"]) {
		background: var(--paper-light) !important;
		color: var(--ink) !important;
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	.site-header .mobile-panel {
		background: var(--paper-light) !important;
		color: var(--ink) !important;
	}

	.site-header .mobile-nav,
	.site-header .mobile-nav a {
		color: var(--ink) !important;
	}

	.site-header--over-dark .mobile-panel,
	.site-header--over-dark .mobile-nav,
	.site-header--over-dark .mobile-nav a {
		color: var(--ink) !important;
	}

	.site-header--over-dark .mobile-panel {
		background: var(--paper-light) !important;
	}

	.site-header:has(.mobile-panel[aria-hidden="false"]) .menu-toggle span {
		background: var(--ink) !important;
	}

	.site-header:has(.mobile-panel[aria-hidden="false"]) .wordmark-logo {
		filter: brightness(0) saturate(100%) !important;
	}

	.site-header:has(.mobile-panel[aria-hidden="false"]) .wordmark-name {
		color: var(--ink) !important;
	}
}

/* =========================================================
   SEARCH RESULTS — LUMEN ANCESTRAL
========================================================= */

.search-results-header {
	max-width: 980px;
}

.search-results-title {
	font-size: clamp(2.8rem, 5vw, 5.2rem);
	line-height: 1;
	max-width: 950px;
	margin-bottom: 1.5rem;
}

.search-results-intro {
	max-width: 680px;
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--muted);
}

.search-no-results {
	max-width: 760px;
	padding: 2rem 0 7rem;
}

.search-no-results h2 {
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 500;
	line-height: 1.05;
	margin: .4em 0;
}

.search-no-results > p:not(.eyebrow) {
	font-family: var(--sans);
	color: var(--muted);
	margin-bottom: 2rem;
}

@media (max-width: 640px) {

	.search-results-title {
		font-size: 2.65rem;
		line-height: 1.02;
	}

	.search-results-intro {
		font-size: .95rem;
	}
}

/* =========================================================
   COMMENTS — LUMEN ANCESTRAL
========================================================= */

.comments-area {
	padding-top: 5rem;
	padding-bottom: 7rem;
	border-top: 1px solid var(--line);
}


/* Cabeçalho */

.comment-form-heading {
	margin-bottom: 2.5rem;
}

.comment-form-heading .eyebrow,
.comments-header .eyebrow {
	margin-bottom: 1rem;
}

.comment-reply-title,
.comments-title {
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4vw, 3.7rem);
	font-weight: 500;
	line-height: 1;
	margin: 0 0 1rem;
	color: var(--ink);
}

.comment-intro {
	max-width: 640px;
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--muted);
	margin: 0;
}

.comment-notes {
	font-family: var(--sans);
	font-size: .88rem;
	line-height: 1.6;
	color: var(--muted);
	margin-bottom: 2.5rem;
}


/* Formulário */

.comment-form {
	max-width: 760px;
}

.comment-form p {
	margin: 0 0 1.4rem;
}

.comment-form label {
	display: block;
	font-family: var(--sans);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: .55rem;
	color: var(--ink);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--line);
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	font-family: var(--sans);
	font-size: 1rem;
	line-height: 1.6;
	padding: 1rem 1.1rem;
	transition:
		border-color .2s ease,
		background .2s ease;
}

.comment-form textarea {
	min-height: 190px;
	resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--ink);
	background: var(--paper-light);
}


/* Consentimento */

.comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: .65rem;
	margin-top: .5rem !important;
}

.comment-form-cookies-consent input {
	margin-top: .25rem;
}

.comment-form-cookies-consent label {
	font-size: .8rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: none;
	color: var(--muted);
	margin: 0;
}


/* Botão */

.comment-form .form-submit {
	margin-top: 2rem;
}

.comment-submit,
.comment-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: .9rem 1.5rem;
	border: 1px solid var(--ink);
	border-radius: 0;
	background: var(--ink);
	color: var(--paper-light);
	font-family: var(--sans);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background .2s ease,
		color .2s ease;
}

.comment-submit:hover,
.comment-form input[type="submit"]:hover {
	background: transparent;
	color: var(--ink);
}


/* Comentários publicados */

.comments-header {
	margin-bottom: 2.5rem;
}

.comments-list {
	margin-bottom: 5rem;
}

.comment {
	padding: 2rem 0;
	border-top: 1px solid var(--line);
}

.comment:last-child {
	border-bottom: 1px solid var(--line);
}

.comment .comment-author {
	font-family: var(--sans);
	font-weight: 600;
	margin-bottom: .4rem;
}

.comment .comment-meta {
	font-family: var(--sans);
	font-size: .78rem;
	color: var(--muted);
	margin-bottom: 1rem;
}

.comment .comment-content {
	font-family: var(--serif);
	font-size: 1.08rem;
	line-height: 1.75;
}

.comment .reply a {
	display: inline-block;
	margin-top: 1rem;
	font-family: var(--sans);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ink);
	border-bottom: 1px solid currentColor;
}

.comment .children {
	margin-left: 2rem;
}


/* Comentários encerrados */

.comments-closed {
	font-family: var(--sans);
	font-size: .9rem;
	color: var(--muted);
}


/* Mobile */

@media (max-width: 640px) {

	.comments-area {
		padding-top: 3.5rem;
		padding-bottom: 5rem;
	}

	.comment-reply-title,
	.comments-title {
		font-size: 2.35rem;
	}

	.comment-form textarea {
		min-height: 160px;
	}

	.comment .children {
		margin-left: 1rem;
	}

	.comment-submit,
	.comment-form input[type="submit"] {
		width: 100%;
	}

}

/* =========================================================
   SOCIAL LINKS — ARTIGOS
========================================================= */

.article-social {
	padding: 4.5rem 0 3.25rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.article-social .eyebrow {
	margin-bottom: 1rem;
}

.article-social-header {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 3rem;
	align-items: end;
	margin-bottom: 2.5rem;
}

.article-social-header h2 {
	font-family: var(--serif);
	font-size: clamp(2.2rem, 4vw, 3.7rem);
	font-weight: 500;
	line-height: 1;
	margin: 0;
}

.article-social-header p {
	max-width: 420px;
	margin: 0;
	color: var(--muted);
}

.article-social-links {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid var(--ink);
}

.article-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.2rem;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	font-family: var(--sans);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition:
		background .2s ease,
		color .2s ease;
}

.article-social-links a:hover {
	background: var(--ink);
	color: var(--paper-light);
}

.article-social-links a span {
	font-size: .95rem;
}

@media (max-width: 640px) {

	.article-social {
		padding: 3.5rem 0;
	}

	.article-social-header {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-bottom: 2rem;
	}

	.article-social-header h2 {
		font-size: 2.35rem;
	}

	.article-social-links {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.article-social-links a {
		width: 100%;
	}

}

/* =========================================================
   FOOTER — REDES SOCIAIS
========================================================= */

.footer-grid {
	grid-template-columns: 1.7fr 1fr 1fr 1fr;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
}

.footer-social a span {
	font-size: .8rem;
	color: #8F8982;
	transition: transform .2s ease;
}

.footer-social a:hover span {
	transform: translate(2px, -2px);
}


/* Tablet */

@media (max-width: 980px) {

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-grid > div:first-child {
		grid-column: 1 / -1;
	}

}


/* Mobile */

@media (max-width: 640px) {

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid > div:first-child {
		grid-column: auto;
	}

}

/* =========================================================
   MOTION SYSTEM — LUMEN ANCESTRAL
========================================================= */

.has-motion .motion-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity .8s cubic-bezier(.22, 1, .36, 1),
		transform .8s cubic-bezier(.22, 1, .36, 1);
	transition-delay: var(--motion-delay, 0ms);
	will-change: opacity, transform;
}

.has-motion .motion-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}


/* =========================================================
   MICROINTERAÇÕES — CARDS
========================================================= */

.story-card,
.topic-card,
.library-card,
.recommendation-card {
	transition:
		transform .35s cubic-bezier(.22, 1, .36, 1),
		box-shadow .35s ease;
}

@media (hover: hover) {

	.story-card:hover,
	.topic-card:hover,
	.library-card:hover,
	.recommendation-card:hover {
		transform: translateY(-6px);
	}

}


/* =========================================================
   IMAGENS DOS CARDS
========================================================= */

.story-image,
.library-card img,
.recommendation-card img {
	overflow: hidden;
}

.story-image img,
.library-card img,
.recommendation-card img {
	transition:
		transform .7s cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) {

	.story-card:hover .story-image img,
	.library-card:hover img,
	.recommendation-card:hover img {
		transform: scale(1.025);
	}

}


/* =========================================================
   LINKS EDITORIAIS
========================================================= */

.article-social-links a,
.site-footer a {
	transition:
		opacity .25s ease,
		transform .25s ease;
}

@media (hover: hover) {

	.site-footer a:hover {
		transform: translateX(3px);
	}

}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto !important;
	}

	.motion-reveal,
	.story-card,
	.topic-card,
	.library-card,
	.recommendation-card,
	.story-image img,
	.library-card img,
	.recommendation-card img,
	.site-footer a {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}

}

/* =========================================================
   LUMEN ANCESTRAL — HERO MOTION / SEGUNDA CAMADA
========================================================= */

/* Mantém cada linha do título independente */
.hero-title-line {
	display: block;
}

/* Parallax suave do bloco de texto */
.hero-copy--motion {
	transform: translate3d(
		0,
		var(--hero-copy-shift, 0px),
		0
	);
	will-change: transform;
}


/* =========================================================
   ESTADO INICIAL DO HERO
========================================================= */

.has-motion .hero-eyebrow.hero-motion-item {
	opacity: 0;
	transform: translate3d(0, 16px, 0);
}

.has-motion .hero-title-line.hero-motion-item {
	opacity: 0;
	transform: translate3d(0, 42px, 0);
}

.has-motion .hero-lead--motion.hero-motion-item {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
}

.has-motion .hero-link--motion.hero-motion-item {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
}


/* =========================================================
   COMPOSIÇÃO VISUAL — ESTADO INICIAL
========================================================= */

.has-motion .hero-visual--motion.hero-motion-item {
	opacity: 0;

	transform:
		translate3d(
			28px,
			calc(
				18px +
				var(--hero-visual-shift, 0px)
			),
			0
		)
		scale(.985);

	transition:
		opacity 1.05s cubic-bezier(.22, 1, .36, 1),
		transform 1.15s cubic-bezier(.22, 1, .36, 1);

	will-change:
		opacity,
		transform;
}


.has-motion .hero-visual-lines.hero-motion-item {
	opacity: 0;

	transform:
		translate3d(
			0,
			calc(
				24px +
				var(--hero-lines-shift, 0px)
			),
			0
		);

	transition:
		opacity 1.2s ease .42s,
		transform 1.3s cubic-bezier(.22, 1, .36, 1) .42s;

	will-change:
		opacity,
		transform;
}


.has-motion .hero-editorial-stamp.hero-motion-item {
	opacity: 0;

	transform:
		translate3d(
			0,
			calc(
				38px +
				var(--hero-stamp-shift, 0px)
			),
			0
		)
		scale(.97);

	transition:
		opacity 1s ease .5s,
		transform 1.2s cubic-bezier(.22, 1, .36, 1) .5s;

	will-change:
		opacity,
		transform;
}


.has-motion .hero-visual-index.hero-motion-item {
	opacity: 0;
	transform: translate3d(0, 14px, 0);

	transition:
		opacity .8s ease .8s,
		transform .9s cubic-bezier(.22, 1, .36, 1) .8s;
}


/* =========================================================
   HERO ATIVO — ENTRADA EM SEQUÊNCIA
========================================================= */

.has-motion
.hero-motion-active
.hero-eyebrow.hero-motion-item {

	opacity: 1;
	transform: translate3d(0, 0, 0);

	transition:
		opacity .65s ease .1s,
		transform .8s cubic-bezier(.22, 1, .36, 1) .1s;
}


.has-motion
.hero-motion-active
.hero-title-line--one.hero-motion-item {

	opacity: 1;
	transform: translate3d(0, 0, 0);

	transition:
		opacity .75s ease .22s,
		transform .9s cubic-bezier(.22, 1, .36, 1) .22s;
}


.has-motion
.hero-motion-active
.hero-title-line--two.hero-motion-item {

	opacity: 1;
	transform: translate3d(0, 0, 0);

	transition:
		opacity .75s ease .34s,
		transform .9s cubic-bezier(.22, 1, .36, 1) .34s;
}


.has-motion
.hero-motion-active
.hero-lead--motion.hero-motion-item {

	opacity: 1;
	transform: translate3d(0, 0, 0);

	transition:
		opacity .75s ease .48s,
		transform .9s cubic-bezier(.22, 1, .36, 1) .48s;
}


.has-motion
.hero-motion-active
.hero-link--motion.hero-motion-item {

	opacity: 1;
	transform: translate3d(0, 0, 0);

	transition:
		opacity .7s ease .62s,
		transform .85s cubic-bezier(.22, 1, .36, 1) .62s;
}


/* =========================================================
   COMPOSIÇÃO VISUAL — ESTADO ATIVO
========================================================= */

.has-motion
.hero-motion-active
.hero-visual--motion.hero-motion-item {

	opacity: 1;

	transform:
		translate3d(
			0,
			var(--hero-visual-shift, 0px),
			0
		)
		scale(1);
}


.has-motion
.hero-motion-active
.hero-visual-lines.hero-motion-item {

	opacity: 1;

	transform:
		translate3d(
			0,
			var(--hero-lines-shift, 0px),
			0
		);
}


.has-motion
.hero-motion-active
.hero-editorial-stamp.hero-motion-item {

	opacity: 1;

	transform:
		translate3d(
			0,
			var(--hero-stamp-shift, 0px),
			0
		)
		scale(1);
}


.has-motion
.hero-motion-active
.hero-visual-index.hero-motion-item {

	opacity: 1;
	transform: translate3d(0, 0, 0);
}


/* =========================================================
   CTA — MICROINTERAÇÃO
========================================================= */

.hero-link--motion span {
	display: inline-block;

	transition:
		transform .3s cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) {

	.hero-link--motion:hover span {
		transform: translateX(6px);
	}

}


/* =========================================================
   SEÇÃO DE TEMAS — MICROINTERAÇÃO
========================================================= */

.topics-list a {
	transition:
		transform .3s cubic-bezier(.22, 1, .36, 1),
		opacity .3s ease;
}

.topics-list a b {
	display: inline-block;

	transition:
		transform .3s cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) {

	.topics-list a:hover {
		transform: translateX(6px);
	}

	.topics-list a:hover b {
		transform: translate(4px, -4px);
	}

}


/* =========================================================
   LIVROS — MOVIMENTO SUTIL
========================================================= */

.book {
	transition:
		transform .5s cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) {

	.book-stage:hover .book--one {
		transform: translate3d(-7px, -5px, 0)
			rotate(-2deg);
	}

	.book-stage:hover .book--two {
		transform: translate3d(0, -10px, 0);
	}

	.book-stage:hover .book--three {
		transform: translate3d(7px, -5px, 0)
			rotate(2deg);
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 980px) {

	.hero-copy--motion {
		transform: none;
	}

	.has-motion
	.hero-motion-active
	.hero-visual--motion.hero-motion-item {

		transform:
			translate3d(0, 0, 0)
			scale(1);
	}

	.has-motion
	.hero-motion-active
	.hero-visual-lines.hero-motion-item,

	.has-motion
	.hero-motion-active
	.hero-editorial-stamp.hero-motion-item {

		transform: translate3d(0, 0, 0);
	}

}


/* =========================================================
   ACESSIBILIDADE — REDUZIR MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.hero-copy--motion,
	.hero-motion-item,
	.hero-title-line,
	.hero-visual--motion,
	.hero-visual-lines,
	.hero-editorial-stamp,
	.hero-visual-index,
	.topics-list a,
	.topics-list a b,
	.book {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		animation: none !important;
	}

}