/* ==========================================================================
   Rasador & Demari — sistema visual
   Conceito: banca artesanal contemporânea. Serifa editorial, margens largas,
   contraste alto, silêncio. Sem degradê, sem sombra teatral, sem parallax.
   ========================================================================== */

:root {
	--navy: #020a3e;
	--navy-soft: #10184c;
	--stone: #cecec6;
	--stone-tint: #eeeeea;
	--slate: #847f89;
	--white: #ffffff;

	/* Texto corrido: navy derivado, não cinza genérico. */
	--ink: #14183a;
	--ink-soft: #3a3e5c;

	--serif: "Cormorant Garamond", "Source Serif 4", Georgia, "Times New Roman", serif;
	--sans: "Outfit", "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--maxw: 1180px;
	--gutter: clamp(1.25rem, 4vw, 4rem);
	--radius: 2px;
	--rule: 1px solid var(--slate);
	--section-y: clamp(3.5rem, 9vw, 8rem);

	--ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--sans);
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--navy); color: var(--white); }

/* ---------- Tipografia ---------- */

h1, h2, h3, h4 {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--navy);
	margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }

p { margin: 0 0 1.2em; }

.kicker {
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--slate);
	margin: 0 0 1.4rem;
	display: inline-block;
}

.lead {
	font-family: var(--serif);
	font-size: clamp(1.35rem, 2.6vw, 1.85rem);
	line-height: 1.4;
	color: var(--ink);
	font-weight: 400;
}

/* ---------- Layout ---------- */

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

.section { padding-block: var(--section-y); }

.rule { border: 0; border-top: var(--rule); margin: 0; opacity: 0.5; }

.screen-reader-text {
	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: absolute;
	left: -999px;
	top: 0;
	background: var(--navy);
	color: var(--white);
	padding: 0.75rem 1.25rem;
	z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Grid assimétrico: título serifado à esquerda, texto à direita. */
.split {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(1.5rem, 5vw, 5rem);
	align-items: start;
}
.split--tight { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }

/* ---------- Botões ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--sans);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 0.95rem 1.6rem;
	border-radius: var(--radius);
	border: 1px solid var(--navy);
	background: var(--navy);
	color: var(--white);
	cursor: pointer;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--navy-soft); }
.btn:focus-visible { outline: 2px solid var(--slate); outline-offset: 3px; }

.btn--ghost {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }

.btn--light {
	background: var(--white);
	color: var(--navy);
	border-color: var(--white);
}
.btn--light:hover { background: var(--stone); border-color: var(--stone); }

.btn--ghost-light {
	background: transparent;
	color: var(--white);
	border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.arrow-link {
	font-family: var(--sans);
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--navy);
	border-bottom: 1px solid var(--slate);
	padding-bottom: 2px;
	transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.arrow-link:hover { color: var(--navy-soft); border-color: var(--navy); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.5rem;
	transition: padding 0.3s var(--ease);
}
.site-header.is-stuck { border-color: var(--stone); box-shadow: 0 1px 0 rgba(2,10,62,0.04); }
.site-header.is-stuck .site-header__inner { padding-block: 0.85rem; }

.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand__full { display: block; height: 46px; width: auto; transition: height 0.3s var(--ease); }
.brand__mark { display: none; height: 30px; width: auto; }
.site-header.is-stuck .brand__full { display: none; }
.site-header.is-stuck .brand__mark { display: block; }

.primary-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2.4vw, 2.2rem);
	margin: 0;
	padding: 0;
}
.primary-nav a {
	font-family: var(--sans);
	font-size: 0.92rem;
	font-weight: 400;
	color: var(--ink);
	position: relative;
	padding-block: 0.35rem;
	transition: color 0.2s var(--ease);
}
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0; right: 100%;
	bottom: 0;
	height: 1px;
	background: var(--navy);
	transition: right 0.28s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item > a::after,
.primary-nav .current_page_item > a::after { right: 0; }
.primary-nav a:hover { color: var(--navy); }

.header__actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: 0.4rem;
	cursor: pointer;
}
.nav-toggle span { width: 26px; height: 1.5px; background: var(--navy); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
	background: var(--navy);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.hero--has-bg {
	background-color: var(--navy);
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center;
}

.hero--has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(2, 10, 62, var(--hero-overlay, 0.75));
	pointer-events: none;
}

.hero__inner {
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
	padding-block: clamp(5rem, 15vh, 11rem);
	position: relative;
	z-index: 1;
}

.hero--has-image .hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.hero__content { min-width: 0; }

.hero__media {
	margin: 0;
	align-self: stretch;
	display: flex;
}

.hero__media img {
	width: 100%;
	height: 100%;
	min-height: clamp(280px, 40vw, 520px);
	object-fit: cover;
	border-radius: var(--radius);
	filter: grayscale(0.15) contrast(1.02);
}
.hero .kicker { color: var(--stone); }
.hero h1 {
	color: var(--white);
	max-width: 16ch;
	font-weight: 500;
}
.hero__tagline {
	font-family: var(--serif);
	font-size: clamp(1.3rem, 2.6vw, 1.9rem);
	line-height: 1.4;
	color: var(--stone);
	max-width: 34ch;
	margin: 1.5rem 0 2.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__meta {
	margin-top: clamp(3rem, 8vh, 5rem);
	padding-top: 1.5rem;
	border-top: 1px solid rgba(206,206,198,0.25);
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 3rem;
	font-size: 0.85rem;
	color: var(--stone);
	letter-spacing: 0.02em;
}
.hero__meta strong { display: block; color: var(--white); font-weight: 500; font-size: 1.6rem; font-family: var(--serif); margin-bottom: 0.2rem; }

/* Page hero (páginas internas) */
.page-hero { background: var(--navy); color: var(--white); }
.page-hero__inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); padding-block: clamp(3.5rem, 10vw, 6.5rem); }
.page-hero .kicker { color: var(--stone); }
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero__lead { color: var(--stone); font-family: var(--serif); font-size: clamp(1.2rem,2.4vw,1.6rem); line-height: 1.45; max-width: 46ch; margin-top: 1rem; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--stone); }
.page-hero .breadcrumb a { color: var(--stone); }
.page-hero .breadcrumb { color: rgba(206,206,198,0.7); }

/* ==========================================================================
   Manifesto
   ========================================================================== */

.manifesto p { font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2rem); line-height: 1.45; color: var(--ink); }

.manifesto-visual { max-width: 22rem; }

.manifesto-mark {
	margin: 0;
	padding: 0;
}

.manifesto-mark__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 5;
	padding: clamp(2rem, 5vw, 3rem);
	background: var(--stone);
	border-radius: var(--radius);
	position: relative;
	overflow: hidden;
}

/* Textura sutil de linho — ateliê, não stock. */
.manifesto-mark__block::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 3px,
			rgba(2, 10, 62, 0.025) 3px,
			rgba(2, 10, 62, 0.025) 4px
		);
	pointer-events: none;
}

.manifesto-mark__years {
	font-family: var(--serif);
	font-size: clamp(5.5rem, 14vw, 8.5rem);
	font-weight: 500;
	line-height: 0.85;
	color: var(--navy);
	letter-spacing: -0.04em;
}

.manifesto-mark__unit {
	font-family: var(--sans);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--slate);
	margin-top: 0.6rem;
}

.manifesto-mark__rule {
	display: block;
	width: 2.5rem;
	height: 1px;
	background: var(--slate);
	margin: 1.4rem 0 1rem;
	opacity: 0.7;
}

.manifesto-mark__city {
	font-family: var(--serif);
	font-size: clamp(1.05rem, 2.2vw, 1.35rem);
	color: var(--navy-soft);
	text-align: center;
	line-height: 1.35;
	max-width: 12ch;
}

.manifesto-mark__caption {
	margin-top: 1.1rem;
	font-family: var(--serif);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.45;
	color: var(--ink-soft);
	font-style: italic;
	max-width: 22rem;
}

@media (max-width: 900px) {
	.manifesto-visual { max-width: 18rem; margin-bottom: 0.5rem; }
}

/* ==========================================================================
   Índice de áreas — lista serifada (não grid de cards)
   ========================================================================== */

.area-list { list-style: none; margin: 0; padding: 0; border-top: var(--rule); }
.area-list__item { border-bottom: var(--rule); }
.area-list__item a {
	display: grid;
	grid-template-columns: 4.5rem 1fr auto;
	gap: 1.5rem;
	align-items: baseline;
	padding: clamp(1.4rem, 3.5vw, 2.4rem) 0;
	transition: padding-left 0.3s var(--ease);
}
.area-list__item a:hover { padding-left: 0.75rem; }
.area-list__num { font-family: var(--serif); font-size: 1.1rem; color: var(--slate); }
.area-list__title { display: block; font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--navy); line-height: 1.05; }
.area-list__kicker { display: block; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate); margin-top: 0.5rem; }
.area-list__go { font-family: var(--sans); font-size: 0.85rem; color: var(--slate); align-self: center; transition: transform 0.3s var(--ease), color 0.3s var(--ease); }
.area-list__item a:hover .area-list__go { color: var(--navy); transform: translateX(6px); }

/* ==========================================================================
   Equipe — três retratos/monogramas
   ========================================================================== */

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
}
.socio-card { display: block; }
.socio-card__portrait {
	aspect-ratio: 3 / 4;
	background: var(--stone);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	border-radius: var(--radius);
}
.socio-card__portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.02); transition: filter 0.4s var(--ease), transform 0.6s var(--ease); }
.socio-card:hover .socio-card__portrait img { filter: grayscale(0); transform: scale(1.03); }
.rd-monogram {
	font-family: var(--serif);
	font-weight: 500;
	font-size: clamp(4rem, 12vw, 7rem);
	color: var(--navy);
	line-height: 1;
}
.socio-card__portrait .rd-monogram { opacity: 0.85; }
.socio-card__name { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin: 1.1rem 0 0.2rem; }
.socio-card__role { display: block; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--slate); text-transform: uppercase; }

/* ==========================================================================
   Blog — lista editorial (data · título · área)
   ========================================================================== */

.post-list { list-style: none; margin: 0; padding: 0; border-top: var(--rule); }
.post-list__item { border-bottom: var(--rule); }
.post-list__item a {
	display: grid;
	grid-template-columns: 10rem 1fr auto;
	gap: 1.5rem 2rem;
	align-items: baseline;
	padding: clamp(1.4rem, 3vw, 2.2rem) 0;
	transition: padding-left 0.3s var(--ease);
}
.post-list__item a:hover { padding-left: 0.6rem; }
.post-list__date { display: block; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--slate); text-transform: uppercase; }
.post-list__title { display: block; font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 2rem); color: var(--navy); line-height: 1.12; }
.post-list__excerpt { display: block; font-size: 0.98rem; color: var(--ink-soft); margin-top: 0.5rem; max-width: 60ch; }
.post-list__area { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); align-self: center; white-space: nowrap; }

/* ==========================================================================
   Lugar + mapa / Contato curto (home)
   ========================================================================== */

.place { background: var(--stone-tint); }
.place__map {
	border: 1px solid var(--stone);
	border-radius: var(--radius);
	overflow: hidden;
	min-height: 340px;
	background: var(--stone);
}
.place__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(0.4) contrast(1.05); }
.nap { font-style: normal; }
.nap dt { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate); margin-top: 1.4rem; }
.nap dd { margin: 0.3rem 0 0; font-size: 1.05rem; }
.nap dd a:hover { color: var(--navy); border-bottom: 1px solid var(--slate); }

.cta-band { background: var(--navy); color: var(--white); }
.cta-band h2 { color: var(--white); max-width: 20ch; }
.cta-band p { color: var(--stone); max-width: 48ch; }

/* ==========================================================================
   Conteúdo editorial (post/página) — medida ~65ch
   ========================================================================== */

.article { padding-block: var(--section-y); }
.article__body { max-width: 65ch; margin-inline: auto; }
.article__body h2 { margin-top: 2em; }
.article__body h3 { margin-top: 1.6em; }
.article__body p { font-size: 1.12rem; line-height: 1.8; }
.article__body a { border-bottom: 1px solid var(--slate); }
.article__body a:hover { border-color: var(--navy); }
.article__body blockquote {
	margin: 2rem 0;
	padding-left: 1.6rem;
	border-left: 2px solid var(--slate);
	font-family: var(--serif);
	font-size: 1.4rem;
	line-height: 1.4;
	color: var(--ink);
}
.article__body ul, .article__body ol { padding-left: 1.3rem; }
.article__body li { margin-bottom: 0.5rem; }
.article__body img { border-radius: var(--radius); margin: 1.5rem 0; }

.entry-meta { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); margin-bottom: 1.5rem; }
.entry-meta .tag { color: var(--navy); border: 1px solid var(--stone); padding: 0.25rem 0.7rem; border-radius: var(--radius); }

.post-cta {
	max-width: 65ch;
	margin: 3rem auto 0;
	padding: 2.2rem;
	background: var(--stone-tint);
	border-radius: var(--radius);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.post-cta p { margin: 0; font-family: var(--serif); font-size: 1.3rem; color: var(--navy); }

.author-note { max-width: 65ch; margin: 2.5rem auto 0; display: flex; gap: 1.2rem; align-items: center; padding-top: 1.5rem; border-top: var(--rule); }
.author-note .rd-monogram { font-size: 2.4rem; width: 3.4rem; height: 3.4rem; display: flex; align-items: center; justify-content: center; background: var(--stone); border-radius: var(--radius); flex: none; }
.author-note small { display: block; color: var(--slate); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.author-note strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); }

/* ==========================================================================
   Área single
   ========================================================================== */

.area-aside { position: sticky; top: 6rem; }
.area-aside__index { list-style: none; margin: 0; padding: 0; }
.area-aside__index li { border-top: 1px solid var(--stone); }
.area-aside__index li:last-child { border-bottom: 1px solid var(--stone); }
.area-aside__index a { display: block; padding: 0.75rem 0; font-family: var(--serif); font-size: 1.15rem; color: var(--ink-soft); transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.area-aside__index a:hover { color: var(--navy); padding-left: 0.4rem; }
.area-aside__index .is-current a { color: var(--navy); }
.area-aside__index .is-current a::before { content: "— "; color: var(--slate); }

/* ==========================================================================
   Formulário de contato
   ========================================================================== */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
.form-field { display: flex; flex-direction: column; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.5rem; }
.form-field input,
.form-field select,
.form-field textarea {
	font-family: var(--sans);
	font-size: 1rem;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--stone);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(2,10,62,0.08); }
.form-field.has-error input,
.form-field.has-error textarea { border-color: #a3324a; }
.field-error { color: #a3324a; font-size: 0.82rem; margin-top: 0.4rem; letter-spacing: 0; text-transform: none; }

.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; grid-column: 1 / -1; }
.form-consent input { margin-top: 0.35rem; width: 1.05rem; height: 1.05rem; flex: none; }
.form-consent label { text-transform: none; letter-spacing: 0; font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.hp { position: absolute; left: -9999px; }

.form-note { grid-column: 1 / -1; font-size: 0.85rem; color: var(--slate); }

.notice { padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: 0.98rem; }
.notice--success { background: #eef2ec; border: 1px solid #b9c9b0; color: #2b4023; }
.notice--error { background: #fbeef0; border: 1px solid #e2b8c1; color: #7a2434; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--navy); color: var(--stone); padding-block: clamp(3.5rem, 8vw, 5.5rem) 2.5rem; }
.site-footer a { color: var(--stone); }
.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.footer__logo { width: 240px; margin-bottom: 1.5rem; }
.footer__tagline { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; color: var(--white); max-width: 30ch; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer__bottom { margin-top: clamp(2.5rem, 6vw, 4rem); padding-top: 1.5rem; border-top: 1px solid rgba(206,206,198,0.2); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: var(--slate); }
.footer__bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ==========================================================================
   404 / busca
   ========================================================================== */

.blank-state { text-align: center; padding-block: clamp(4rem, 12vw, 8rem); }
.blank-state .code { font-family: var(--serif); font-size: clamp(5rem, 18vw, 11rem); color: var(--stone); line-height: 0.9; }
.blank-state h1 { margin-top: 1rem; }
.blank-state p { max-width: 44ch; margin-inline: auto; color: var(--ink-soft); }

.search-form { display: flex; gap: 0.75rem; max-width: 480px; }
.search-form input[type="search"] { flex: 1; border: 1px solid var(--stone); border-radius: var(--radius); padding: 0.8rem 1rem; font-family: var(--sans); font-size: 1rem; }
.search-form input[type="search"]:focus { outline: none; border-color: var(--navy); }

/* ==========================================================================
   Utilidades / animação de entrada
   ========================================================================== */

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.section-head { margin-bottom: clamp(2rem, 5vw, 3.5rem); }

/* ==========================================================================
   WhatsApp FAB (Lucide)
   ========================================================================== */

.wa-fab {
	position: fixed;
	right: clamp(1rem, 3vw, 1.75rem);
	bottom: clamp(1rem, 3vw, 1.75rem);
	z-index: 200;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: #25d366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 18px rgba(2, 10, 62, 0.22);
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.wa-fab:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(2, 10, 62, 0.28);
	background: #20bd5a;
	color: var(--white);
}

.wa-fab:focus-visible {
	outline: 2px solid var(--navy);
	outline-offset: 3px;
}

.wa-fab svg {
	width: 1.55rem;
	height: 1.55rem;
	stroke-width: 2;
}

@media (prefers-reduced-motion: reduce) {
	.wa-fab { transition: none; }
	.wa-fab:hover { transform: none; }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */

@media (max-width: 900px) {
	.split, .split--tight { grid-template-columns: 1fr; gap: 1.5rem; }
	.team-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.area-aside { position: static; margin-bottom: 2.5rem; }
}

@media (max-width: 720px) {
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(82vw, 340px);
		background: var(--white);
		padding: 6rem 2rem 2rem;
		transform: translateX(100%);
		transition: transform 0.35s var(--ease);
		box-shadow: -20px 0 60px rgba(2,10,62,0.12);
		z-index: 90;
	}
	body.nav-open .primary-nav { transform: translateX(0); }
	body.nav-open { overflow: hidden; }
	.primary-nav ul { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
	.primary-nav a { font-size: 1.4rem; font-family: var(--serif); }
	.primary-nav a::after { display: none; }
	body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
	body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
	body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
	.nav-overlay { position: fixed; inset: 0; background: rgba(2,10,62,0.35); opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease); z-index: 80; }
	body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

	.header__actions .btn { display: none; }
	.brand__full { height: 34px; }

	.area-list__item a { grid-template-columns: 2.5rem 1fr; }
	.area-list__go { display: none; }
	.post-list__item a { grid-template-columns: 1fr; gap: 0.4rem; }
	.post-list__area { align-self: start; }
	.form-grid { grid-template-columns: 1fr; }
	.hero--has-image .hero__inner { grid-template-columns: 1fr; }
	.hero__media { order: -1; }
	.hero__media img { min-height: 220px; max-height: 340px; }
	.hero__meta { gap: 1.5rem; }
}

@media (max-width: 520px) {
	.team-grid { grid-template-columns: 1fr; max-width: 22rem; }
	.footer-grid { grid-template-columns: 1fr; }
	.post-cta { flex-direction: column; align-items: flex-start; }
}
