/* ── Braz Turismo · Spot Mapa ─────────────────────── */
.brt-spot-mapa__heading{
	margin: 0 0 10px;
	font-size: clamp(17px, 1.8vw, 21px);
	font-weight: 700;
	color: #1d2420;
	border-left: 4px solid #046929;
	padding-left: 14px;
}
.brt-spot-mapa__rota{
	margin: 0 0 18px;
	font-size: 14px;
	color: #5B6660;
}

.brt-spot-mapa__wrap{
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #E3DFD4;
	background: #dfece0;
	min-height: 320px;
}
.brt-spot-mapa__img{
	width: 100%;
	height: auto;
	display: block;
}
.brt-spot-mapa__svg{
	width: 100%;
	height: 100%;
	min-height: 320px;
	display: block;
}

/* Mapa real (iframe do Google Maps) */
.brt-spot-mapa__wrap--real{ min-height: 0; }
.brt-spot-mapa__frame{
	width: 100%;
	height: 420px;
	display: block;
	border: 0;
}

/* Rota tracejada (SVG por cima do mapa) */
.brt-spot-mapa__rota-svg{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* Pinos */
.brt-spot-mapa__pin{
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 5px;
	transform: translate(-50%, -50%);
}
.brt-spot-mapa__pin span{
	white-space: nowrap;
	border-radius: 999px;
	padding: 5px 11px;
	font-size: 11.5px;
	font-weight: 600;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
/* Origem: pill branca + dot coral */
.brt-spot-mapa__pin--origin{ color: #E0613A; }
.brt-spot-mapa__pin--origin span{
	background: #fff;
	color: #1d2420;
	border: 1px solid #E3DFD4;
}
/* Destino: pill verde */
.brt-spot-mapa__pin--dest span{
	background: var(--brt-pin-cor, #046929);
	color: #fff;
	position: relative;
	padding-left: 20px;
}
.brt-spot-mapa__pin--dest span::before{
	content: "";
	position: absolute;
	left: 9px;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
}

/* Botão sobreposto (canto inferior direito) */
.brt-spot-mapa__maps-btn{
	position: absolute;
	z-index: 3;
	right: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 20px;
	border-radius: 999px;
	background: #046929;
	color: #fff;
	font-size: 13.5px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(0,0,0,0.18);
	transition: background-color .15s;
}
.brt-spot-mapa__maps-btn:hover{ background: #023D18; }

@media (max-width: 600px){
	.brt-spot-mapa__wrap{ min-height: 240px; }
	.brt-spot-mapa__svg{ min-height: 240px; }
	.brt-spot-mapa__maps-btn{ right: 10px; bottom: 10px; padding: 9px 16px; font-size: 12.5px; }
	.brt-spot-mapa__pin span{ font-size: 10.5px; padding: 4px 9px; }
}
