/* ── Braz Turismo · Spot Hero ─────────────────────── */
.brt-spot-hero{
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 440px;
	overflow: hidden;
	isolation: isolate;
}

.brt-spot-hero__media{
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--brt-sh-img, none);
	background-size: cover;
	background-position: center;
}

.brt-spot-hero__overlay{
	--brt-sh-c1: rgba(20,38,24,0.10);
	--brt-sh-c2: rgba(14,28,18,0.88);
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom, var(--brt-sh-c1) 0%, var(--brt-sh-c2) 100%);
}

/* Barra superior: badge à esquerda, ações à direita */
.brt-spot-hero__top{
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	padding: 22px 24px;
}

.brt-spot-hero__actions{
	display: flex;
	gap: 8px;
}
.brt-spot-hero__action{
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255,255,255,0.18);
	border: 1px solid rgba(255,255,255,0.28);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: background-color .15s;
	text-decoration: none;
}
.brt-spot-hero__action:hover{ background: rgba(255,255,255,0.30); }
.brt-spot-hero__action[data-brt-fav].is-active{ background: #E0613A; border-color: #E0613A; }

.brt-spot-hero__inner{
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 860px;
	padding: 56px 24px 48px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Breadcrumb */
.brt-spot-hero__breadcrumb{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
	font-size: 12px;
	color: rgba(255,255,255,0.65);
	margin-bottom: 16px;
}
.brt-spot-hero__breadcrumb a{
	color: rgba(255,255,255,0.65);
	text-decoration: none;
}
.brt-spot-hero__breadcrumb a:hover{ color: #fff; }
.brt-spot-hero__breadcrumb [aria-current="page"],
.brt-spot-hero__bc-tipo{ color: rgba(255,255,255,0.9); }

/* Badge coral */
.brt-spot-hero__badge{
	display: inline-flex;
	align-items: center;
	gap: .4em;
	padding: .38em .95em;
	border-radius: 999px;
	background: #E0613A;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	width: fit-content;
}

/* Chips (acima do título) */
.brt-spot-hero__chips{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.brt-spot-hero__chip{
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: .4em .85em;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	background: rgba(255,255,255,0.14);
	color: rgba(255,255,255,0.9);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.18);
}
.brt-spot-hero__chip--tipo{
	background: #023D18;
	border-color: #023D18;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-size: 11px;
}

/* Título */
.brt-spot-hero__title{
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4.5vw, 52px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: #fff;
}

/* Subtítulo */
.brt-spot-hero__subtitle{
	margin: 14px 0 0;
	font-size: clamp(14px, 1.3vw, 17px);
	line-height: 1.5;
	color: rgba(255,255,255,0.80);
	max-width: 600px;
}

/* Legenda da foto (canto inferior direito) */
.brt-spot-hero__caption{
	position: absolute;
	z-index: 3;
	right: 18px;
	bottom: 14px;
	font-size: 11px;
	font-style: italic;
	color: rgba(255,255,255,0.62);
}

@media (max-width: 600px){
	.brt-spot-hero{ min-height: 320px; }
	.brt-spot-hero__inner{ padding: 32px 16px 36px; }
	.brt-spot-hero__top{ padding: 16px; }
	.brt-spot-hero__caption{ display: none; }
}
