/* Fonte padrão de todos os widgets do plugin */
.cau-cards-widget,
.cau-steps-widget,
.cau-topics-widget,
.cau-flow-widget,
.cau-indicators-widget,
.cau-normas-widget,
.cau-cards-widget h3,
.cau-steps-widget h3,
.cau-topics-widget h3,
.cau-flow-widget h3,
.cau-indicators-widget h3,
.cau-normas-widget h3 {
	font-family: 'Manrope', sans-serif;
}

.cau-cards-widget {
	--cau-card-radius: 14px;
	padding-top: 42px; /* respiro para o badge que sobrepõe o topo */
}

/* Grade dos 3 cards */
.cau-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: stretch;
}

/* Card */
.cau-card {
	position: relative;
	background-color: #eef4f6;
	border-radius: var(--cau-card-radius);
	padding: 90px 30px 40px;
	overflow: visible;
}

/* Border-top (imagem) */
.cau-card__border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-top-left-radius: var(--cau-card-radius);
	border-top-right-radius: var(--cau-card-radius);
}

/* Badge do ícone */
.cau-card__icon {
	position: absolute;
	top: 0;
	left: 40px;
	transform: translateY(-50%);
	width: 74px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.cau-card__icon svg,
.cau-card__icon i {
	font-size: 34px;
	width: 34px;
	height: 34px;
	line-height: 1;
	fill: currentColor;
	color: currentColor;
}

/* Corpo */
.cau-card__title {
	margin: 0 0 22px;
	font-size: 22px;
	font-weight: 600;
	color: #1b3a4b;
	line-height: 1.2;
}

.cau-card__text {
	color: #1b3a4b;
	line-height: 1.6;
}

.cau-card__text p {
	margin: 0 0 1em;
}

.cau-card__text p:last-child {
	margin-bottom: 0;
}

/* Lista com ícone */
.cau-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cau-card__list-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
}

.cau-card__list-item:last-child {
	margin-bottom: 0;
}

.cau-card__list-icon {
	flex: 0 0 auto;
	display: inline-flex;
	margin-top: 3px;
	color: #1c4587;
}

.cau-card__list-icon svg,
.cau-card__list-icon i {
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 1;
	fill: currentColor;
	color: currentColor;
}

.cau-card__list-text {
	color: #1b3a4b;
	line-height: 1.5;
}

/* Caixa de destaque */
.cau-cards__note {
	margin-top: 28px;
	padding: 30px 40px;
	border: 1px solid #ddd;
	border-radius: 12px;
	background-color: #f2f2f2;
	color: #1b3a4b;
	text-align: center;
	line-height: 1.6;
}

.cau-cards__note p {
	margin: 0 0 1em;
}

.cau-cards__note p:last-child {
	margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 1024px) {
	.cau-cards {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Variação 2: Cards numerados (etapas do processo)
   ========================================================= */
.cau-steps-widget {
	padding-top: 34px; /* respiro para o número que sobrepõe o topo */
}

.cau-steps__heading {
	margin: 0 0 36px;
	text-align: center;
	color: #172f17;
	font-family: 'Manrope', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
}

.cau-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 22px;
	align-items: stretch;
}

.cau-step {
	position: relative;
	background: #ffffff;
	border: 1px solid #e6e6e6;
	border-radius: 16px;
	padding: 52px 24px 30px;
	text-align: center;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.cau-step__num {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 54px;
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	color: #ffffff;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cau-step__title {
	margin: 0 0 14px;
	color: #3f6f57;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.cau-step__text {
	color: #333333;
	line-height: 1.6;
}

.cau-step__text p {
	margin: 0 0 1em;
}

.cau-step__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.cau-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.cau-steps {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Variação 3: Tópicos numerados em grade (badge à direita)
   ========================================================= */
.cau-topics-widget {
	padding-top: 32px; /* respiro para o badge que sobrepõe o topo */
}

.cau-topics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 26px;
	row-gap: 56px;
	align-items: stretch;
}

.cau-topic {
	position: relative;
	background-color: #f4f2ed;
	border: 1px solid #e3e0d8;
	border-radius: 12px;
	padding: 34px 30px 30px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.cau-topic__border {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.cau-topic__num {
	position: absolute;
	top: 0;
	right: 28px;
	transform: translateY(-50%);
	width: 62px;
	height: 62px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	color: #f0ece2;
	font-weight: 800;
	font-size: 26px;
	line-height: 1;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.cau-topic__title {
	margin: 0 0 12px;
	color: #172f17;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
}

.cau-topic__text {
	color: #333333;
	line-height: 1.55;
}

.cau-topic__text p {
	margin: 0 0 1em;
}

.cau-topic__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.cau-topics {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.cau-topics {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Variação 4: Fluxo do processo (cards conectados por setas)
   ========================================================= */
.cau-flow {
	display: flex;
	align-items: stretch;
}

.cau-flow__step {
	flex: 1 1 0;
	min-width: 0;
	background-color: #f2f1ee;
	border: 2px solid #3572b0;
	border-radius: 12px;
	padding: 24px 14px;
	text-align: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.cau-flow__arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	color: #3572b0;
}

.cau-flow__arrow svg {
	width: 22px;
	height: 22px;
	display: block;
}

.cau-flow__num {
	display: block;
	color: #164381;
	font-weight: 800;
	font-size: 24px;
	line-height: 1;
	margin-bottom: 12px;
}

.cau-flow__title {
	margin: 0 0 10px;
	color: #3f6f57;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
}

.cau-flow__text {
	color: #333333;
	font-size: 14px;
	line-height: 1.5;
}

.cau-flow__text p {
	margin: 0 0 1em;
}

.cau-flow__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.cau-flow {
		flex-direction: column;
	}

	.cau-flow__arrow {
		padding: 8px 0;
	}

	.cau-flow__arrow svg {
		transform: rotate(90deg);
	}
}

/* =========================================================
   Variação 5: Indicadores de fiscalização (stat cards)
   ========================================================= */
.cau-indicators {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	align-items: stretch;
}

.cau-indicator {
	background-color: #f3faf5;
	border-radius: 16px;
	padding: 30px 28px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.cau-indicator__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.cau-indicator__headings {
	min-width: 0;
}

.cau-indicator__title {
	margin: 0 0 14px;
	color: #164381;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.cau-indicator__value {
	color: #172f17;
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
}

.cau-indicator__icon {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
}

.cau-indicator__icon svg {
	width: 36px;
	height: 36px;
	fill: currentColor;
	color: currentColor;
}

.cau-indicator__icon i {
	font-size: 36px;
	line-height: 1;
	color: currentColor;
}

.cau-indicator__divider {
	display: block;
	width: 78%;
	height: 4px;
	margin: 18px 0;
	border-radius: 2px;
	background: linear-gradient(90deg, #164381 0%, rgba(0, 0, 0, 0.06) 100%);
}

.cau-indicator__text {
	color: #1e2a1e;
	line-height: 1.55;
}

.cau-indicator__text p {
	margin: 0 0 1em;
}

.cau-indicator__text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.cau-indicators {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.cau-indicators {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   Variação 6: Base normativa (aba de título + link Acessar)
   ========================================================= */
.cau-normas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 38px;
	row-gap: 48px;
	align-items: stretch;
}

.cau-norma {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.cau-norma__head {
	position: relative;
	height: 86px;
	flex: 0 0 auto;
}

.cau-norma__tab {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 58%;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% 100%;
}

.cau-norma__line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 58%;
	height: 6px;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100% 100%;
}

.cau-norma__title {
	position: relative;
	margin: 0;
	padding: 24px 40% 0 36px;
	color: #172f17;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.15;
}

.cau-norma__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 34px 26px;
}

.cau-norma__text {
	color: #164381;
	font-size: 18px;
	line-height: 1.5;
}

.cau-norma__text p {
	margin: 0 0 1em;
}

.cau-norma__text p:last-child {
	margin-bottom: 0;
}

.cau-norma__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-end;
	margin-top: auto;
	padding-top: 18px;
	color: #164381;
	font-weight: 800;
	font-size: 17px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s ease;
}

.cau-norma__link:hover {
	color: #0f2f5c;
}

.cau-norma__link svg {
	width: 20px;
	height: 20px;
	display: block;
}

@media (max-width: 900px) {
	.cau-normas {
		grid-template-columns: 1fr;
	}

	.cau-norma__title {
		padding-right: 30%;
	}
}

/* =========================================================
   Variação 7: Mapa interativo (Brasil por UF)
   ========================================================= */
.cau-map-widget {
	font-family: 'Manrope', sans-serif;
}

.cau-map__title {
	margin: 0 0 30px;
	color: #172f17;
	font-family: 'Manrope', sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
}

.cau-map {
	display: grid;
	grid-template-columns: var(--cau-map-panel, 280px) 1fr;
	gap: 40px;
	align-items: center;
}

/* Painel de textos e filtros */
.cau-map__panel {
	color: #1e2a1e;
	font-size: 18px;
	line-height: 1.5;
}

.cau-map__instruction {
	margin: 0 0 56px;
}

.cau-map__period-label {
	margin: 0 0 22px;
}

.cau-map__field {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 8px;
}

.cau-map__field label {
	flex: 0 0 auto;
}

.cau-map__year,
.cau-map__month {
	border: 1.5px solid #164381;
	border-radius: 10px;
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.35);
	color: #164381;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.cau-map__year:focus,
.cau-map__month:focus {
	outline: 2px solid rgba(22, 67, 129, 0.35);
	outline-offset: 1px;
}

.cau-map__or {
	margin: 10px 0 12px;
}

/* Seletor de ano via shortcode [cau_mapa_ano] (colocado acima do mapa) */
.cau-year-select {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 0 0 18px;
	color: #1e2a1e;
	font-size: 16px;
}

.cau-year-select label {
	font-weight: 600;
}

.cau-year-select__field {
	border: 1.5px solid #164381;
	border-radius: 10px;
	padding: 10px 14px;
	background: #fff;
	color: #164381;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

.cau-year-select__field:focus {
	outline: 2px solid rgba(22, 67, 129, 0.35);
	outline-offset: 1px;
}

/* Select interno do widget quando existe um seletor global */
.cau-map__year.is-hidden {
	display: none;
}

/* Mapa */
.cau-map__svg svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.cau-map__region {
	cursor: pointer;
	outline: none;
}

.cau-map__region path {
	fill: #eef4ec;
	stroke: #b5cdb7;
	stroke-width: 0.8;
	transition: fill 0.15s ease;
}

.cau-map__region:hover path,
.cau-map__region.is-active path {
	fill: #164381;
}

.cau-map__region:focus-visible path {
	stroke: #164381;
	stroke-width: 1.6;
}

.cau-map__label {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	fill: #172f17;
	pointer-events: none;
	transition: fill 0.15s ease;
}

.cau-map__label.is-hover,
.cau-map__label.is-active {
	fill: #ffffff;
}

@media (max-width: 900px) {
	.cau-map {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.cau-map__instruction {
		margin-bottom: 20px;
	}

	.cau-map__period-label {
		margin-bottom: 14px;
	}

	/* O SVG escala junto com a tela; aumenta as siglas para
	   continuarem legiveis no mobile. */
	.cau-map__label {
		font-size: 20px;
	}

	.cau-map__field {
		flex-wrap: wrap;
	}

	.cau-map__year,
	.cau-map__month {
		flex: 1 1 auto;
		max-width: 260px;
	}
}

/* =========================================================
   Variação 6b: Materiais educativos (aba navy, 3 colunas)
   Escopo via classe de widget do Elementor; controles do
   painel continuam sobrepondo estes padrões.
   ========================================================= */
.elementor-widget-cau_materials .cau-normas {
	grid-template-columns: repeat(3, 1fr);
}

.elementor-widget-cau_materials .cau-norma__title {
	color: #bccbdc;
}

@media (max-width: 900px) {
	.elementor-widget-cau_materials .cau-normas {
		grid-template-columns: 1fr;
	}
}

/* Ajuste mobile das abas de título (Base Normativa / Materiais) */
@media (max-width: 640px) {
	.cau-norma__tab,
	.cau-norma__line {
		width: 78%;
	}

	.cau-norma__title {
		padding-right: 26%;
		font-size: 22px;
	}
}

/* =========================================================
   Variação 8: Indicadores estratégicos (slider)
   ========================================================= */
.cau-strat {
	position: relative;
	background-color: #ffffff;
	border-radius: 24px;
	padding: 56px 40px 36px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
	font-family: 'Manrope', sans-serif;
	outline: none;
}

.cau-strat__viewport {
	overflow: hidden;
}

.cau-strat__track {
	display: flex;
	transition: transform 0.45s ease;
}

.cau-strat__slide {
	flex: 0 0 100%;
	min-width: 0;
	text-align: center;
}

.cau-strat__label {
	color: #164381;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.cau-strat__value {
	color: #164381;
	font-size: 92px;
	font-weight: 800;
	line-height: 1.05;
}

.cau-strat__value-label {
	color: #1e2a1e;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
}

.cau-strat__divider {
	display: block;
	width: 56%;
	max-width: 700px;
	height: 5px;
	margin: 30px auto 40px;
	border-radius: 3px;
	background: linear-gradient(90deg, #164381 0%, rgba(0, 0, 0, 0.05) 100%);
}

.cau-strat__subs {
	display: flex;
	justify-content: center;
	gap: 12%;
	flex-wrap: wrap;
}

.cau-strat__sub {
	color: #4a7c4e;
	min-width: 180px;
}

.cau-strat__sub-value {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.1;
}

.cau-strat__sub-label {
	font-size: 19px;
	font-weight: 700;
}

/* Navegação */
.cau-strat__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 44px;
}

.cau-strat__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #164381;
	cursor: pointer;
}

.cau-strat__arrow svg {
	width: 22px;
	height: 22px;
}

.cau-strat__dots {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cau-strat__dot {
	width: 22px;
	height: 22px;
	padding: 0;
	border: 2.5px solid #164381;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cau-strat__dot.is-active {
	background-color: #b8d4bb;
	border-color: #b8d4bb;
}

@media (max-width: 640px) {
	.cau-strat {
		padding: 36px 20px 26px;
	}

	.cau-strat__label {
		font-size: 19px;
	}

	.cau-strat__value {
		font-size: 58px;
	}

	.cau-strat__value-label {
		font-size: 20px;
	}

	.cau-strat__divider {
		margin: 22px auto 26px;
	}

	.cau-strat__subs {
		gap: 22px;
	}

	.cau-strat__sub-value {
		font-size: 38px;
	}

	.cau-strat__sub-label {
		font-size: 16px;
	}

	.cau-strat__nav {
		margin-top: 30px;
	}

	.cau-strat__dot {
		width: 16px;
		height: 16px;
		border-width: 2px;
	}
}

/* Materiais educativos: aba mais larga e título menor (cards em 3 colunas
   são mais estreitos que os da Base Normativa) */
.elementor-widget-cau_materials .cau-norma__tab,
.elementor-widget-cau_materials .cau-norma__line {
	width: 72%;
}

.elementor-widget-cau_materials .cau-norma__title {
	font-size: 17px;
	padding: 28px 30% 0 26px;
}

.elementor-widget-cau_materials .cau-norma__head {
	height: 76px;
}

/* =========================================================
   Variação 9: Campo de busca (busca nativa do WordPress)
   Compartilhado pelo widget Elementor "Busca" e pela página
   de resultados de busca (search.php do child theme).
   ========================================================= */
.cau-search-widget {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	font-family: 'Manrope', sans-serif;
}

.cau-search {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 420px;
	height: 48px;
	background-color: #ffffff;
	border: 1px solid #d3dde8;
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cau-search:focus-within {
	border-color: #164381;
	box-shadow: 0 0 0 3px rgba(22, 67, 129, 0.12);
}

.cau-search__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	margin: 0;
	padding: 0 6px 0 18px;
	border: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	font-family: inherit;
	font-size: 16px;
	color: #1b3a4b;
	line-height: 1.2;
}

.cau-search__input:focus {
	outline: 0;
	box-shadow: none;
}

.cau-search__input::placeholder {
	color: #8aa0b6;
	opacity: 1;
}

/* Remove o "x" nativo do type=search para manter o visual limpo. */
.cau-search__input::-webkit-search-decoration,
.cau-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
}

.cau-search__btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #164381;
	cursor: pointer;
	transition: color 0.2s ease;
}

.cau-search__btn:hover,
.cau-search__btn:focus {
	color: #0f2f5c;
}

.cau-search__btn svg {
	width: 20px;
	height: 20px;
	display: block;
}

/* Rótulo acessível apenas para leitores de tela. */
.cau-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* =========================================================
   Variação 10: Página de Materiais Educativos (accordion)
   Cards no padrão do widget "Materiais Educativos" (aba navy +
   filete), em coluna única e expansíveis. Usado tanto na página
   (template) quanto no single do CPT material-educativo.
   ========================================================= */
.cau-materiais-page {
	font-family: 'Manrope', sans-serif;
	color: #1b3a4b;
	background-color: #e5e5e5;
}

/* Faixa de topo (título da página) — largura total */
.cau-materiais-page__hero {
	background-color: #9bb8c5;
	padding: 20px;
}

.cau-materiais-page__hero-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 980px;
	min-height: 44px;
	margin: 0 auto;
}

.cau-materiais-page__back {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #164381;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.cau-materiais-page__back:hover {
	color: #0f2f5c;
	text-decoration: underline;
}

.cau-materiais-page__back svg {
	width: 18px;
	height: 18px;
}

.cau-materiais-page__title {
	margin: 0;
	text-align: center;
	color: #172f17;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.15;
}

/* Corpo — fundo cinza, largura total */
.cau-materiais-page__body {
	padding: 44px 20px 80px;
}

.cau-materiais-page__inner {
	max-width: 980px;
	margin: 0 auto;
}

.cau-materiais-page__intro {
	max-width: 760px;
	margin: 0 auto 42px;
	text-align: center;
	color: #164381;
	font-size: 16px;
	line-height: 1.6;
}

.cau-materiais-page__intro p {
	margin: 0 0 0.6em;
}

.cau-materiais-page__intro p:last-child {
	margin-bottom: 0;
}

/* Accordion */
.cau-mat-accordion {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.cau-mat-item {
	background-color: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(18, 50, 79, 0.08);
}

/* Cabeçalho clicável (aba navy + título + filete + seta) */
.cau-mat-head {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 60px;
	margin: 0;
	padding: 0 22px 0 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
}

.cau-mat-head__tab {
	position: absolute;
	top: -10px;
	left: 0;
	bottom: 0;
	width: min(27%, 400px);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% 100%;
	pointer-events: none;
}

.cau-mat-head__title {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0 12px 0 30px;
	max-width: min(46%, 360px);
	color: #cfe0ef;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cau-mat-head__toggle {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	margin-left: auto;
	display: inline-flex;
	color: #164381;
	transition: transform 0.25s ease;
}

.cau-mat-head__toggle svg {
	width: 22px;
	height: 22px;
	display: block;
}

.cau-mat-item.is-open .cau-mat-head__toggle {
	transform: rotate(180deg);
}

/* Painel expansível — animação robusta por grid-template-rows (0fr -> 1fr).
   Não depende de JS medir altura, então funciona com qualquer conteúdo,
   com a fonte da acessibilidade aumentada e sem sobreposição de texto. */
.cau-mat-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.32s ease;
}

.cau-mat-item.is-open .cau-mat-panel {
	grid-template-rows: 1fr;
}

.cau-mat-panel__inner {
	min-height: 0;
	overflow: hidden;
}

/* Área de conteúdo: cresce até o conteúdo inteiro (sem rolagem/barra). */
.cau-mat-body {
	padding: 16px 34px 30px;
}

.cau-mat-body h3 {
	margin: 6px 0 18px;
	color: #12324f;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.cau-mat-body ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cau-mat-body li {
	position: relative;
	margin: 0 0 14px;
	padding: 0 0 0 18px;
	color: #3f4f5f;
	font-size: 15px;
	line-height: 1.55;
}

.cau-mat-body li:last-child {
	margin-bottom: 0;
}

.cau-mat-body li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #1c4587;
}

.cau-mat-body li strong,
.cau-mat-body h3 strong {
	color: #12324f;
}

.cau-mat-body a {
	color: #1c4587;
}

/* Variante estática (single): sempre aberto. */
.cau-mat-item--static .cau-mat-head {
	cursor: default;
}

.cau-mat-item--static .cau-mat-panel {
	grid-template-rows: 1fr;
}

.cau-mat-item--static .cau-mat-body {
	max-height: none;
	overflow: visible;
}

/* ---------------------------------------------------------
   Variante Base Normativa: aba tan (que se ajusta ao título)
   + filete ciano no topo + título verde-escuro + descrição azul.
   --------------------------------------------------------- */
/* Base do card com "aba" em paralelogramo (clip-path) que se ajusta ao título.
   Usado por Base Normativa e por Perguntas Frequentes. A cor da aba/título e o
   filete vêm das variantes (--normativa / --faq). */
.cau-mat-item--normativa,
.cau-mat-item--faq {
	position: relative;
}

.cau-mat-head--tab {
	display: flex;
	align-items: stretch;
	padding: 0 22px 0 0;
}

.cau-mat-head--tab .cau-mat-head__toggle {
	align-self: center;
}

.cau-mat-tab {
	display: inline-flex;
	align-items: center;
	min-height: 58px;
	max-width: 74%;
	padding: 0 46px 0 30px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 34px) 100%, 0 100%);
}

.cau-mat-tab__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

/* ---- Variante Base Normativa: aba tan + filete Asset-40 + título verde ---- */
.cau-mat-item--normativa::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background-image: url(/wp-content/uploads/2026/07/Asset-40.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100% 100%;
	z-index: 2;
}

.cau-mat-item--normativa .cau-mat-tab {
	background-color: #d3ccc0;
}

.cau-mat-item--normativa .cau-mat-tab__title {
	color: #172f17;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cau-mat-item--normativa .cau-mat-body > p:first-child {
	margin: 4px 0 18px;
	color: #164381;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.cau-mat-item--normativa .cau-mat-body li {
	color: #2b4a63;
}

.cau-mat-item--normativa .cau-mat-body li strong {
	color: #12324f;
}

/* ---- Variante FAQ: aba AZUL; a pergunta quebra linha para não ser cortada -- */
.cau-mat-item--faq .cau-mat-tab {
	background-color: #164381;
	max-width: 80%;
	padding: 12px 46px 12px 30px;
}

.cau-mat-item--faq .cau-mat-tab__title {
	color: #eaf1f8;
	font-size: 17px;
	white-space: normal;
	line-height: 1.3;
}

@media (max-width: 600px) {
	.cau-materiais-page__hero {
		padding: 16px;
	}

	.cau-materiais-page__hero-inner {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		min-height: 0;
	}

	.cau-materiais-page__back {
		position: static;
		transform: none;
	}

	.cau-materiais-page__body {
		padding: 30px 16px 60px;
	}

	.cau-materiais-page__title {
		font-size: 22px;
	}

	.cau-mat-head__tab {
		width: min(62%, 300px);
	}

	.cau-mat-head__title {
		max-width: 58%;
		font-size: 16px;
		padding-left: 22px;
	}

	.cau-mat-tab {
		max-width: 82%;
		min-height: 50px;
		padding: 0 34px 0 20px;
	}

	.cau-mat-tab__title {
		font-size: 15px;
	}

	.cau-mat-body {
		padding: 10px 22px 24px;
	}
}

/* =========================================================
   Variação 11: Página interna de Fiscalização (single UF)
   Faixa + banner (Asset-41 gradiente) + cards; mapa do Brasil
   destacando o estado atual.
   ========================================================= */
.cau-fisc-page {
	font-family: 'Manrope', sans-serif;
	color: #1b3a4b;
}

/* Banner com o gradiente (Asset-41.svg) */
.cau-fisc-banner {
	background-color: #164381;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.cau-fisc-banner__inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 3rem;
}

.cau-fisc-banner__title {
	margin: 0 0 4px;
	color: #ffffff;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.15;
}

.cau-fisc-banner__sub {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 25px;
}

/* Corpo (fundo areia) */
.cau-fisc-body {
	background-color: #d6d1c7;
	padding: 40px 20px 80px;
}

.cau-fisc-inner {
	max-width: 980px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* Card */
.cau-fisc-card {
	position: relative;
	background-color: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(18, 50, 79, 0.10);
}

.cau-fisc-card__head {
	position: relative;
	display: flex;
}

/* Aba navy que se ajusta ao título */
.cau-fisc-card__tab {
	display: inline-flex;
	align-items: center;
	min-height: 56px;
	padding: 20px 58px 15px 38px;
	background-color: #164381;
	color: #ffffff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	clip-path: polygon(0 0, 100% 0, calc(100% - 34px) 100%, 0 100%);
}



/* Conteúdo da Caracterização: info + mapa */
.cau-fisc-carac {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 24px;
	align-items: center;
	padding: 10px 34px 34px;
}

.cau-fisc-carac__info {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding-left: 8px;
}

.cau-fisc-stat__label {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #447743;
}

.cau-fisc-stat__value {
	display: block;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.1;
	color: #164381; /* todos os valores em azul; os rótulos ficam verdes */
}

/* Mapa */
.cau-fisc-map {
	width: 100%;
}

.cau-fisc-map svg {
	display: block;
	width: 100%;
	height: auto;
}

.cau-fisc-map path {
	fill: #d4e2d0;
	stroke: #bccdba;
	stroke-width: 0.8;
}

.cau-fisc-map path.is-active {
	fill: #164381;
	stroke: #164381;
}

@media (max-width: 780px) {
	.cau-fisc-carac {
		grid-template-columns: 1fr;
	}

	.cau-fisc-map {
		max-width: 420px;
		margin: 0 auto;
	}

	.cau-fisc-banner__title {
		font-size: 23px;
	}
}

/* ---- Seção (título centralizado + divisor) ---- */
.cau-fisc-section__title {
	margin: 0 0 8px;
	text-align: center;
	color: #12324f;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
}

.cau-fisc-section__divider {
	display: block;
	width: 220px;
	height: 4px;
	margin: 0 auto 30px;
	border-radius: 2px;
	background: linear-gradient(90deg, #164381 0%, rgba(0, 0, 0, 0.06) 100%);
}

/* ---- Métricas Principais (6 cards) ---- */
.cau-fisc-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.cau-fisc-metric {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 18px 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f3faf6 100%);
	border: 1px solid #e6efe9;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(18, 50, 79, 0.05);
	overflow: hidden;
}

.cau-fisc-metric::after {
	content: '';
	position: absolute;
	left: 22px;
	bottom: 0;
	width: 60px;
	height: 3px;
	background-color: #164381;
}

.cau-fisc-metric__info {
	min-width: 0;
}

.cau-fisc-metric__label {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #164381;
	line-height: 1.2;
}

.cau-fisc-metric__value {
	display: block;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;
	color: #12324f;
	overflow-wrap: anywhere;
}

.cau-fisc-metric__icon {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: #ffffff;
}

.cau-fisc-metric__icon svg {
	width: 26px;
	height: 26px;
	display: block;
}

@media (max-width: 900px) {
	.cau-fisc-metrics {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 560px) {
	.cau-fisc-metrics {
		grid-template-columns: 1fr;
	}
}
/* ---- Ajustes: bandas (Métricas #A2B6C6) + divisor Asset-29 + labels do mapa ---- */
.cau-fisc-body { padding: 40px 20px 44px; }
.cau-fisc-wrap { max-width: 980px; margin: 0 auto; }

.cau-fisc-metricas {
	background-color: #a2b6c6;
	padding: 46px 20px 54px;
}

.cau-fisc-section__title {
	font-size: 34px;
	color: #172f17;
}

.cau-fisc-section__title--left {
	text-align: left;
}

.cau-fisc-section__divider {
	width: min(380px, 72%);
	height: 5px;
	background: none;
	background-image: url(/wp-content/uploads/2026/07/Asset-29.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 100% 100%;
	border-radius: 0;
}

.cau-fisc-metric::after {
	left: 22px;
	right: 36%;
	width: auto;
}

/* Siglas das UFs no mapa (verde escuro; branco na UF ativa) */
.cau-fisc-map__label {
	font-family: 'Manrope', sans-serif;
	font-size: 13px;
	font-weight: 700;
	fill: #3f6a45;
	pointer-events: none;
}

.cau-fisc-map__label.is-active {
	fill: #ffffff;
}

/* ---- Sanções Aplicadas (banda cinza) ---- */
.cau-fisc-sancoes {
	background-color: #e5e5e5;
	padding: 46px 20px 56px;
}

.cau-fisc-sancoes__top {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 30px;
}

.cau-fisc-sancoes__total {
	flex: 0 0 auto;
	min-width: 210px;
	padding: 22px 30px;
	background-color: #ffffff;
	border-radius: 14px;
	text-align: center;
	border: solid 1px #164381;
	box-shadow: 0 10px 24px rgba(18, 50, 79, 0.08);
}

.cau-fisc-sancoes__total-num {
	display: block;
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
	color: #164381;
}

.cau-fisc-sancoes__total-label {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #164381;
}

.cau-fisc-sancoes__head {
	flex: 1 1 auto;
	min-width: 0;
}

.cau-fisc-sancoes__head .cau-fisc-section__divider {
	margin: 10px 0 0;
	width: min(520px, 100%);
}

.cau-fisc-sancoes__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.cau-fisc-sancao {
	padding: 18px 20px 20px;
	background-color: transparent;
	border: 1px solid #b9c9dc;
	border-radius: 12px;
}

.cau-fisc-sancao__label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #164381;
}

.cau-fisc-sancao__value {
	display: block;
	margin: 4px 0 14px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	color: #172f17;
}

.cau-fisc-sancao__bar {
	height: 8px;
	border-radius: 6px;
	background-color: #dfe6ee;
	overflow: hidden;
}

.cau-fisc-sancao__bar > span {
	display: block;
	height: 100%;
	border-radius: 6px;
	background-color: #164381;
}

.cau-fisc-sancao__pct {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: #5a6b7b;
}

@media (max-width: 900px) {
	.cau-fisc-sancoes__grid { grid-template-columns: repeat(2, 1fr); }
	.cau-fisc-sancoes__top { flex-direction: column; align-items: stretch; gap: 20px; }
}

@media (max-width: 560px) {
	.cau-fisc-section__title { font-size: 26px; }
	.cau-fisc-sancoes__grid { grid-template-columns: 1fr; }
}
/* ---- Denúncias (banda dourada; acento vermelho Asset-40) ---- */
.cau-fisc-denuncias {
	background-color: #D4BF80;
	padding: 56px 20px 56px;
}

.cau-fisc-section__divider--red {
	background-image: url(/wp-content/uploads/2026/07/Asset-40.png);
}

.cau-fisc-denuncias__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.cau-fisc-denuncia {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 22px 22px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
	overflow: hidden;
}

.cau-fisc-denuncia::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background-image: url(/wp-content/uploads/2026/07/Asset-40.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.cau-fisc-denuncia__info {
	min-width: 0;
}

.cau-fisc-denuncia__label {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #164381;
	line-height: 1.2;
}

.cau-fisc-denuncia__value {
	display: block;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	color: #12324f;
}

.cau-fisc-denuncia__icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	color: #ffffff;
}

.cau-fisc-denuncia__icon svg {
	width: 24px;
	height: 24px;
	display: block;
}

@media (max-width: 900px) {
	.cau-fisc-denuncias__grid { grid-template-columns: 1fr; }
}
/* Denúncia: ícone no topo-direita; label/valor na base do card */
.cau-fisc-denuncia {
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 0;
	min-height: 90px;
}

.cau-fisc-denuncia__icon {
	position: absolute;
	top: 18px;
	right: 20px;
}
/* ---- Indicadores Estratégicos (banda verde Asset-38; fita Asset-7) ---- */
.cau-fisc-indicadores {
	background-image: url(/wp-content/uploads/2026/07/Asset-38.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 46px 20px 58px;
}

.cau-fisc-section__divider--fita {
	background-image: url(/wp-content/uploads/2026/07/Asset-7.svg);
}

.cau-fisc-ind-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

/* Cards do painel por UF dentro de "Indicadores Estratégicos" */
.cau-fisc-metrics--estrategicos {
	margin-top: 30px;
}

.cau-fisc-ind {
	position: relative;
	min-height: 122px;
	padding: 20px 22px 22px;
	background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
	border-radius: 12px;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.cau-fisc-ind__icon {
	position: absolute;
	top: 18px;
	right: 20px;
	width: 48px;
	height: 48px;
	display: block;
}

.cau-fisc-ind__label {
	display: block;
	max-width: calc(100% - 62px);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #164381;
	line-height: 1.25;
}

.cau-fisc-ind__value {
	display: block;
	margin: 12px 0 12px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	color: #172f17;
}

.cau-fisc-ind__bar {
	height: 8px;
	border-radius: 6px;
	background-color: #dfe6ee;
	overflow: hidden;
}

.cau-fisc-ind__bar > span {
	display: block;
	height: 100%;
	border-radius: 6px;
	background-color: #164381;
}

/* ---- Banda "Voltar para página inicial" (fundo do header Asset-24) ---- */
.cau-fisc-voltar {
	background-image: url(/wp-content/uploads/2026/07/Asset-24.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 34px 20px;
	text-align: center;
}

.cau-fisc-voltar__btn {
	display: inline-block;
	padding: 12px 32px;
	border: 1.5px solid rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	background-color: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.cau-fisc-voltar__btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

/* ---- Correção do ícone da Denúncia: linha vermelha via fundo (sem overflow
       que cortava o ícone) + ícone sobe acima do card ---- */
.cau-fisc-denuncia {
	overflow: visible;
	background:
		url(/wp-content/uploads/2026/07/Asset-40.png) left top / 100% 4px no-repeat,
		linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

.cau-fisc-denuncia::before {
	content: none;
}

.cau-fisc-denuncia__icon {
	top: -14px;
	margin-top: 0 !important;
	z-index: 3;
}

@media (max-width: 900px) {
	.cau-fisc-ind-grid { grid-template-columns: 1fr; }
}