/* ==========================================================================
   Kaneoya 2 — estilos
   1 Tokens · 2 Base · 3 Layout · 4 Componentes · 5 Header · 6 Footer
   7 Home · 8 Blog · 9 Artigo · 10 Conteúdo · 11 Padrões de bloco · 12 Movimento
   ========================================================================== */

/* 1. Tokens ------------------------------------------------------------- */
:root {
	--paper:    var(--wp--preset--color--paper, #F1F1EE);
	--surface:  var(--wp--preset--color--surface, #FFFFFF);
	--ink:      var(--wp--preset--color--ink, #1A1A1B);
	--graphite: var(--wp--preset--color--graphite, #4A4A4B);
	--muted:    var(--wp--preset--color--muted, #6B6B6E);
	--line:     var(--wp--preset--color--line, #D5D5D0);

	--font: var(--wp--preset--font-family--archivo, Archivo, 'Helvetica Neue', Arial, sans-serif);

	--wrap: 1320px;
	--text: 720px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--header-h: 76px;
	--indent: clamp(2.5rem, 11vw, 11rem);
	--section: clamp(4.5rem, 10vw, 9rem);
	--ease: cubic-bezier(.65, 0, .35, 1);
	color-scheme: light;
}
:root[data-theme="dark"] {
	--wp--preset--color--paper: #121213;
	--wp--preset--color--surface: #1B1B1D;
	--wp--preset--color--ink: #EDEDEA;
	--wp--preset--color--graphite: #BDBDB8;
	--wp--preset--color--muted: #9A9A9C;
	--wp--preset--color--line: #2E2E31;
	color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
	:root[data-theme="auto"] {
		--wp--preset--color--paper: #121213;
		--wp--preset--color--surface: #1B1B1D;
		--wp--preset--color--ink: #EDEDEA;
		--wp--preset--color--graphite: #BDBDB8;
		--wp--preset--color--muted: #9A9A9C;
		--wp--preset--color--line: #2E2E31;
		color-scheme: dark;
	}
}

/* 2. Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; }
img { display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.1; margin: 0 0 .5em; text-wrap: balance; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
::selection { background: var(--ink); color: var(--paper); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link { position: absolute; left: 1rem; top: -100px; z-index: 300; padding: .75rem 1rem; background: var(--ink); color: var(--paper); }
.skip-link:focus { top: 1rem; }

/* 3. Layout ------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: calc(var(--wrap) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--text { max-width: calc(var(--text) + var(--gutter) * 2); }

/* Linhas verticais da grade (fundo fixo) */
.grid-lines { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.grid-lines .container { display: grid; grid-template-columns: repeat(4, 1fr); height: 100%; }
.grid-lines span { border-left: 1px solid var(--line); opacity: .55; }
.grid-lines span:last-child { border-right: 1px solid var(--line); }
@media (max-width: 700px) {
	.grid-lines .container { grid-template-columns: repeat(2, 1fr); }
	.grid-lines span:nth-child(n+3) { display: none; }
	.grid-lines span:nth-child(2) { border-right: 1px solid var(--line); }
}
.site-main, .site-footer { position: relative; z-index: 1; }

.section { padding-block: var(--section); border-top: 1px solid var(--line); }

.two-col {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 2.5rem clamp(2rem, 5vw, 5rem);
	align-items: start;
}
.two-col--head { align-items: end; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem 2rem;
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head__count {
	margin: 0;
	font-size: clamp(1.4rem, 3vw, 2.4rem);
	font-weight: 500;
	color: var(--muted);
}
.section-more { margin: clamp(2.5rem, 5vw, 4rem) 0 0; }

/* 4. Componentes -------------------------------------------------------- */

/* Título em duas linhas, a segunda deslocada */
.split-title {
	margin: 0;
	font-size: clamp(2.6rem, 7.6vw, 7rem);
	font-weight: 700;
	font-stretch: 112%;
	line-height: .9;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	text-wrap: initial;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}
.two-col .split-title { font-size: clamp(2.2rem, 5.3vw, 5.6rem); }
.split__line { display: block; }
.split__line + .split__line { padding-left: var(--indent); }

/* Texto rolante (hover) */
.roll { display: inline-block; height: 1.2em; line-height: 1.2; overflow: hidden; vertical-align: top; }
.roll__track { display: flex; flex-direction: column; transition: transform .5s var(--ease); }
.roll__line { display: block; white-space: nowrap; }
a:hover .roll__track,
a:focus-visible .roll__track,
button:hover .roll__track { transform: translateY(-50%); }

/* Botões */
.btn,
.wp-block-button__link,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .95rem 1.6rem;
	border: 1px solid var(--ink);
	border-radius: 999px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .3s, color .3s;
}
.btn:hover,
.wp-block-button__link:hover,
.wp-element-button:hover { background: transparent; color: var(--ink); }
.btn--outline,
.is-style-outline > .wp-block-button__link { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover,
.is-style-outline > .wp-block-button__link:hover { background: var(--ink); color: var(--paper); }
.btn--small { padding: .7rem 1.2rem; font-size: .76rem; }

/* Frase de destaque com o círculo do logo */
.lead {
	margin: 0 0 1.25rem;
	font-size: clamp(1.2rem, 1.9vw, 1.55rem);
	font-weight: 500;
	line-height: 1.38;
	letter-spacing: -0.01em;
}
.lead__mark {
	display: inline-block;
	width: .55em;
	height: .55em;
	margin-right: .6em;
	border-radius: 50%;
	background: var(--ink);
	vertical-align: .06em;
}
.body-text { color: var(--muted); max-width: 52ch; margin-bottom: 2rem; }

/* Imagens alternando dentro do texto */
.slider {
	position: relative;
	display: inline-block;
	width: 1.9em;
	height: .74em;
	margin-right: .18em;
	overflow: hidden;
	border-radius: 999px;
	vertical-align: .02em;
	background: var(--line);
}
.slider img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity .9s ease;
}
.slider img.is-active { opacity: 1; }

/* Busca */
.search-form { display: flex; align-items: center; gap: .5rem; width: 100%; max-width: 340px; border-bottom: 1px solid var(--ink); }
.search-form__input {
	flex: 1;
	min-width: 0;
	padding: .6rem 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: .95rem;
}
.search-form__input:focus { outline: none; }
.search-form:focus-within { outline: 2px solid var(--ink); outline-offset: 4px; }
.search-form__btn {
	padding: .4rem 0;
	border: 0;
	background: none;
	color: var(--ink);
	font: inherit;
	font-size: .76rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
}

/* Acordeão */
.accordion { border-bottom: 1px solid var(--line); }
.accordion__item { border-top: 1px solid var(--line); }
.accordion__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: clamp(1.2rem, 2.4vw, 1.75rem);
	cursor: pointer;
	list-style: none;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item h3 {
	margin: 0;
	font-size: clamp(1.25rem, 2.3vw, 1.9rem);
	font-weight: 600;
	font-stretch: 105%;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}
.accordion__icon { position: relative; flex: none; width: 1.1rem; height: 1.1rem; }
.accordion__icon::before,
.accordion__icon::after { content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.accordion__icon::after { transform: rotate(90deg); }
details[open] > summary .accordion__icon::after { transform: rotate(0deg); }
.accordion__item p { max-width: 56ch; margin: 0; padding-bottom: 1.75rem; color: var(--muted); }

/* 5. Header ------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--paper) 90%, transparent);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; color: var(--ink); line-height: 0; }
.brand svg { width: auto; height: 20px; }
.brand__img { width: auto; max-height: 28px; }
:root[data-theme="dark"] .brand__img { filter: invert(1); }
@media (prefers-color-scheme: dark) { :root[data-theme="auto"] .brand__img { filter: invert(1); } }

.site-nav .menu { display: flex; gap: clamp(1.25rem, 2.5vw, 2.5rem); list-style: none; margin: 0; padding: 0; }
.site-nav .menu a {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
}
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a,
.site-nav .current_page_parent > a { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: .5em; }
.site-nav__social { display: none; }

.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: .75rem; }

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--ink);
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}
.menu-toggle__icon { display: grid; gap: 5px; width: 16px; margin: auto; }
.menu-toggle__icon span { display: block; height: 1.5px; background: currentColor; transition: transform .3s var(--ease); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

@media (max-width: 900px) {
	.site-header__inner { grid-template-columns: 1fr auto; }
	.menu-toggle { display: grid; }
	.site-header__cta { display: none; }
	.site-nav {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 2rem var(--gutter) 2.5rem;
		background: var(--paper);
		opacity: 0;
		visibility: hidden;
		transition: opacity .3s, visibility .3s;
	}
	.admin-bar .site-nav { top: calc(var(--header-h) + 46px); }
	.site-nav.is-open { opacity: 1; visibility: visible; }
	.site-nav .menu { flex-direction: column; gap: 0; }
	.site-nav .menu a {
		display: block;
		padding-block: .6rem;
		font-size: clamp(2.4rem, 12vw, 4rem);
		font-weight: 700;
		font-stretch: 112%;
		letter-spacing: -0.02em;
		line-height: 1;
		border-bottom: 1px solid var(--line);
	}
	.site-nav .menu .roll { height: 1em; line-height: 1; }
	.site-nav__social { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; list-style: none; margin: 0; padding: 0; font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
	.site-nav__social a { text-decoration: none; }
	body.nav-open { overflow: hidden; }
}

/* 6. Footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); }
.say { padding-block: clamp(5rem, 12vw, 10rem); text-align: center; }
.say__kicker { margin: 0 0 1.5rem; font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.say__title {
	margin: 0;
	font-size: clamp(3.6rem, 15vw, 14rem);
	font-weight: 700;
	font-stretch: 112%;
	line-height: .86;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}
.say__title .slider { width: 1.6em; height: .7em; margin-inline: .08em; }
.say__email {
	display: inline-block;
	margin-top: clamp(2rem, 4vw, 3rem);
	font-size: clamp(1.2rem, 3vw, 2.2rem);
	font-weight: 500;
	text-decoration: none;
	border-bottom: 1.5px solid currentColor;
}
.say__email .roll { height: 1.25em; line-height: 1.25; }

.site-footer__bottom {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.25rem 2.5rem;
	padding-block: 2rem 2.5rem;
	border-top: 1px solid var(--line);
}
.brand--footer svg { height: 16px; }
.footer-menu { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; list-style: none; margin: 0; padding: 0; }
.footer-menu a { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; }
.site-footer__copy { grid-column: 1 / -1; margin: 0; font-size: .82rem; color: var(--muted); }
@media (max-width: 760px) { .site-footer__bottom { grid-template-columns: 1fr; } }

/* 7. Home --------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 6vw, 5rem); }
.hero__title {
	margin: 0;
	font-size: clamp(2.5rem, 10.4vw, 10.5rem);
	font-weight: 700;
	line-height: .88;
	letter-spacing: -0.035em;
	text-transform: uppercase;
	text-wrap: initial;
}
.hero__line { display: block; opacity: 0; animation: k-up 1s var(--ease) forwards; }
.hero__line--2 { padding-left: 16%; animation-delay: .12s; }
.hero__line--3 { text-align: right; animation-delay: .24s; }
.hero__line--4 { animation-delay: .36s; }

.hero__foot {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: end;
	gap: 2rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}
.hero__scroll {
	margin: 0;
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: var(--muted);
}
.hero__meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem 2rem; margin: 0; }
.hero__meta dt { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .35rem; }
.hero__meta dd { margin: 0; font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 600; line-height: 1.35; }
@media (max-width: 760px) {
	.hero__foot { grid-template-columns: 1fr; }
	.hero__scroll { display: none; }
	.hero__meta { grid-template-columns: 1fr; }
	.hero__line--2 { padding-left: 8%; }
}

.two-col__body { max-width: 560px; justify-self: end; }
@media (max-width: 860px) { .two-col__body { justify-self: start; } }

/* Cards de artigos (formato "Selected Work") */
.work-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 3rem);
}
@media (min-width: 861px) { .work-card:nth-child(even) { margin-top: clamp(4rem, 9vw, 9rem); } }
@media (max-width: 860px) { .work-grid { grid-template-columns: 1fr; } }

.work-card__media { display: block; overflow: hidden; background: var(--surface); }
.work-card__media img,
.work-card__placeholder { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .9s var(--ease); }
.work-card__media:hover img,
.work-card:focus-within img { transform: scale(1.045); }
.work-card__info {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: .5rem 1.25rem;
	padding-top: 1.25rem;
}
.work-card__year { margin: 0; padding-top: .25rem; font-size: .85rem; font-weight: 600; color: var(--muted); }
.work-card__title { margin: 0; font-size: clamp(1.25rem, 2.1vw, 1.7rem); font-weight: 650; line-height: 1.15; letter-spacing: -0.015em; }
.work-card__title a { text-decoration: none; }
.work-card__title a:hover { text-decoration: underline; }
.work-card__meta { grid-column: 2; display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; margin: .35rem 0 0; font-size: .88rem; }
.work-card__meta div { display: flex; gap: .4rem; }
.work-card__meta dt { color: var(--muted); }
.work-card__meta dd { margin: 0; font-weight: 600; }

/* 8. Blog ---------------------------------------------------------------- */
.page-head { padding-top: clamp(3.5rem, 8vw, 7rem); }
.page-head .lead { max-width: 560px; justify-self: end; margin: 0; }
@media (max-width: 860px) { .page-head .lead { justify-self: start; } }
.page-head--404 { padding-bottom: var(--section); }
.page-head--404 .search-form { margin-top: 2rem; }

.blog-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-block: 1.25rem;
	border-top: 1px solid var(--line);
}
.filter { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; list-style: none; margin: 0; padding: 0; }
.filter a {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--muted);
}
.filter a:hover, .filter a.is-active { color: var(--ink); }
.filter a.is-active { text-decoration: underline; text-underline-offset: .45em; text-decoration-thickness: 1.5px; }
.filter sup { font-size: .7em; }

.section--list { padding-top: 0; border-top: 0; }
.post-list { border-bottom: 1px solid var(--line); }
.post-row__link {
	display: grid;
	grid-template-columns: 7rem minmax(0, 1fr) 5rem 9rem;
	align-items: baseline;
	gap: 1rem 2rem;
	padding-block: clamp(1.3rem, 2.6vw, 2rem);
	border-top: 1px solid var(--line);
	text-decoration: none;
}
.post-row__date, .post-row__time, .post-row__cat { font-size: .82rem; font-weight: 600; color: var(--muted); }
.post-row__cat { text-align: right; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; }
.post-row__title {
	font-size: clamp(1.2rem, 2.3vw, 1.9rem);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.015em;
	transition: transform .5s var(--ease);
}
.post-row__link:hover .post-row__title { transform: translateX(.6rem); }
@media (max-width: 760px) {
	.post-row__link { grid-template-columns: auto auto 1fr; gap: .4rem 1rem; }
	.post-row__title { grid-column: 1 / -1; grid-row: 2; }
	.post-row__cat { text-align: right; }
}

/* Miniatura que acompanha o cursor na lista */
.row-preview {
	position: fixed;
	top: 0; left: 0;
	z-index: 90;
	width: 260px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	pointer-events: none;
	opacity: 0;
	transform: translate(-50%, -50%) scale(.9);
	transition: opacity .25s, transform .25s;
}
.row-preview.is-visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (hover: none), (max-width: 900px) { .row-preview { display: none; } }

.navigation.pagination { margin-top: clamp(2.5rem, 5vw, 4rem); }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.9rem;
	height: 2.9rem;
	padding-inline: 1rem;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-decoration: none;
}
.page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.page-numbers.dots { border-color: transparent; }
a.page-numbers:hover { border-color: var(--ink); }

.empty { padding-block: 2rem 1rem; max-width: 640px; }

/* 9. Artigo -------------------------------------------------------------- */
.read-progress { position: fixed; inset: 0 0 auto 0; z-index: 200; height: 2px; pointer-events: none; }
.admin-bar .read-progress { top: 32px; }
.read-progress__bar { display: block; height: 100%; background: var(--ink); transform: scaleX(var(--progress, 0)); transform-origin: 0 50%; }

.article__head { padding-top: clamp(3rem, 7vw, 6rem); }
.article__kicker { margin-bottom: 1.5rem; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.article__kicker a { text-decoration: none; }
.article__kicker a:hover { color: var(--ink); }
.article__kicker span { margin-inline: .4rem; }
.article__title {
	max-width: 20ch;
	margin: 0;
	font-size: clamp(2.3rem, 5.8vw, 5.4rem);
	font-weight: 700;
	line-height: .98;
	letter-spacing: -0.035em;
}
.article__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 2rem 4rem;
	margin-top: clamp(2rem, 4vw, 3.5rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
}
.article__row .lead { max-width: 44ch; margin: 0; }
.article__facts { display: grid; gap: .4rem; margin: 0; font-size: .88rem; }
.article__facts div { display: flex; gap: .5rem; }
.article__facts dt { color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; padding-top: .15rem; }
.article__facts dd { margin: 0; font-weight: 600; }
@media (max-width: 760px) { .article__row { grid-template-columns: 1fr; } }

.article__cover { margin-top: clamp(2.5rem, 5vw, 4rem); }
.article__cover img { width: 100%; max-height: 80vh; aspect-ratio: 16 / 9; object-fit: cover; }
.article .entry-content { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: 2rem; }

.article__foot { padding-bottom: var(--section); }
.share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .75rem 1.75rem;
	padding-block: 1.25rem;
	border-block: 1px solid var(--line);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.share__label { color: var(--muted); }
.share a { text-decoration: none; }
.share button { padding: 0; border: 0; background: none; color: var(--ink); font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.share button:hover { text-decoration: underline; }

/* Comentários */
.comments { margin-top: 3rem; }
.comments__title { font-size: 1.5rem; text-transform: uppercase; font-stretch: 110%; }
.comment-list, .comment-list .children { list-style: none; margin: 0; padding: 0; }
.comment-list .children { padding-left: clamp(1rem, 4vw, 2.5rem); }
.comment-body { padding-block: 1.25rem; border-top: 1px solid var(--line); }
.comment-author { display: flex; align-items: center; gap: .6rem; font-weight: 600; }
.comment-author img { border-radius: 50%; }
.comment-author .says { display: none; }
.comment-metadata { font-size: .82rem; color: var(--muted); margin: .25rem 0 .75rem; }
.comment-metadata a { text-decoration: none; }
.comment-form { display: grid; gap: 1rem; }
.comment-form label { display: block; margin-bottom: .35rem; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.logged-in-as, .must-log-in, .comment-notes { color: var(--muted); font-size: .9rem; }

/* 10. Conteúdo (prose) --------------------------------------------------- */
.prose { font-size: clamp(1.08rem, 1.2vw, 1.18rem); line-height: 1.75; padding-inline: var(--gutter); }
.prose > * { max-width: var(--text); margin-left: auto; margin-right: auto; }
.prose > .alignwide { max-width: var(--wrap); }
.prose > .alignfull { max-width: none; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); }
.prose > :first-child { margin-top: 0; }
.prose p { margin-bottom: 1.35em; }
.prose h2, .prose h3, .prose h4 { margin-top: 2.2em; margin-bottom: .6em; letter-spacing: -0.015em; }
.prose h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }
.prose h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.prose h4 { font-size: 1.1rem; }
.prose a { text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.35em; }
.prose li { margin-bottom: .45em; }
.prose ul li::marker { content: "●  "; font-size: .6em; }
.prose blockquote, .prose .wp-block-quote {
	margin-block: 2.2em;
	padding: 0 0 0 1.4em;
	border-left: 2px solid var(--ink);
	font-size: 1.3em;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.01em;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose blockquote cite { display: block; margin-top: .8em; font-size: .65em; font-style: normal; color: var(--muted); }
.prose .wp-block-pullquote { padding: 2em 0; border-block: 1px solid var(--ink); text-align: left; }
.prose .wp-block-pullquote blockquote { border: 0; padding: 0; margin: 0; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 650; line-height: 1.15; }
.prose code, .prose kbd { padding: .1em .35em; background: var(--surface); border: 1px solid var(--line); font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace; font-size: .84em; }
.prose pre, .prose .wp-block-code {
	margin-block: 1.8em;
	padding: 1.25rem 1.4rem;
	overflow-x: auto;
	background: #1A1A1B;
	color: #EDEDEA;
	font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	font-size: .86rem;
	line-height: 1.6;
}
:root[data-theme="dark"] .prose pre, :root[data-theme="dark"] .prose .wp-block-code { background: #0A0A0B; border: 1px solid var(--line); }
.prose pre code, .prose .wp-block-code code { padding: 0; border: 0; background: none; color: inherit; font-size: inherit; }
.prose figure { margin-block: 2.2em; }
.prose figcaption, .prose .wp-element-caption { margin-top: .7rem; font-size: .82rem; color: var(--muted); }
.prose hr, .prose .wp-block-separator { width: 100%; margin-block: 3em; border: 0; border-top: 1px solid var(--line); }
.prose .wp-block-table { overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.prose th, .prose td { padding: .7rem .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.alignleft { float: left; margin: .3em 1.5em 1em 0; }
.alignright { float: right; margin: .3em 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; }

/* Formulários no conteúdo (Contact Form 7 e similares) */
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content input[type="url"],
.entry-content input[type="number"],
.entry-content select,
.entry-content textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: .85rem 0;
	border: 0;
	border-bottom: 1px solid var(--line);
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	font: inherit;
}
.entry-content input:focus, .entry-content textarea:focus, .comment-form input:focus, .comment-form textarea:focus { outline: none; border-bottom-color: var(--ink); }
.entry-content label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.entry-content .wpcf7-form p { margin-bottom: 1.25rem; }
.entry-content input[type="submit"], .entry-content .wpcf7-submit, .comment-form .btn, .comment-form .submit {
	padding: .95rem 1.8rem;
	border: 1px solid var(--ink);
	border-radius: 999px;
	background: var(--ink);
	color: var(--paper);
	font: inherit;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
}
.entry-content input[type="submit"]:hover, .entry-content .wpcf7-submit:hover { background: transparent; color: var(--ink); }

/* 11. Padrões de bloco --------------------------------------------------- */
.entry-content--builder > * { padding-inline: var(--gutter); }
.entry-content--builder > .alignfull { max-width: none; }

.k-section { padding-block: var(--section); border-top: 1px solid var(--line); }
.entry-content--builder > .k-section:first-child { border-top: 0; padding-top: clamp(3.5rem, 8vw, 7rem); }
.k-section--flush { padding-block: clamp(1.5rem, 3vw, 2.5rem); border-top: 0; }
.entry-content--builder > .k-section--flush:first-child { padding-top: clamp(2rem, 4vw, 3rem); }
.k-section--flush + .k-section { border-top: 0; }

/* Título dividido em blocos: use Shift+Enter para quebrar a linha; a 2ª linha é recuada */
.k-split {
	margin: 0 0 clamp(2rem, 4vw, 3.5rem);
	padding-left: var(--indent);
	text-indent: calc(var(--indent) * -1);
	font-size: clamp(2.6rem, 7.6vw, 7rem) !important;
	font-weight: 700;
	font-stretch: 112%;
	line-height: .9 !important;
	letter-spacing: -0.025em;
	text-transform: uppercase;
	text-wrap: initial;
}
.k-split { overflow-wrap: normal !important; word-break: normal !important; hyphens: none; }
.k-two > .wp-block-column > .k-split { margin-bottom: 0; font-size: clamp(2.2rem, 5.3vw, 5.6rem) !important; }

.k-two { gap: 2.5rem clamp(2rem, 5vw, 5rem) !important; align-items: flex-start !important; }
.k-two > .wp-block-column:last-child { max-width: 560px; margin-left: auto; }
.k-two--even > .wp-block-column:last-child { max-width: none; }
@media (max-width: 781px) { .k-two > .wp-block-column:last-child { margin-left: 0; } }

.k-lead { font-size: clamp(1.2rem, 1.9vw, 1.55rem) !important; font-weight: 500; line-height: 1.38; letter-spacing: -0.01em; }
.k-lead::before {
	content: "";
	display: inline-block;
	width: .55em; height: .55em;
	margin-right: .6em;
	border-radius: 50%;
	background: var(--ink);
	vertical-align: .06em;
}
.k-lead--end { max-width: 44ch; margin-top: clamp(3rem, 6vw, 5rem) !important; margin-left: auto !important; }
.k-body { color: var(--muted); }
.k-body + .wp-block-buttons { margin-top: 2rem; }

.k-images { gap: clamp(.75rem, 1.5vw, 1.25rem) !important; }
.k-images.wp-block-gallery .wp-block-image img { aspect-ratio: 4 / 3; object-fit: cover; height: auto !important; }
@media (max-width: 600px) { .k-images.wp-block-gallery .wp-block-image { width: 100% !important; } }

.k-stats { gap: 0 !important; margin: 0 !important; }
.k-stats > .wp-block-column { padding: 1rem clamp(1rem, 2vw, 2rem); border-left: 1px solid var(--line); }
.k-stats > .wp-block-column:first-child { border-left: 0; padding-left: 0; }
.k-stat__num { margin: 0 0 .5rem; font-size: clamp(3.5rem, 9vw, 8rem) !important; font-weight: 700; font-stretch: 110%; line-height: .9; letter-spacing: -0.04em; }
.k-stat__label { margin: 0; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 781px) {
	.k-stats > .wp-block-column { border-left: 0; border-top: 1px solid var(--line); padding: 1.5rem 0; }
	.k-stats > .wp-block-column:first-child { border-top: 0; }
}

.k-section--lines { background: color-mix(in srgb, var(--surface) 55%, transparent); }

.k-steps { gap: clamp(1.5rem, 3vw, 2.5rem) !important; }
.k-steps > .wp-block-column { padding-top: 1.25rem; border-top: 1px solid var(--ink); }
.k-step__num { margin: 0 0 2.5rem; font-size: .85rem; font-weight: 700; color: var(--muted); }
.k-steps h3 { margin: 0 0 .75rem; font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 650; font-stretch: 105%; text-transform: uppercase; letter-spacing: -0.01em; }
.k-steps p:not(.k-step__num) { color: var(--muted); font-size: 1rem; }

.k-rows { border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; }
.k-rows > * { margin: 0 !important; }
.k-row { align-items: center !important; gap: 1rem 2rem !important; padding-block: clamp(1rem, 2vw, 1.4rem); border-top: 1px solid var(--line); }
.k-row h3 { margin: 0; font-size: clamp(1.05rem, 1.8vw, 1.4rem); font-weight: 600; letter-spacing: -0.01em; }
.k-row p { margin: 0; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); text-align: right; }
.k-row a { text-decoration: none; }
.k-row a:hover { text-decoration: underline; }
.k-rows--compact .k-row h3 { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.k-rows--compact .k-row p { font-size: clamp(1rem, 1.5vw, 1.2rem); letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 500; }
@media (max-width: 781px) {
	.k-row { gap: .25rem !important; }
	.k-row > .wp-block-column { flex-basis: 100% !important; }
	.k-row p { text-align: left; }
}

.k-accordion { border-bottom: 1px solid var(--line); }
.k-accordion > * { margin: 0 !important; }
.k-acc { border-top: 1px solid var(--line); }
.k-acc summary {
	position: relative;
	padding: clamp(1.2rem, 2.4vw, 1.75rem) 2.5rem clamp(1.2rem, 2.4vw, 1.75rem) 0;
	font-size: clamp(1.25rem, 2.3vw, 1.9rem);
	font-weight: 600;
	font-stretch: 105%;
	line-height: 1.15;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	list-style: none;
	cursor: pointer;
}
.k-acc summary::-webkit-details-marker { display: none; }
.k-acc summary::before,
.k-acc summary::after { content: ""; position: absolute; right: 0; top: 50%; width: 1.1rem; height: 1.5px; background: currentColor; transition: transform .35s var(--ease); }
.k-acc summary::after { transform: rotate(90deg); }
.k-acc[open] summary::after { transform: rotate(0); }
.k-acc > p { max-width: 56ch; margin: 0; padding-bottom: 1.75rem; color: var(--muted); }

.k-query .wp-block-post-template { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid var(--line); }
.k-query .wp-block-post { display: grid; grid-template-columns: 7rem minmax(0, 1fr) 9rem; align-items: baseline; gap: 1rem 2rem; padding-block: clamp(1.3rem, 2.6vw, 2rem); border-top: 1px solid var(--line); margin: 0 !important; }
.k-query .wp-block-post-date { font-size: .82rem; font-weight: 600; color: var(--muted); }
.k-query .wp-block-post-title { margin: 0; font-size: clamp(1.2rem, 2.3vw, 1.9rem) !important; font-weight: 600; line-height: 1.15; }
.k-query .wp-block-post-title a { text-decoration: none; }
.k-query .wp-block-post-terms { text-align: right; font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.k-query .wp-block-post-terms a { text-decoration: none; color: var(--muted); }
@media (max-width: 760px) {
	.k-query .wp-block-post { grid-template-columns: 1fr auto; }
	.k-query .wp-block-post-title { grid-column: 1 / -1; grid-row: 2; }
}

/* 12. Movimento ---------------------------------------------------------- */
@keyframes k-up {
	from { opacity: 0; transform: translateY(.35em); }
	to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-delay: 0s !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}
@media print {
	.site-header, .site-footer, .grid-lines, .read-more, .share, .comments, .read-progress { display: none !important; }
}

/* 13. WPBakery Page Builder --------------------------------------------- */
/* Páginas montadas no WPBakery: largura do tema, tipografia e cores do tema */
.entry-content--vc { padding-block: clamp(3rem, 7vw, 6rem) var(--section); }
.entry-content--vc .vc_row { margin-left: -15px; margin-right: -15px; }
.entry-content--vc .vc_row[data-vc-full-width] { transition: none; }
.entry-content--vc .wpb_content_element,
.entry-content--vc .vc_btn3-container { margin-bottom: 2rem; }
.entry-content--vc .wpb_text_column { max-width: 68ch; }
.entry-content--vc .vc_col-sm-12 > .vc_column-inner > .wpb_wrapper > .wpb_text_column,
.entry-content--vc .k-vc-col > .k-vc-text { max-width: 76ch; }
.entry-content--vc h1,
.entry-content--vc h2,
.entry-content--vc h3,
.entry-content--vc .vc_custom_heading {
	font-family: var(--font) !important;
	color: var(--ink);
	letter-spacing: -0.02em;
}
.entry-content--vc h1,
.entry-content--vc .k-vc-title--h1 {
	font-size: clamp(2.2rem, 4.6vw, 5rem) !important;
	font-weight: 700;
	font-stretch: 112%;
	line-height: .92;
	text-transform: uppercase;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}
.entry-content--vc .vc_col-sm-12 h1,
.entry-content--vc .k-vc-col[style*="--k-col:100%"] h1 { font-size: clamp(2.4rem, 6.5vw, 6rem) !important; }
.entry-content--vc h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); font-weight: 700; line-height: 1.02; }
.entry-content--vc h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 650; }
.entry-content--vc p,
.entry-content--vc li { font-size: 1.06rem; line-height: 1.7; }
.entry-content--vc .wpb_single_image img,
.entry-content--vc .k-vc-figure img { width: 100%; height: auto; }
.entry-content--vc .wpb_single_image .vc_single_image-wrapper { max-width: 100%; }

/* Botões do WPBakery no estilo do tema */
.entry-content .vc_btn3.vc_btn3-style-modern,
.entry-content .vc_btn3.vc_btn3-style-flat,
.entry-content .vc_btn3.vc_btn3-style-classic,
.entry-content .vc_btn3.vc_btn3-style-custom,
.entry-content .vc_btn3.vc_btn3-style-outline,
.entry-content .vc_general.vc_btn3 {
	padding: .95rem 1.6rem !important;
	border: 1px solid var(--ink) !important;
	border-radius: 999px !important;
	background: var(--ink) !important;
	background-image: none !important;
	color: var(--paper) !important;
	font-family: var(--font) !important;
	font-size: .82rem !important;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	box-shadow: none !important;
}
.entry-content .vc_general.vc_btn3:hover { background: transparent !important; color: var(--ink) !important; }

/* Separadores, abas e acordeões */
.entry-content .vc_separator .vc_sep_line { border-color: var(--line) !important; }
.entry-content .vc_tta.vc_general .vc_tta-panel-heading,
.entry-content .vc_tta.vc_general .vc_tta-tab > a {
	background: transparent !important;
	border-color: var(--line) !important;
	border-radius: 0 !important;
}
.entry-content .vc_tta.vc_general .vc_tta-panel-title,
.entry-content .vc_tta.vc_general .vc_tta-tab > a { font-family: var(--font); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: var(--ink) !important; }
.entry-content .vc_tta.vc_general .vc_tta-panel-body { background: transparent !important; border-color: var(--line) !important; }

/* Elementos convertidos do Movedo / WPBakery desativado */
.k-vc-row { display: flex; flex-wrap: wrap; gap: 0 clamp(1.5rem, 3vw, 3rem); margin-bottom: 2rem; }
.k-vc-row--full { width: 100%; }
.k-vc-col { flex: 1 1 calc(var(--k-col, 100%) - 3rem); min-width: min(100%, 280px); }
.k-vc-row--inner { margin-bottom: 0; }
.k-vc-title { margin: 0 0 .6em; }
.k-vc-title.has-text-align-center { text-align: center; }
.k-vc-figure { margin: 0 0 2rem; }
.k-vc-buttons { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.5rem 0 2rem; }
.k-vc-divider { border: 0; border-top: 1px solid var(--line); margin-block: 2.5rem; }
.k-vc-box { padding-block: 1.5rem; border-top: 1px solid var(--line); }
.k-vc-box__title { margin-bottom: .5rem; text-transform: uppercase; font-stretch: 105%; }
.k-vc-box__text { color: var(--muted); }
.k-vc-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.k-vc-gallery figure { margin: 0; }
.k-vc-gallery img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.k-vc-social { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; list-style: none; padding: 0; margin: 0 0 2rem; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.k-vc-social a { text-decoration: none; }

/* Posts montados no WPBakery: linhas podem ocupar a largura total */
.prose > .vc_row,
.prose > .k-vc-row,
.prose > .vc_section { max-width: var(--wrap); }

/* Aviso exibido só dentro do editor visual do WPBakery */
.k-editor-note { margin-top: 1.5rem; }
.k-editor-note p { margin: 0; padding: 1rem 1.25rem; border: 1px solid var(--ink); background: var(--surface); font-size: .92rem; }
