/* =========================================================================
   Tour Detail - estilos da página individual de cada tour.
   Consistente com o tema: fundo escuro, detalhes dourados, cards modernos.
   ========================================================================= */

/* ---------- HERO ---------- */
.tour-hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #0A0D14;
}
.tour-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
}
.tour-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 13, 20, .96) 8%, rgba(10, 13, 20, .55) 55%, rgba(10, 13, 20, .35) 100%);
}
.tour-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 6rem;
	padding-bottom: 3rem;
}
.tour-hero__back {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: #cbd5e1;
	font-size: .8rem;
	font-weight: 600;
	margin-bottom: 1.1rem;
	transition: color .2s ease;
}
.tour-hero__back:hover { color: #eab308; }
.tour-hero__cat {
	display: inline-block;
	background: rgba(234, 179, 8, .12);
	border: 1px solid rgba(234, 179, 8, .3);
	color: #facc15;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	padding: .3rem .8rem;
	border-radius: 9999px;
	margin-bottom: .9rem;
}
.tour-hero__cat:empty { display: none; }
.tour-hero__title {
	font-family: var(--font-headings, 'Outfit', sans-serif);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .01em;
	color: #fff;
	font-size: clamp(1.9rem, 5vw, 3.2rem);
	line-height: 1.08;
	margin: 0 0 1rem;
}
.tour-hero__meta { display: flex; flex-wrap: wrap; gap: .6rem; }
.tour-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: rgba(17, 22, 34, .7);
	border: 1px solid rgba(148, 163, 184, .18);
	color: #e2e8f0;
	font-size: .82rem;
	font-weight: 600;
	padding: .45rem .9rem;
	border-radius: 9999px;
}

/* ---------- LAYOUT ---------- */
.tour-section { padding: 3.5rem 0 4.5rem; background: #0A0D14; }
.tour-wrap { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .tour-wrap { padding: 0 1.5rem; } }
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
	.tour-grid { grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
}

.tour-block { margin-bottom: 2.5rem; }
.tour-block:last-child { margin-bottom: 0; }
.tour-h2 {
	font-family: var(--font-headings, 'Outfit', sans-serif);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
	font-size: 1.25rem;
	color: #fff;
	margin: 0 0 1rem;
	padding-bottom: .65rem;
	border-bottom: 1px solid rgba(148, 163, 184, .14);
}
.tour-h3 {
	font-family: var(--font-headings, 'Outfit', sans-serif);
	font-weight: 700;
	font-size: .95rem;
	color: #e2e8f0;
	margin: 1.5rem 0 .75rem;
}
.tour-lead { color: #cbd5e1; font-size: 1rem; line-height: 1.75; margin: 0; }

/* ---------- ITINERÁRIO ---------- */
.tour-itinerary { list-style: none; margin: 0; padding: 0; }
.tour-stop {
	display: flex;
	align-items: center;
	gap: .85rem;
	padding: .55rem 0;
	border-bottom: 1px dashed rgba(148, 163, 184, .12);
}
.tour-stop:last-child { border-bottom: 0; }
.tour-stop__num {
	flex: 0 0 auto;
	width: 1.9rem;
	height: 1.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(234, 179, 8, .12);
	border: 1px solid rgba(234, 179, 8, .35);
	color: #facc15;
	font-weight: 700;
	font-size: .8rem;
	border-radius: 9999px;
}
.tour-stop__name { color: #e2e8f0; font-size: .95rem; }

/* ---------- GALERIA ---------- */
.tour-gallery { display: grid; grid-template-columns: 1fr; gap: .75rem; }
@media (min-width: 640px) { .tour-gallery { grid-template-columns: 2fr 1fr; } }
.tour-gallery__main, .tour-gallery__ph {
	margin: 0;
	border-radius: 1rem;
	overflow: hidden;
	background: linear-gradient(135deg, #111622 0%, #1A202E 100%);
	border: 1px dashed rgba(234, 179, 8, .2);
	min-height: 150px;
}
.tour-gallery__main { aspect-ratio: 4 / 3; border-style: solid; border-color: rgba(255,255,255,.05); }
.tour-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tour-gallery__thumbs { display: grid; grid-template-rows: repeat(3, 1fr); gap: .75rem; }
.tour-gallery__ph {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #64748b;
	font-size: .68rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .5rem;
}

/* ---------- WHAT'S INCLUDED ---------- */
.tour-inc { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
@media (min-width: 640px) { .tour-inc { grid-template-columns: 1fr 1fr; gap: .55rem 1.5rem; } }
.tour-inc__item { display: flex; align-items: flex-start; gap: .6rem; color: #cbd5e1; font-size: .9rem; }
.tour-inc__item--no { color: #94a3b8; }

/* ---------- PREÇOS / CTA (sidebar) ---------- */
.tour-aside { position: relative; }
@media (min-width: 1024px) { .tour-aside { position: sticky; top: 6.5rem; } }
.tour-card-prices { border-radius: 1.25rem; border: 1px solid rgba(234, 179, 8, .2); padding: 1.5rem; }
.tour-eyebrow {
	display: block;
	color: #eab308;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-bottom: .5rem;
}
.tour-aside__meta {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: #94a3b8;
	font-size: .85rem;
	margin-bottom: 1rem;
}
.tour-prices { display: flex; flex-direction: column; gap: .2rem; }
.tour-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .65rem 0;
	border-bottom: 1px solid rgba(148, 163, 184, .1);
	color: #cbd5e1;
	font-size: .9rem;
}
.tour-price-row:last-child { border-bottom: 0; }
.tour-price-row__val { font-weight: 700; color: #fff; white-space: nowrap; }
.tour-price-row--cr { color: #facc15; }
.tour-price-row--cr .tour-price-row__val { color: #eab308; }
.tour-prices__note { color: #64748b; font-size: .72rem; margin: .75rem 0 0; }

.tour-cta { display: flex; flex-direction: column; gap: .65rem; margin-top: 1.25rem; }
.tour-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	font-family: var(--font-headings, 'Outfit', sans-serif);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: .82rem;
	padding: .9rem 1rem;
	border-radius: .85rem;
	transition: all .25s ease;
}
.tour-btn--primary { background: #eab308; color: #000; box-shadow: 0 8px 20px -8px rgba(234, 179, 8, .5); }
.tour-btn--primary:hover { background: #ca8a04; }
.tour-btn--wa { background: #25D366; color: #fff; }
.tour-btn--wa:hover { opacity: .9; }
