/* =========================================================================
   TERCEIRO MILÊNIO, Design System
   Baseado no Guia de Identidade Visual (Instituto III Milênio).
   Educar · Transformar · Cuidar
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens (variáveis)
   ------------------------------------------------------------------------- */
:root {
	/* Cores da marca */
	--navy: #192547;          /* cor de trabalho: textos, botões, rodapé */
	--azul: #6A7CA6;          /* Transformar, destaques, títulos grandes */
	--rosa: #D5819A;          /* Educar, acento decorativo (nunca texto) */
	--dourado: #D1A669;       /* Cuidar, acento decorativo (nunca texto) */

	/* Tons de apoio */
	--link: #46597F;          /* links / hover (7,3:1) */
	--text-2: #4A5468;        /* texto secundário */
	--bg-azul: #EEF1F7;
	--bg-rosa: #FBF1F4;
	--bg-dourado: #FAF3E7;
	--bg-page: #F7F6F3;
	--border: #B9BFCB;
	--white: #ffffff;

	/* Texto sobre fundos claros dos pilares (contraste seguro) */
	--rosa-text: #9C3F5B;
	--dourado-text: #8A6520;
	--azul-text: #3B4C74;

	/* Tipografia */
	--font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Escala tipográfica (rem, base 17px) */
	--fs-h1: clamp(2.15rem, 1.4rem + 3vw, 3rem);      /* ~48px desktop */
	--fs-h2: clamp(1.6rem, 1.2rem + 1.6vw, 2rem);     /* ~32px */
	--fs-h3: clamp(1.25rem, 1.05rem + 0.8vw, 1.375rem);/* ~22px */
	--fs-body: 1.0625rem;                             /* 17px */
	--fs-small: 0.875rem;                             /* 14px */
	--fs-overline: 0.8125rem;                         /* 13px */

	/* Espaçamento / layout */
	--container: 1200px;
	--gutter: 24px;
	--section-y: 96px;
	--radius: 10px;
	--radius-card: 14px;
	--radius-pill: 999px;

	/* Sombras */
	--shadow-sm: 0 2px 8px rgba(25, 37, 71, 0.06);
	--shadow-md: 0 12px 32px rgba(25, 37, 71, 0.10);
	--shadow-lg: 0 24px 60px rgba(25, 37, 71, 0.16);

	/* Transições */
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--dur: 0.35s;

	--header-h: 92px;
	--header-h-scrolled: 68px;
}

/* -------------------------------------------------------------------------
   2. Reset e base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	color: var(--navy);
	background: var(--bg-page);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; transition: color var(--dur) var(--ease); }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.2em; }

h1, h2, h3, h4 { font-family: var(--font-title); color: var(--navy); line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; }
h1 { font-size: var(--fs-h1); letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); font-weight: 700; }
p { margin: 0 0 1.1em; }

.overline {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: var(--fs-overline);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--azul-text);
	display: inline-block;
	margin-bottom: 12px;
}

/* -------------------------------------------------------------------------
   3. Acessibilidade
   ------------------------------------------------------------------------- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
	outline: 3px solid var(--link);
	outline-offset: 2px;
	border-radius: 4px;
}
.skip-link {
	position: absolute;
	left: 8px;
	top: -60px;
	z-index: 9999;
	background: var(--navy);
	color: #fff;
	padding: 12px 18px;
	border-radius: var(--radius);
	transition: top var(--dur) var(--ease);
	text-decoration: none;
}
.skip-link:focus { top: 8px; color: #fff; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px,1px,1px,1px);
	white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* -------------------------------------------------------------------------
   4. Layout
   ------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: 64px; }
.section--azul { background: var(--bg-azul); }
.section--rosa { background: var(--bg-rosa); }
.section--dourado { background: var(--bg-dourado); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.section__head { max-width: 720px; margin-bottom: 40px; }
.section__head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.2rem; color: var(--text-2); line-height: 1.6; }

.grid { display: grid; gap: var(--gutter); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Barra tricolor, assinatura da marca */
.tricolor {
	height: 6px;
	background: linear-gradient(90deg,
		var(--azul) 0 33.33%,
		var(--rosa) 33.33% 66.66%,
		var(--dourado) 66.66% 100%);
	border: 0;
	margin: 0;
}

/* -------------------------------------------------------------------------
   5. Botões
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 13px 26px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: #0f1a35; color: #fff; box-shadow: var(--shadow-md); }
.btn--secondary { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy); color: #fff; }
.btn--accent { background: var(--rosa); color: #fff; }
.btn--accent:hover { background: #c96e88; color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 9px 16px; font-size: 0.88rem; margin-top: 14px; }
.btn--sm svg { width: 18px; height: 18px; }
.btn svg { width: 20px; height: 20px; }

.arrow-link {
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--link);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.arrow-link:hover { color: var(--navy); }
.arrow-link span { transition: transform var(--dur) var(--ease); }
.arrow-link:hover span { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   6. Tags de pilar
   ------------------------------------------------------------------------- */
.tag {
	display: inline-block;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: var(--radius-pill);
}
.tag--educacao { background: var(--bg-rosa); color: var(--rosa-text); }
.tag--saude { background: var(--bg-dourado); color: var(--dourado-text); }
.tag--social { background: var(--bg-azul); color: var(--azul-text); }
.tag--default { background: var(--bg-azul); color: var(--azul-text); }

/* -------------------------------------------------------------------------
   7. Cabeçalho
   ------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	height: var(--header-h);
	display: flex;
	align-items: center;
	transition: height var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}
/* Transparente somente no topo da home */
.has-transparent-header .site-header:not(.is-scrolled) {
	background: transparent;
	box-shadow: none;
}
.site-header.is-scrolled {
	height: var(--header-h-scrolled);
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.site-branding { display: flex; align-items: center; }
.site-branding img, .site-branding svg { max-height: 52px; width: auto; transition: max-height var(--dur) var(--ease); }
.is-scrolled .site-branding img, .is-scrolled .site-branding svg { max-height: 42px; }
.logo--light { display: none; }
.has-transparent-header .site-header:not(.is-scrolled) .logo--dark { display: none; }
.has-transparent-header .site-header:not(.is-scrolled) .logo--light { display: block; }
.brand-text { font-family: var(--font-title); font-weight: 800; color: var(--navy); font-size: 1.1rem; text-decoration: none; letter-spacing: -0.01em; }

/* Navegação */
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.main-nav a {
	font-family: var(--font-title);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--navy);
	text-decoration: none;
	padding: 10px 14px;
	border-radius: var(--radius);
	position: relative;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.main-nav a::after {
	content: "";
	position: absolute;
	left: 14px; right: 14px; bottom: 6px;
	height: 2px;
	background: var(--azul);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--dur) var(--ease);
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after { transform: scaleX(1); }
.main-nav .current-menu-item > a { color: var(--link); }
/* Header transparente: texto claro */
.has-transparent-header .site-header:not(.is-scrolled) .main-nav a,
.has-transparent-header .site-header:not(.is-scrolled) .brand-text { color: #fff; }
.has-transparent-header .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }

.header__cta { display: flex; align-items: center; gap: 12px; }

/* Toggle mobile */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   8. Hero (split + slider)
   ------------------------------------------------------------------------- */
.hero { position: relative; }
.hero-slider { position: relative; }
.hero-slide {
	position: absolute;
	inset: 0;
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	place-items: center;
	color: #fff;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateX(0);
	transition:
		transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
		opacity 0.9s ease,
		visibility 0.9s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: translateX(0); z-index: 2; }
.hero-slide.next { opacity: 0; visibility: visible; transform: translateX(8%); z-index: 1; }
.hero-slide.prev { opacity: 0; visibility: visible; transform: translateX(-8%); z-index: 1; }
.hero-slider { min-height: 100vh; min-height: 100svh; overflow: hidden; }

/* Camada da imagem: herda o background e ganha movimento suave (Ken Burns) */
.hero-slide::after {
	content: "";
	position: absolute; inset: 0; z-index: 0;
	background-image: inherit;
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.hero-slide.is-active::after { animation: heroKen 16s ease-in-out infinite alternate; }
@keyframes heroKen { from { transform: scale(1); } to { transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-slide.is-active::after { animation: none; } }

.hero-slide::before {
	content: "";
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(105deg, rgba(15,22,44,0.86) 0%, rgba(15,22,44,0.55) 45%, rgba(15,22,44,0.25) 100%);
}
.hero-slide__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding: calc(var(--header-h) + 40px) var(--gutter) 80px;
}
.hero-slide__content { max-width: 620px; }
.hero-slide .overline { color: #fff; opacity: 0.9; }
.hero-slide h1, .hero-slide h2 { color: #fff; font-size: var(--fs-h1); margin-bottom: 18px; }
.hero-slide p { font-size: 1.2rem; color: rgba(255,255,255,0.92); max-width: 52ch; }
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* Controles do slider, travessões (dashes) como guia de navegação */
.hero-dots { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; }
.hero-dots button {
	width: 46px; height: 21px; padding: 0; cursor: pointer;
	border: 9.5px solid transparent; border-radius: 8px; /* traço fino: 2px visíveis */
	background: rgba(255,255,255,0.45); background-clip: padding-box;
	transition: background-color var(--dur) var(--ease), width var(--dur) var(--ease), border-width var(--dur) var(--ease);
}
.hero-dots button:hover { background-color: rgba(255,255,255,0.8); border-width: 8px; } /* engrossa ao aproximar */
.hero-dots button.is-active { width: 66px; background-color: #fff; border-width: 8px; }

/* Setas laterais, aparecem ao aproximar o mouse dos cantos */
.hero-arrow {
	position: absolute; z-index: 3; top: 50%;
	width: 54px; height: 54px; border-radius: 50%;
	background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.4);
	color: #fff; cursor: pointer; display: grid; place-items: center;
	backdrop-filter: blur(4px);
	opacity: 0; visibility: hidden;
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease), visibility var(--dur);
}
.hero-arrow--prev { left: 26px; transform: translate(-10px, -50%); }
.hero-arrow--next { right: 26px; transform: translate(10px, -50%); }
.hero-arrow.is-visible,
.hero-arrow:focus-visible { opacity: 1; visibility: visible; transform: translate(0, -50%); }
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow svg { width: 24px; height: 24px; }
@media (max-width: 760px) { .hero-arrow { display: none; } }

/* Slide de logomarca (banner inicial) */
.hero-slide--brand .hero-slide__inner { display: grid; place-items: center; text-align: center; }
.hero-slide--brand .hero-slide__content { max-width: none; margin-inline: auto; }
.hero-slide__brandmark img { width: min(310px, 58vw); height: auto; margin-inline: auto; }

/* ---- Marca animada: cada pilar surge na sua cor e termina em branco ---- */
.brandmark-svg { width: min(310px, 58vw); height: auto; display: block; margin-inline: auto; }
/* Estado final / fallback sem animação */
.brandmark-svg [class^="fil"] { fill: #fff; }
/* Preserva a regra de preenchimento original do arquivo */
.brandmark-svg .fil0,
.brandmark-svg .fil1,
.brandmark-svg .fil2,
.brandmark-svg .fil4 { fill-rule: nonzero; }

/* Somente os três pilares animam; o texto (fil4/fil5) já entra branco. */
.brandmark-svg .fil1,
.brandmark-svg .fil6 { animation: brandEducar 2.2s var(--ease) both; }      /* Educar (rosa)      */
.brandmark-svg .fil0,
.brandmark-svg .fil3 { animation: brandTransformar 2.2s var(--ease) both; } /* Transformar (azul) */
.brandmark-svg .fil2,
.brandmark-svg .fil7 { animation: brandCuidar 2.2s var(--ease) both; }      /* Cuidar (dourado)   */

@keyframes brandEducar {
	0%        { opacity: 0; fill: #D5819A; }
	14%, 60%  { opacity: 1; fill: #D5819A; }
	88%, 100% { opacity: 1; fill: #ffffff; }
}
@keyframes brandTransformar {
	0%, 12%   { opacity: 0; fill: #6A7CA6; }
	28%, 60%  { opacity: 1; fill: #6A7CA6; }
	88%, 100% { opacity: 1; fill: #ffffff; }
}
@keyframes brandCuidar {
	0%, 26%   { opacity: 0; fill: #D1A669; }
	42%, 60%  { opacity: 1; fill: #D1A669; }
	88%, 100% { opacity: 1; fill: #ffffff; }
}
@media (prefers-reduced-motion: reduce) {
	.brandmark-svg [class^="fil"] { animation: none; fill: #fff; opacity: 1; }
}
.hero-slide--brand .overline { margin-top: 28px; letter-spacing: 0.26em; font-size: 0.9rem; }
.hero-slide--brand::before {
	background: linear-gradient(180deg, rgba(15,22,44,0.62) 0%, rgba(15,22,44,0.5) 50%, rgba(15,22,44,0.72) 100%);
}

/* Hero split estático (fallback / alternativa) */
.hero-split {
	position: relative;
	background: var(--navy);
	color: #fff;
	overflow: hidden;
}
.hero-split__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 48px;
	min-height: 90vh;
	padding: calc(var(--header-h) + 40px) 0 60px;
}
.hero-split__content { max-width: 560px; }
.hero-split h1 { color: #fff; }
.hero-split p { color: rgba(255,255,255,0.9); font-size: 1.2rem; }
.hero-split__media { position: relative; }
.hero-split__media img { border-radius: var(--radius-card); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero-split__badge {
	position: absolute; left: -18px; bottom: 26px;
	background: #fff; color: var(--navy);
	border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-md);
	display: flex; gap: 12px; align-items: center;
}
.hero-split__badge strong { font-family: var(--font-title); font-size: 1.6rem; }

/* -------------------------------------------------------------------------
   9. Animações de entrada
   ------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }

/* -------------------------------------------------------------------------
   10. Pilares (o que fazemos)
   ------------------------------------------------------------------------- */
.pillar {
	background: #fff; border-radius: var(--radius-card); padding: 34px 30px;
	box-shadow: var(--shadow-sm); border-top: 5px solid var(--azul);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	height: 100%;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pillar--educar { border-top-color: var(--rosa); }
.pillar--transformar { border-top-color: var(--azul); }
.pillar--cuidar { border-top-color: var(--dourado); }
.pillar__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; background: var(--bg-azul); color: var(--azul-text); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.pillar--educar .pillar__icon { background: var(--bg-rosa); color: var(--rosa-text); }
.pillar--cuidar .pillar__icon { background: var(--bg-dourado); color: var(--dourado-text); }
.pillar__icon svg { width: 28px; height: 28px; }
.pillar h3 { margin-bottom: 10px; transition: color var(--dur) var(--ease); }
.pillar p { color: var(--text-2); margin: 0; transition: color var(--dur) var(--ease); }

/* Ícones da marca (pasta Icones) via máscara, cor herdada de currentColor */
.pillar__glyph {
	display: block; width: 36px; height: 36px;
	background-color: currentColor;
	-webkit-mask: var(--glyph) center / contain no-repeat;
	mask: var(--glyph) center / contain no-repeat;
}
.pillar__glyph--educar { --glyph: url("../images/icones/educar.svg"); width: 40px; height: 26px; }
.pillar__glyph--transformar { --glyph: url("../images/icones/transformar.svg"); width: 38px; height: 32px; }
.pillar__glyph--cuidar { --glyph: url("../images/icones/cuidar.svg"); width: 34px; height: 36px; }

/* Hover "vira" o card na cor do pilar (com tile branco e ícone navy) */
.pillar--flip { cursor: default; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease); }
.pillar--educar.pillar--flip:hover { background: var(--rosa); }
.pillar--transformar.pillar--flip:hover { background: var(--azul); }
.pillar--cuidar.pillar--flip:hover { background: var(--dourado); }
.pillar--flip:hover h3 { color: #fff; }
.pillar--flip:hover p { color: rgba(255, 255, 255, 0.94); }
.pillar--flip:hover .pillar__icon { background: #fff; }

/* -------------------------------------------------------------------------
   11. Cards (projeto / notícia)
   ------------------------------------------------------------------------- */
.card {
	background: #fff;
	border-radius: var(--radius-card);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-azul); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__meta { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-2); font-family: var(--font-title); font-weight: 600; }
.card__title { font-size: 1.2rem; margin: 0; }
.card__title a { color: var(--navy); text-decoration: none; }
.card__title a:hover { color: var(--link); }
.card__excerpt { color: var(--text-2); margin: 0; font-size: 0.98rem; }
.card__footer { margin-top: auto; padding-top: 8px; }

/* -------------------------------------------------------------------------
   12. Números de impacto
   ------------------------------------------------------------------------- */
.impact { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--gutter); }
.impact__icon { display: flex; justify-content: center; margin-bottom: 12px; color: var(--azul); }
.section--navy .impact__icon { color: rgba(255, 255, 255, 0.55); }
.impact__icon svg { width: 26px; height: 26px; }
.impact__item { text-align: center; padding: 26px 16px; background: #fff; border-radius: var(--radius-card); position: relative; box-shadow: var(--shadow-sm); }
.impact__item::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 4px; border-radius: 0 0 4px 4px; background: var(--azul); }
.impact__item:nth-child(4n+1)::before { background: var(--rosa); }
.impact__item:nth-child(4n+2)::before { background: var(--azul); }
.impact__item:nth-child(4n+3)::before { background: var(--dourado); }
.impact__num { font-family: var(--font-title); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem); color: var(--navy); line-height: 1; }
.impact__label { display: block; margin-top: 8px; color: var(--text-2); font-size: 0.95rem; }
.section--navy .impact__item { background: rgba(255,255,255,0.06); }
.section--navy .impact__num { color: #fff; }
.section--navy .impact__label { color: rgba(255,255,255,0.8); }

/* -------------------------------------------------------------------------
   13. Breadcrumb
   ------------------------------------------------------------------------- */
.breadcrumb { padding: 14px 0; font-size: 0.9rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; align-items: center; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; color: var(--text-2); }
.breadcrumb a { color: var(--link); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

/* Banner de página interna */
.page-hero {
	background: var(--navy);
	color: #fff;
	padding: calc(var(--header-h) + 56px) 0 56px;
	position: relative;
	overflow: hidden;
}
.page-hero--image { background-size: cover; background-position: center; }
.page-hero--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,22,44,0.9), rgba(15,22,44,0.6)); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 60ch; margin: 0; }
.page-hero .breadcrumb { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a, .page-hero .breadcrumb li { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb a:hover { color: #fff; }

/* -------------------------------------------------------------------------
   14. Conteúdo (single / página)
   ------------------------------------------------------------------------- */
.entry-content { max-width: 760px; }
.entry-content > * { margin-bottom: 1.2em; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content h3 { margin-top: 1.4em; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote {
	border-left: 4px solid var(--rosa);
	background: var(--bg-rosa);
	margin: 1.6em 0; padding: 18px 24px; border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 1.1rem; color: var(--navy);
}
.entry-content ul li, .entry-content ol li { margin-bottom: 0.5em; }

/* Página de projeto em coluna única centralizada */
.project-single { max-width: 900px; margin-inline: auto; }
.project-single .entry-content { max-width: none; }

/* Cartão "Informações do projeto" ao final, em largura total */
.project-info--wide { position: static; margin-top: 40px; padding: 34px; }
.project-info__grid {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 22px 30px; margin: 0 0 28px;
	padding-bottom: 28px; border-bottom: 1px solid var(--bg-azul);
}
.project-info__grid dt { margin-top: 0; }
.project-info--wide .btn { display: inline-flex; margin-top: 4px; }
@media (max-width: 620px) { .project-info--wide { padding: 26px; } }

/* Cards de "Diferenciais do programa" */
.diferenciais { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.diferencial {
	background: #fff; border-radius: var(--radius-card); padding: 24px 22px;
	box-shadow: var(--shadow-sm); border-top: 4px solid var(--azul);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.diferencial:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.diferencial:nth-child(3n+1) { border-top-color: var(--rosa); }
.diferencial:nth-child(3n+3) { border-top-color: var(--dourado); }
.diferencial__icon {
	display: grid; place-items: center; width: 44px; height: 44px;
	border-radius: 12px; background: var(--bg-azul); color: var(--azul-text); margin-bottom: 14px;
}
.diferencial:nth-child(3n+1) .diferencial__icon { background: var(--bg-rosa); color: var(--rosa-text); }
.diferencial:nth-child(3n+3) .diferencial__icon { background: var(--bg-dourado); color: var(--dourado-text); }
.diferencial h4 { font-family: var(--font-title); font-size: 1.02rem; margin: 0 0 8px; color: var(--navy); }
.diferencial p { margin: 0; font-size: 0.92rem; color: var(--text-2); line-height: 1.55; }

.content-columns { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
/* Proporção da página de Contato: coluna do formulário mais larga que a lateral.
   Precisa ficar aqui, e não em estilo inline no template, senão a regra
   responsiva mais abaixo não consegue empilhar as colunas no celular. */
.content-columns--contato { grid-template-columns: 1.3fr 1fr; }
.project-info { background: #fff; border-radius: var(--radius-card); padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h-scrolled) + 20px); }
.project-info h3 { font-size: 1.05rem; }
.project-info dl { margin: 0; }
.project-info dt { font-family: var(--font-title); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--azul-text); margin-top: 14px; }
.project-info dd { margin: 4px 0 0; color: var(--text-2); }

.results-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.results-list li { display: flex; gap: 12px; align-items: flex-start; }
.results-list svg { flex: none; width: 22px; height: 22px; color: var(--azul); margin-top: 2px; }

/* Galeria */
.tm-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tm-gallery a { display: block; border-radius: var(--radius); overflow: hidden; }
.tm-gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform var(--dur) var(--ease); }
.tm-gallery a:hover img { transform: scale(1.06); }

/* Compartilhamento social */
.share { display: flex; align-items: center; gap: 12px; margin: 32px 0; flex-wrap: wrap; }
.share__label { font-family: var(--font-title); font-weight: 700; color: var(--navy); }
.share a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-azul); color: var(--navy); transition: background var(--dur) var(--ease), color var(--dur) var(--ease); }
.share a:hover { background: var(--navy); color: #fff; }
.share svg { width: 20px; height: 20px; }

/* -------------------------------------------------------------------------
   15. Formulários
   ------------------------------------------------------------------------- */
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-family: var(--font-title); font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-field .req { color: var(--rosa-text); }
.form-control {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--navy);
	background: #fff;
	border: 1.5px solid var(--border);
	border-radius: var(--radius);
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-control:focus { border-color: var(--link); outline: 3px solid rgba(70,89,127,0.25); outline-offset: 0; }
.form-field.has-error .form-control { border-color: #c0392b; }
.field-error { display: none; margin-top: 6px; color: #c0392b; font-size: 0.85rem; align-items: center; gap: 6px; }
.form-field.has-error .field-error { display: flex; }
.field-error svg { width: 16px; height: 16px; flex: none; }
.form-note { font-size: 0.85rem; color: var(--text-2); }
.honeypot { position: absolute !important; left: -9999px; top: -9999px; }

.form-message { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; display: none; }
.form-message.is-visible { display: block; }
.form-message--success { background: #e7f4ec; color: #1d6b3f; border: 1px solid #b7dcc4; }
.form-message--error { background: #fdecea; color: #a5281b; border: 1px solid #f3c1bb; }

/* -------------------------------------------------------------------------
   16. Rodapé
   ------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.82); }
.footer__main { padding-block: 64px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img, .footer__brand svg { max-height: 54px; width: auto; margin-bottom: 18px; }
.footer__desc { font-size: 0.95rem; line-height: 1.6; max-width: 34ch; }
.footer__title { font-family: var(--font-title); color: #fff; font-size: 1rem; font-weight: 700; margin: 0 0 16px; }
.footer__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__menu a { color: rgba(255,255,255,0.82); text-decoration: none; }
.footer__menu a:hover { color: #fff; }
.footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 0.95rem; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
/* Padrão para fundos claros (página de Contato e Home) */
.footer__contact a { color: var(--navy); text-decoration: none; }
.footer__contact a:hover { color: var(--link); text-decoration: underline; }
/* No rodapé (fundo navy), os links voltam a ser claros */
.site-footer .footer__contact a { color: rgba(255,255,255,0.82); }
.site-footer .footer__contact a:hover { color: #fff; text-decoration: none; }
.footer__contact svg { width: 20px; height: 20px; flex: none; color: var(--azul); margin-top: 2px; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.footer__social a {
	width: 44px; height: 44px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.08); color: #fff; line-height: 0;
	transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--azul); transform: translateY(-3px); }
.footer__social a svg { width: 20px; height: 20px; display: block; margin: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer__legal a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer__legal a:hover { color: #fff; }

/* -------------------------------------------------------------------------
   17. Botão flutuante
   ------------------------------------------------------------------------- */
.floating { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.floating__options { display: flex; flex-direction: column; gap: 12px; transform: translateY(12px) scale(0.9); opacity: 0; pointer-events: none; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.floating.is-open .floating__options { transform: none; opacity: 1; pointer-events: auto; }
.floating__link { display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 18px 0 14px; border-radius: var(--radius-pill); background: #fff; color: var(--navy); box-shadow: var(--shadow-md); text-decoration: none; font-family: var(--font-title); font-weight: 700; font-size: 0.9rem; transition: transform var(--dur) var(--ease); }
.floating__link:hover { transform: translateX(-3px); color: var(--navy); }
.floating__link svg { width: 24px; height: 24px; }
.floating__link--whatsapp svg { color: #25D366; }
.floating__link--instagram svg { color: #E1306C; }
.floating__toggle { width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.floating__toggle:hover { transform: scale(1.06); }
.floating.is-open .floating__toggle { background: var(--link); }
.floating__toggle svg { width: 28px; height: 28px; }
.floating__toggle .icon-open, .floating__toggle .icon-close { display: grid; place-items: center; transition: opacity var(--dur) var(--ease); }
.floating__toggle .icon-close { display: none; }
.floating.is-open .floating__toggle .icon-open { display: none; }
.floating.is-open .floating__toggle .icon-close { display: grid; }

/* -------------------------------------------------------------------------
   18. Banner de cookies (LGPD)
   ------------------------------------------------------------------------- */
.cookie-banner {
	position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 1200;
	max-width: 520px;
	background: #fff; color: var(--navy);
	border-radius: var(--radius-card); box-shadow: var(--shadow-lg);
	padding: 22px 24px; border-top: 4px solid var(--azul);
	transform: translateY(140%); transition: transform 0.5s var(--ease);
}
.cookie-banner.is-visible { transform: none; }
.cookie-banner h2 { font-size: 1.1rem; margin: 0 0 8px; }
.cookie-banner p { font-size: 0.9rem; color: var(--text-2); margin: 0 0 16px; }
.cookie-banner a { color: var(--link); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { min-height: 44px; padding: 10px 20px; font-size: 0.9rem; }

/* -------------------------------------------------------------------------
   19. 404 / utilitários
   ------------------------------------------------------------------------- */
/* Página de agradecimento (confirmação de envio do formulário) */
.thanks { text-align: center; padding-block: calc(var(--header-h) + 70px) 90px; }
.thanks__badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 96px; height: 96px; margin-bottom: 24px;
	border-radius: 50%; background: var(--bg-azul); color: var(--azul-text);
}
.thanks h1 { margin: 0; }
.thanks__text { max-width: 56ch; margin: 16px auto 0; }
.thanks .cta-band__actions { margin-top: 34px; }

.error-404 { text-align: center; padding-block: calc(var(--header-h) + 60px) 90px; }
.error-404 .code { font-family: var(--font-title); font-weight: 800; font-size: clamp(5rem, 3rem + 12vw, 10rem); line-height: 0.9; color: var(--bg-azul); }
.error-404 h1 { margin-top: 10px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.cta-band { background: linear-gradient(120deg, var(--navy), #223564); color: #fff; border-radius: var(--radius-card); padding: 54px; text-align: center; }

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 56ch; margin-inline: auto; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border-radius: var(--radius); background: #fff; color: var(--navy); text-decoration: none; box-shadow: var(--shadow-sm); font-family: var(--font-title); font-weight: 600; }
.pagination .page-numbers.current { background: var(--navy); color: #fff; }
.pagination a.page-numbers:hover { background: var(--bg-azul); }

/* Filtros de arquivo */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filters a { padding: 9px 18px; border-radius: var(--radius-pill); background: #fff; color: var(--navy); text-decoration: none; font-family: var(--font-title); font-weight: 600; font-size: 0.9rem; box-shadow: var(--shadow-sm); border: 1.5px solid transparent; transition: all var(--dur) var(--ease); }
.filters a:hover { border-color: var(--azul); }
.filters a.is-active { background: var(--navy); color: #fff; }

/* Depoimentos */
.testimonial { background: #fff; border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; }
.testimonial__quote { font-size: 1.05rem; color: var(--navy); font-style: italic; margin-bottom: 18px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial__name { font-family: var(--font-title); font-weight: 700; }
.testimonial__role { font-size: 0.85rem; color: var(--text-2); }

/* Parceiros */
.partners { display: flex; flex-wrap: wrap; gap: 30px 50px; align-items: center; justify-content: center; }
.partners img { max-height: 60px; width: auto; filter: grayscale(1); opacity: 0.7; transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.partners a:hover img { filter: none; opacity: 1; }

/* -------------------------------------------------------------------------
   20. Responsivo
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	:root { --section-y: 64px; }
	.footer__main { grid-template-columns: 1fr 1fr; }
	.content-columns { grid-template-columns: 1fr; }
	.project-info { position: static; }
	.hero-split__grid { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
	.hero-split__media { max-width: 460px; }
}
@media (max-width: 860px) {
	.nav-toggle { display: flex; }
	/* O backdrop-filter do cabeçalho rolado cria um bloco de contenção: o painel
	   do menu (position: fixed) passaria a se ancorar no cabeçalho em vez da
	   janela, abrindo como uma faixa de poucos pixels. Em telas pequenas o
	   cabeçalho usa fundo sólido, sem desfoque, e o painel volta a ocupar a tela. */
	.site-header.is-scrolled {
		background: var(--white);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
	.main-nav {
		position: fixed; inset: 0 0 0 auto; width: min(86vw, 350px);
		z-index: 1001;
		background: #fff; box-shadow: var(--shadow-lg);
		padding: 20px 24px 40px;
		transform: translateX(100%); transition: transform var(--dur) var(--ease);
		overflow-y: auto;
	}
	.main-nav.is-open { transform: none; }
	.main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.main-nav a { color: var(--navy) !important; padding: 14px; border-radius: var(--radius); }
	.main-nav a::after { display: none; }
	.has-transparent-header .site-header:not(.is-scrolled) .main-nav a { color: var(--navy) !important; }
	.nav-backdrop { position: fixed; inset: 0; background: rgba(15,22,44,0.4); opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease); z-index: 999; }
	.nav-backdrop.is-open { opacity: 1; visibility: visible; }
	.header__cta .btn { display: none; }
}
@media (max-width: 760px) {
	.grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
	.impact { grid-template-columns: 1fr 1fr; }
	.tm-gallery { grid-template-columns: 1fr 1fr; }
	.cta-band { padding: 36px 24px; }
	.footer__main { grid-template-columns: 1fr; gap: 32px; }
	.hero-slide__inner { padding-bottom: 60px; }
}
@media (max-width: 420px) {
	.impact { grid-template-columns: 1fr; }
	.cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}

/* =========================================================================
   21. Refinamentos (round 2)
   ========================================================================= */

/* ---- Submenu (dropdown) no cabeçalho ---- */
.main-nav .menu-item-has-children { position: relative; }
.main-nav .menu-item-has-children > a::before {
	content: "";
	position: absolute; right: -2px; top: 50%;
	width: 7px; height: 7px; margin-top: -5px;
	border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
	transform: rotate(45deg); opacity: 0.7; transition: transform var(--dur) var(--ease);
}
.main-nav .sub-menu {
	display: block; /* evita herdar o flex horizontal do menu principal */
	position: absolute; left: 0; top: calc(100% + 6px);
	min-width: 230px; margin: 0; padding: 8px;
	list-style: none; background: #fff; border-radius: var(--radius);
	box-shadow: var(--shadow-md); border-top: 3px solid var(--azul);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
	z-index: 20;
}
.main-nav .sub-menu li { display: block; width: 100%; }
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.main-nav .menu-item-has-children:hover > a::before { transform: rotate(-135deg); }
.main-nav .sub-menu a { display: block; padding: 11px 14px; border-radius: 8px; color: var(--navy) !important; }
.main-nav .sub-menu a::after { display: none; }
.main-nav .sub-menu a:hover { background: var(--bg-azul); }

/* Cabeçalho do menu mobile (logo + botão fechar) */
.nav-mobile-head { display: none; }
.nav-close {
	width: 44px; height: 44px; flex: none;
	border: 0; border-radius: 50%; cursor: pointer;
	background: var(--bg-azul); color: var(--navy);
	display: grid; place-items: center;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-close:hover { background: var(--navy); color: #fff; transform: rotate(90deg); }

@media (max-width: 860px) {
	.nav-mobile-head {
		display: flex; align-items: center; justify-content: space-between; gap: 16px;
		margin: 0 0 20px; padding-bottom: 18px; border-bottom: 1px solid var(--bg-azul);
	}
	.nav-mobile-head img { max-height: 44px; width: auto; }
	.main-nav .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border-top: 0; border-left: 2px solid var(--bg-azul);
		border-radius: 0; margin: 2px 0 6px 12px; padding: 0 0 0 6px; min-width: 0;
	}
	.main-nav .menu-item-has-children > a::before { display: none; }
}

/* ---- Hero: entrada do conteúdo (complementa a transição de slide) ---- */
.hero-slide.is-active .hero-slide__content { animation: heroContentIn 1s var(--ease) both; }
@keyframes heroContentIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
	.hero-slide.is-active .hero-slide__content { animation: none; }
}

/* Marca vertical (tom sobre tom) no hero */
.hero-brandmark {
	position: absolute; z-index: 1; right: 4%; bottom: -4%;
	width: min(360px, 34vw); pointer-events: none;
	opacity: 0.10; filter: brightness(0) invert(1);
}
@media (max-width: 760px) { .hero-brandmark { display: none; } }

/* ---- Seção com marca ao fundo (tom sobre tom) ---- */
.brandwatermark { position: relative; overflow: hidden; }
.brandwatermark__mark {
	position: absolute; z-index: 0; pointer-events: none;
	right: -60px; top: 50%; transform: translateY(-50%);
	width: min(520px, 46vw); opacity: 0.06;
}
.section--navy .brandwatermark__mark { filter: brightness(0) invert(1); opacity: 0.07; }
.brandwatermark > .container { position: relative; z-index: 1; }

/* ---- Enchentes RS 2024 (atuação emergencial) ---- */
.enchentes__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.enchentes__text p { color: rgba(255, 255, 255, 0.9); }
.enchentes__text .overline { color: var(--rosa); }
.enchentes__quote {
	margin-top: 26px; padding-left: 18px;
	border-left: 3px solid var(--rosa);
	font-style: italic; color: #fff !important;
}
.enchentes__media { position: relative; }
.enchentes__slider {
	position: relative; border-radius: var(--radius-card); overflow: hidden;
	box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: rgba(255, 255, 255, 0.06);
}
.enchentes__slide {
	position: absolute; inset: 0; margin: 0;
	opacity: 0; visibility: hidden;
	transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.enchentes__slide.is-active { opacity: 1; visibility: visible; }
.enchentes__slide img { width: 100%; height: 100%; object-fit: cover; }
.enchentes__dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
.enchentes__dots button {
	width: 10px; height: 10px; padding: 0; border-radius: 50%; cursor: pointer;
	border: 0; background: rgba(255, 255, 255, 0.35);
	transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.enchentes__dots button:hover { background: rgba(255, 255, 255, 0.7); }
.enchentes__dots button.is-active { background: var(--rosa); transform: scale(1.3); }
.enchentes__dots button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (max-width: 860px) {
	.enchentes__grid { grid-template-columns: 1fr; gap: 34px; }
}

/* ---- Áreas de atuação (banner de largura total com foto e degradê) ---- */
.areas__banner {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center right;
}
.areas__banner::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg,
		rgba(25, 37, 71, 0.97) 0%,
		rgba(25, 37, 71, 0.88) 28%,
		rgba(25, 37, 71, 0.45) 58%,
		rgba(25, 37, 71, 0.05) 100%);
}
.areas__banner .container { position: relative; z-index: 1; width: 100%; }
.areas__content { max-width: 560px; padding: 88px 0; color: #fff; }
.areas__kicker { font-family: var(--font-title); font-weight: 700; font-size: 1.3rem; margin: 0 0 4px; color: #fff; }
.areas__state {
	font-family: var(--font-title); font-weight: 800; line-height: 1.02;
	font-size: clamp(2.4rem, 1.6rem + 3.5vw, 4rem);
	margin: 0 0 22px;
	background: linear-gradient(100deg, #ffffff 30%, #aebdde 100%);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
}
.areas__content > p { font-size: 0.98rem; color: rgba(255, 255, 255, 0.92); margin: 0; }
.areas__list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.areas__list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255, 255, 255, 0.92); font-size: 0.98rem; }
.areas__list svg { flex: none; color: var(--dourado); width: 22px; height: 22px; margin-top: 2px; }
.areas__map-btn { margin-top: 28px; }
@media (max-width: 760px) {
	.areas__banner { min-height: 520px; background-position: 68% center; }
	.areas__content { padding: 64px 0; }
}

/* ---- Seção de formulário na Home ---- */
.home-form__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.home-form__aside .overline { color: var(--azul-text); }
.home-form__card { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-md); padding: 34px; }
@media (max-width: 860px) { .home-form__grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---- Cards de valores (Sobre) reforço ---- */
.value-card { background: #fff; border-radius: var(--radius-card); padding: 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start; height: 100%; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card__icon { flex: none; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-azul); color: var(--azul-text); }
.value-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value-card p { margin: 0; color: var(--text-2); font-size: 0.97rem; }

/* Mosaico de imagens */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.mosaic a { display: block; border-radius: var(--radius-card); overflow: hidden; position: relative; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.mosaic a:hover img { transform: scale(1.06); }
.mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic a:nth-child(6), .mosaic a:nth-child(7) { grid-column: span 2; }

@media (max-width: 760px) {
	.mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
	.mosaic a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
	.mosaic a:nth-child(6), .mosaic a:nth-child(7) { grid-column: span 1; }
}

/* ---- Lightbox (galeria) ---- */
.lightbox {
	position: fixed; inset: 0; z-index: 2000; display: none;
	background: rgba(15,22,44,0.92); padding: 40px;
	align-items: center; justify-content: center;
}
.lightbox.is-open { display: flex; animation: lbFade 0.25s var(--ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: 92vw; max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
	position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.35);
	color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
	display: grid; place-items: center; transition: background var(--dur) var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.28); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav svg, .lightbox__close svg { width: 26px; height: 26px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__caption { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
@media (max-width: 620px) { .lightbox { padding: 16px; } .lightbox__nav { width: 44px; height: 44px; } }
.gallery-clickable { cursor: zoom-in; }

/* ---- Infográficos (Projeto Monitores) ---- */
/* Cada bloco vira um painel com fundo alternado, dividindo visualmente as seções. */
.info-block {
	margin: 22px 0;
	padding: 44px 40px;
	border-radius: var(--radius-card);
	background: #fff;
}
.info-block:nth-child(even) { background: var(--bg-azul); }
.info-block__title { text-align: center; max-width: 720px; margin: 0 auto 34px; }
@media (max-width: 620px) { .info-block { padding: 32px 22px; } }

/* Objetivo: texto à esquerda e ícone grande à direita */
.objetivo { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; }
.objetivo__text { text-align: left; }
.objetivo__icon {
	flex: none; width: 190px; height: 190px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--bg-azul); color: var(--azul);
	box-shadow: inset 0 0 0 10px rgba(106, 124, 166, 0.12);
}
.info-block:nth-child(even) .objetivo__icon { background: #fff; }
.objetivo__icon svg { width: 96px; height: 96px; }
@media (max-width: 860px) {
	.objetivo { grid-template-columns: 1fr; gap: 28px; justify-items: center; }
	.objetivo__text { text-align: center; }
	.objetivo__icon { width: 150px; height: 150px; }
	.objetivo__icon svg { width: 74px; height: 74px; }
}

/* Tabela comparativa */
.compare { display: grid; grid-template-columns: 160px 1fr 1fr; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
.compare__cell { padding: 18px 20px; border-bottom: 1px solid var(--bg-azul); }
.compare__head { font-family: var(--font-title); font-weight: 800; font-size: 1.05rem; }
.compare__row-label { font-family: var(--font-title); font-weight: 700; color: var(--navy); background: var(--bg-page); }
.compare__common { color: var(--text-2); }
.compare__milenio { background: var(--navy); color: #fff; }
.compare__milenio.compare__head { background: #0f1a35; }
.compare__milenio strong { color: var(--dourado); }
.compare__head.compare__row-label { background: #fff; }
@media (max-width: 760px) {
	.compare { grid-template-columns: 1fr; }
	.compare__cell { border-bottom: 1px solid rgba(0,0,0,0.06); }
	.compare__row-label { border-top: 2px solid var(--azul); }
}

/* Fluxo de etapas (Caminho Legal / genérico) */
.flow { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 16px; align-items: stretch; }
.flow__step { position: relative; background: #fff; border-radius: var(--radius-card); padding: 26px 22px; box-shadow: var(--shadow-sm); border-top: 5px solid var(--azul); }
.flow__step:nth-child(3n+1) { border-top-color: var(--rosa); }
.flow__step:nth-child(3n+3) { border-top-color: var(--dourado); }
.flow__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-azul); color: var(--azul-text); margin-bottom: 14px; }
.flow__step h4 { font-family: var(--font-title); font-size: 1.1rem; margin: 0 0 8px; color: var(--navy); }
.flow__step p { margin: 0; color: var(--text-2); font-size: 0.95rem; }
.flow__step:not(:last-child)::after {
	content: ""; position: absolute; right: -14px; top: 50%; z-index: 2;
	width: 22px; height: 22px; transform: translateY(-50%) rotate(45deg);
	border-top: 3px solid var(--azul); border-right: 3px solid var(--azul); background: transparent;
}
@media (max-width: 860px) {
	.flow { grid-auto-flow: row; }
	.flow__step:not(:last-child)::after { right: 50%; top: auto; bottom: -16px; transform: translateX(50%) rotate(135deg); }
}

/* Jornada 350h (numerada) */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: jstep; }
.journey__item { background: var(--navy); color: #fff; border-radius: var(--radius-card); padding: 26px 20px; position: relative; }
.journey__item h4 { color: #fff; font-family: var(--font-title); font-size: 1.05rem; margin: 12px 0 8px; }
.journey__item p { color: rgba(255,255,255,0.82); margin: 0; font-size: 0.92rem; }
.journey__num { counter-increment: jstep; font-family: var(--font-title); font-weight: 800; font-size: 1.4rem; color: var(--dourado); }
.journey__num::before { content: "0" counter(jstep); }
.journey__icon { color: var(--azul); }
@media (max-width: 860px) { .journey { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .journey { grid-template-columns: 1fr; } }

/* Hub (Motor da Educação Inclusiva) */
.hub { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; }
.hub__col { display: grid; gap: 20px; }
.hub__node { background: #fff; border-radius: var(--radius-card); padding: 18px 20px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--azul); }
.hub__node:nth-child(even) { border-left-color: var(--rosa); }
.hub__node h4 { font-family: var(--font-title); font-size: 1rem; margin: 0 0 4px; }
.hub__node p { margin: 0; font-size: 0.88rem; color: var(--text-2); }
.hub__center { text-align: center; background: linear-gradient(160deg, var(--dourado), #b98d4e); color: #fff; border-radius: 50%; width: 200px; height: 200px; display: grid; place-content: center; padding: 20px; box-shadow: var(--shadow-md); margin: 0 auto; }
.hub__center svg { width: 40px; height: 40px; margin: 0 auto 8px; }
.hub__center strong { font-family: var(--font-title); font-size: 1.15rem; display: block; }
.hub__center span { font-size: 0.82rem; opacity: 0.95; }
@media (max-width: 860px) { .hub { grid-template-columns: 1fr; } .hub__center { order: -1; } }

/* Card acadêmico (FAMERCO) */
.academic { display: grid; grid-template-columns: 1fr 240px; gap: 32px; align-items: center; }
/* Variante em cartão (usada na Home) */
.academic--card { background: #fff; border-radius: var(--radius-card); padding: 44px; box-shadow: var(--shadow-sm); }
@media (max-width: 620px) { .academic--card { padding: 30px 24px; } }
.academic__seal { display: grid; place-items: center; }
.academic__seal .seal { width: 170px; height: 170px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); }
.academic__seal .seal svg { width: 68px; height: 68px; color: var(--dourado); }
.academic ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 12px; }
.academic ul li { display: flex; gap: 12px; align-items: flex-start; }
.academic ul svg { flex: none; width: 20px; height: 20px; color: var(--dourado); margin-top: 3px; }
@media (max-width: 700px) { .academic { grid-template-columns: 1fr; text-align: center; } .academic ul li { text-align: left; } }

/* ---- Linha do tempo (Capacidade Técnica) ---- */
.capacity__stats { display: flex; gap: 32px 60px; flex-wrap: wrap; margin-bottom: 44px; justify-content: center; }
.capacity__stat { display: flex; align-items: center; gap: 16px; text-align: left; }
.capacity__icon {
	flex: none; width: 58px; height: 58px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--bg-azul); color: var(--azul-text);
}
.capacity__icon--dourado { background: var(--bg-dourado); color: var(--dourado-text); }
.capacity__icon svg { width: 30px; height: 30px; }
@media (max-width: 620px) {
	.capacity__stat { flex-direction: column; text-align: center; gap: 10px; }
	.capacity__stats { gap: 32px; }
}
.capacity__stat .big { font-family: var(--font-title); font-weight: 800; font-size: clamp(2.4rem, 1.6rem + 3vw, 3.4rem); color: var(--navy); line-height: 1; }
.capacity__stat .lbl { font-family: var(--font-title); font-weight: 700; color: var(--azul-text); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
/* Linha do tempo VERTICAL com progresso animado pelo scroll */
.timeline { position: relative; margin-top: 36px; padding-top: 8px; }
.timeline::before {
	content: ""; position: absolute; top: 0; bottom: 0; left: 50%;
	width: 3px; margin-left: -1.5px;
	background: var(--bg-azul); border-radius: 3px;
}
.timeline__progress {
	position: absolute; top: 0; left: 50%;
	width: 3px; margin-left: -1.5px; height: 0;
	background: linear-gradient(180deg, var(--azul), var(--rosa) 55%, var(--dourado));
	border-radius: 3px; z-index: 1;
}
.timeline__item {
	position: relative;
	width: calc(50% - 44px);
	background: #fff; border-radius: var(--radius-card);
	box-shadow: var(--shadow-sm);
	padding: 24px;
	margin-bottom: 44px;
	opacity: 0; transform: translateY(28px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow var(--dur) var(--ease);
}
.timeline__item:hover { box-shadow: var(--shadow-md); }
.timeline__item:last-of-type { margin-bottom: 0; }
.timeline__item:nth-of-type(even) { margin-left: auto; }
.timeline__item.is-active { opacity: 1; transform: none; }

/* Pontos sobre a linha central (aparecem quando o progresso os alcança) */
.timeline__item::before {
	content: ""; position: absolute; top: 26px; z-index: 2;
	width: 18px; height: 18px; border-radius: 50%;
	background: #fff; border: 4px solid var(--azul);
	transform: scale(0);
	transition: transform 0.45s var(--ease) 0.1s;
}
.timeline__item.is-active::before { transform: scale(1); }
.timeline__item:nth-of-type(odd)::before { right: -53px; }
.timeline__item:nth-of-type(even)::before { left: -53px; }
.timeline__item:nth-of-type(3n+1)::before { border-color: var(--azul); }
.timeline__item:nth-of-type(3n+2)::before { border-color: var(--rosa); }
.timeline__item:nth-of-type(3n)::before { border-color: var(--dourado); }

/* Logo da instituição parceira no marco da linha do tempo */
.timeline__logo {
	display: flex; align-items: center;
	height: 54px; margin-bottom: 16px;
	padding-bottom: 14px; border-bottom: 1px solid var(--bg-azul);
}
.timeline__logo img {
	max-height: 40px; max-width: 170px; width: auto;
	object-fit: contain; object-position: left center;
}

.timeline__years { font-family: var(--font-title); font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.timeline__org { font-family: var(--font-title); font-weight: 700; color: var(--azul-text); margin: 2px 0 6px; letter-spacing: 0.04em; }
.timeline__item p { margin: 0; color: var(--text-2); font-size: 0.95rem; }

@media (max-width: 760px) {
	.timeline::before, .timeline__progress { left: 8px; margin-left: 0; }
	.timeline__item,
	.timeline__item:nth-of-type(even) { width: auto; margin-left: 34px; margin-right: 0; }
	.timeline__item:nth-of-type(odd)::before,
	.timeline__item:nth-of-type(even)::before { left: -34px; right: auto; }
	.timeline__item { margin-bottom: 28px; padding: 20px; }
}

/* =========================================================================
   22. UX/UI Polish, microinterações, ritmo e legibilidade
   ========================================================================= */

/* Seleção de texto com a cor da marca */
::selection { background: var(--navy); color: #fff; }

/* Títulos equilibrados e parágrafos sem viúvas */
h1, h2, h3 { text-wrap: balance; }
p, .lead { text-wrap: pretty; }
.lead { line-height: 1.7; }

/* Âncoras não escondem o conteúdo sob o header fixo */
section[id], h2[id], h3[id] { scroll-margin-top: calc(var(--header-h-scrolled) + 20px); }

/* Cards com alturas consistentes (clamp de linhas) */
.card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
}
.card__excerpt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.card__meta { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.76rem; }

/* Botões: feedback de pressão + desabilitado */
.btn:active { transform: translateY(0) scale(0.98); }
.btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

/* Formulários: feedback em hover e placeholder legível */
.form-control:hover:not(:focus) { border-color: #97a1b5; }
.form-control::placeholder { color: #8b93a5; opacity: 1; }

/* Header: linha divisória sutil quando rolado */
.site-header.is-scrolled { border-bottom: 1px solid rgba(25, 37, 71, 0.06); }

/* Navegação: item atual mais evidente */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--link); font-weight: 700; }

/* Hero: dots como pílulas (alvo maior, estado claro) */
.hero-dots { gap: 8px; }
.hero-dots button {
	width: 26px; height: 10px; border-radius: var(--radius-pill);
	border: 0; background: rgba(255,255,255,0.45);
	transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}
.hero-dots button:hover { background: rgba(255,255,255,0.75); }
.hero-dots button.is-active { width: 44px; background: #fff; transform: none; }

/* Hero: indicador de rolagem */
.scroll-cue {
	position: absolute; z-index: 3; left: 50%; bottom: 64px; transform: translateX(-50%);
	width: 28px; height: 46px; border: 2px solid rgba(255,255,255,0.65); border-radius: 16px;
	pointer-events: none;
}
.scroll-cue::before {
	content: ""; position: absolute; left: 50%; top: 8px; margin-left: -2px;
	width: 4px; height: 8px; border-radius: 4px; background: #fff;
	animation: cueDrop 1.8s var(--ease) infinite;
}
@keyframes cueDrop { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(16px); } }
@media (max-width: 760px) { .scroll-cue { display: none; } }
@media (prefers-reduced-motion: reduce) { .scroll-cue::before { animation: none; } }

/* Hero no mobile: tela cheia com título reescalado */
@media (max-width: 760px) {
	.hero-slide h1, .hero-slide h2 { font-size: clamp(1.7rem, 1.2rem + 4vw, 2.4rem); }
	.hero-slide__brandmark img { width: min(220px, 62vw); }
}

/* Voltar ao topo */
.back-to-top {
	position: fixed; left: 22px; bottom: 22px; z-index: 890;
	width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
	background: #fff; color: var(--navy); box-shadow: var(--shadow-md);
	display: inline-flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--navy); color: #fff; }
.back-to-top svg { width: 22px; height: 22px; transform: rotate(-90deg); }
@media (max-width: 620px) { .back-to-top { left: 14px; bottom: 14px; width: 44px; height: 44px; } }

/* Rodapé: microinteração nos links (sublinhado deslizante) */
.footer__menu a, .footer__legal a { position: relative; }
.footer__menu a::after, .footer__legal a::after {
	content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 100%;
	background: var(--azul); transform: scaleX(0); transform-origin: left;
	transition: transform var(--dur) var(--ease);
}
.footer__menu a:hover::after, .footer__legal a:hover::after { transform: scaleX(1); }

/* Filtros: pílulas mais táteis (alvo ≥44px) */
.filters a { min-height: 44px; display: inline-flex; align-items: center; }

/* Imagens dos cards: véu sutil no hover reforça clicabilidade */
.card__media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(25,37,71,0.28));
	opacity: 0; transition: opacity var(--dur) var(--ease);
}
.card:hover .card__media::after { opacity: 1; }

/* Números de impacto: dígitos tabulares (contagem sem "pulos") */
.impact__num { font-variant-numeric: tabular-nums; }

/* Página interna: respiro consistente do primeiro bloco */
.page-hero + .section { padding-top: 72px; }

/* Banners internos: assinatura tricolor na base (consistência de marca) */
.page-hero::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; z-index: 2;
	background: linear-gradient(90deg,
		var(--azul) 0 33.33%,
		var(--rosa) 33.33% 66.66%,
		var(--dourado) 66.66% 100%);
}

/* Foco visível também nos controles do hero */
.hero-dots button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }

/* ---- Reforço de hover (botões e seções) ---- */
.btn { position: relative; overflow: hidden; }
.btn::after {
	content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.14);
	transform: translateX(-101%); transition: transform 0.5s var(--ease);
}
.btn:hover::after { transform: translateX(101%); }
.btn > * { position: relative; z-index: 1; }
.card, .pillar, .value-card, .flow__step { will-change: transform; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); border: 0; margin: 0; }
.arrow-link { position: relative; }
