/* Banner do Mapa (Home) — layout 22:9 por container query; empilha abaixo de 900 px de largura do bloco.
   Paleta oficial: Azul Petróleo #123B4A · Dourado Suave #D4A853 · Off White #F4F0E8 · Texto #24292C. */
.vmb-wrap { container-type: inline-size; width: 100%; max-width: 2200px; margin: 0 auto; }
.vmb {
	--vmb-p: #123B4A; --vmb-o: #D4A853; --vmb-ot: #8A6415; --vmb-f: #F4F0E8; --vmb-t: #24292C;
	position: relative; box-sizing: border-box; width: 100%; aspect-ratio: 22 / 9; overflow: hidden;
	background: var(--vmb-f); color: var(--vmb-p);
}
.vmb *, .vmb *::before, .vmb *::after { box-sizing: border-box; }

/* foto (3:2) em altura total, encostada à direita; borda esquerda esmaecida para o painel de texto */
.vmb-foto {
	position: absolute; top: 0; right: 0; height: 100%; aspect-ratio: 3 / 2; margin: 0;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24%); mask-image: linear-gradient(90deg, transparent 0, #000 24%);
}
.vmb-foto > img { display: block; width: 100%; height: 100%; object-fit: cover; margin: 0; }
.vmb-mapa { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: multiply; opacity: .92; pointer-events: none; }
.vmb-mapa .ln { stroke: #123B4A; stroke-width: 3; fill: none; }
.vmb-mapa .ln.off { stroke-opacity: .25; stroke-dasharray: 3 6; }
.vmb-mapa .n-on { fill: #123B4A; }
.vmb-mapa .n-off { fill: none; stroke: #123B4A; stroke-opacity: .45; stroke-width: 3; }
.vmb-mapa .n-core { fill: #E9D6A6; stroke: #B8892C; stroke-width: 3; }
.vmb-mapa text { font-family: inherit; font-weight: 700; text-anchor: middle; text-transform: uppercase; font-size: 13px; letter-spacing: .5px; }
.vmb-mapa .t-on { fill: #fff; } .vmb-mapa .t-off { fill: #123B4A; fill-opacity: .7; } .vmb-mapa .t-core { fill: #24292C; font-size: 16px; }
.vmb-mapa .asp { fill: #C9962F; stroke: #fff; stroke-width: 2; }

/* texto */
.vmb-texto {
	position: relative; z-index: 2; width: 41%; height: 100%;
	padding: 0 0 0 5.45cqw; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 1.3cqw;
}
.vmb-texto > * { margin: 0; }
.vmb-logo { display: inline-block; background: var(--vmb-p); border-radius: .6cqw; padding: .9cqw 1.4cqw; line-height: 0; }
.vmb-logo img { display: block; width: 12.5cqw; height: auto; max-width: none; margin: 0; }
.vmb-titulo { font-size: clamp(1.9rem, 3.7cqw, 5.6rem); line-height: 1.06; font-weight: 400; letter-spacing: 0; color: var(--vmb-p); text-wrap: balance; }
.vmb-sub { font-size: clamp(1rem, 1.5cqw, 2.4rem); line-height: 1.4; color: var(--vmb-t); max-width: 34ch; }
.vmb-cta {
	display: inline-flex; align-items: center; gap: .7cqw; background: var(--vmb-p); color: #fff !important; text-decoration: none;
	font-weight: 700; font-size: clamp(1rem, 1.55cqw, 2.4rem); padding: .95cqw 2cqw; border-radius: .7cqw;
}
.vmb-cta span { color: var(--vmb-o); }
.vmb-cta:hover { background: #0d2c38; }
.vmb-cta:focus-visible { outline: 3px solid var(--vmb-o); outline-offset: 3px; }
.vmb-apoio { font-size: clamp(.85rem, 1.15cqw, 1.7rem); line-height: 1.4; color: #4a5559; max-width: 40ch; }

/* estreito: foto no topo, texto abaixo */
@container (max-width: 899px) {
	.vmb { aspect-ratio: auto; display: flex; flex-direction: column; }
	.vmb-foto {
		position: relative; order: -1; width: 100%; height: auto; aspect-ratio: 3 / 2;
		-webkit-mask-image: linear-gradient(180deg, #000 70%, transparent 100%); mask-image: linear-gradient(180deg, #000 70%, transparent 100%);
	}
	.vmb-texto { width: 100%; height: auto; padding: 0 6cqw 8cqw; gap: 4cqw; margin-top: -4cqw; align-items: stretch; }
	.vmb-logo { align-self: flex-start; padding: 2cqw 3.6cqw; border-radius: 2cqw; }
	.vmb-logo img { width: 30cqw; }
	.vmb-titulo { font-size: clamp(1.9rem, 9cqw, 3.2rem); }
	.vmb-sub { font-size: clamp(1rem, 4.4cqw, 1.3rem); max-width: none; }
	.vmb-cta { justify-content: center; width: 100%; font-size: clamp(1.05rem, 4.6cqw, 1.4rem); padding: 3.6cqw 5cqw; border-radius: 2.4cqw; gap: 2cqw; }
	.vmb-apoio { font-size: clamp(.85rem, 3.6cqw, 1.05rem); max-width: none; }
}
@media (prefers-reduced-motion: reduce) { .vmb * { transition: none !important; animation: none !important; } }
