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

.brt-spot-hl__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.brt-spot-hl__card{
	background: #fff;
	border: 1px solid #E3DFD4;
	border-radius: 14px;
	overflow: hidden;
}

.brt-spot-hl__img-wrap{
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #e8e4db;
}
/* Fallback de gradiente por tema quando não há foto */
.brt-spot-hl__img-wrap--serra{ background: linear-gradient(135deg,#2f8f4e,#023D18); }
.brt-spot-hl__img-wrap--cafe { background: linear-gradient(135deg,#9a6b43,#5c3d20); }
.brt-spot-hl__img-wrap--pedra{ background: linear-gradient(135deg,#5a7089,#334455); }

.brt-spot-hl__img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}
.brt-spot-hl__card:hover .brt-spot-hl__img{ transform: scale(1.04); }

/* Legenda sobre a imagem */
.brt-spot-hl__legenda{
	position: absolute;
	left: 12px;
	bottom: 10px;
	right: 12px;
	z-index: 1;
	font-size: 11.5px;
	font-weight: 500;
	color: #fff;
	text-shadow: 0 1px 4px rgba(0,0,0,0.55);
	line-height: 1.3;
}
.brt-spot-hl__img-wrap:has(.brt-spot-hl__img)::after{
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 45%);
}
.brt-spot-hl__legenda{ z-index: 2; }

.brt-spot-hl__body{
	padding: 16px 18px 18px;
}
.brt-spot-hl__title{
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 700;
	color: #1d2420;
}
.brt-spot-hl__desc{
	margin: 0;
	font-size: 13.5px;
	line-height: 1.55;
	color: #5B6660;
}

@media (max-width: 768px){
	.brt-spot-hl__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
	.brt-spot-hl__grid{ grid-template-columns: 1fr; }
}
