/**
 * _typography.css — Fontes self-hosted (Montserrat) + estilos de texto
 * reutilizáveis confirmados no DESIGN.md (JSON REST API do Figma).
 *
 * DECISÃO DE ARQUITETURA (PRD.md/DESIGN.md): Montserrat self-hosted,
 * SEM Google Fonts CDN — arquivos woff2 em assets/fonts/montserrat/.
 * font-display: swap em todos os pesos, preload do peso Bold (crítico
 * para o hero) feito via wp_enqueue_style + link rel=preload, ver
 * inc/enqueue.php.
 */

@font-face {
	font-family: 'Montserrat';
	src: url( '../../fonts/montserrat/montserrat-variable.woff2' ) format( 'woff2' );
	font-weight: 400 800;
	font-style: normal;
	font-display: swap;
}

/* =============================================================
 * Eyebrow — label pequeno com letter-spacing, confirmado no DESIGN.md
 * (18px Medium 500, letterSpacing 2.16px). Reutilizado em todas as
 * páginas ("Últimas notícias", "QUEM SOMOS", "COMO ATUAMOS", etc.).
 * ============================================================= */
.fbb-eyebrow {
	display: block;
	font-family: var( --fbb-font-family );
	font-weight: var( --fbb-font-weight-medium );
	font-size: 18px;
	letter-spacing: 2.16px;
	line-height: 1.22;
	color: var( --fbb-color-navy );
	margin: 0 0 12px;
}

.fbb-eyebrow--red {
	color: var( --fbb-color-red );
}

.fbb-eyebrow--sm {
	font-size: 13px;
	letter-spacing: 1.5px;
}

.fbb-eyebrow--light {
	color: var( --fbb-color-white );
}

.fbb-eyebrow--yellow {
	color: var( --fbb-color-yellow );
}

/* Primitivas editoriais compartilhadas pelas páginas institucionais. */
.fbb-page-eyebrow {
	margin: 0 0 12px;
	color: var( --fbb-color-red );
	font-size: 12px;
	font-weight: var( --fbb-font-weight-extrabold );
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.fbb-page-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin-bottom: 24px;
	color: #8A8A8A;
	font-size: 12px;
	line-height: 1.5;
}

.fbb-page-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.fbb-page-breadcrumb a:hover,
.fbb-page-breadcrumb a:focus-visible {
	color: var( --fbb-color-navy );
	text-decoration: underline;
}

/* =============================================================
 * Heading de seção — 48px Bold, confirmado no DESIGN.md.
 * ============================================================= */
.fbb-section__title {
	font-family: var( --fbb-font-family );
	font-weight: var( --fbb-font-weight-bold );
	font-size: var( --fbb-section-title-size, 48px );
	line-height: 1.208; /* 58px sobre 48px. */
	color: var( --fbb-color-navy );
	margin: 0;
}

.fbb-section__header {
	text-align: center;
	margin-bottom: 56px;
}

.fbb-section__header--left {
	text-align: left;
	max-width: 720px;
}

.fbb-section__header--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	text-align: left;
	max-width: none;
}

.fbb-section__title--40 {
	font-size: var( --fbb-section-title-small-size, 40px );
}

.fbb-section__title--36 {
	font-size: 36px;
}

@media ( max-width: 767px ) {
	.fbb-section__title,
	.fbb-section__title--40,
	.fbb-section__title--36 {
		font-size: var( --fbb-section-title-size, 28px );
	}

	.fbb-section__header--split {
		flex-direction: column;
		align-items: flex-start;
	}
}
