/* =========================================================================
   Taxi & Local Transfers - estilos específicos da página
   Complementa o tema (Tailwind CDN + main.css). Não altera o resto do site.
   ========================================================================= */

/* Hero */
.tlt-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.tlt-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	z-index: 0;
}
.tlt-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(10, 13, 20, .94) 0%, rgba(10, 13, 20, .80) 45%, rgba(10, 13, 20, .45) 100%);
	z-index: 1;
}
.tlt-hero__inner { position: relative; z-index: 2; }

/* Mercedes image with graceful placeholder if the file is replaced/missing */
.tlt-vehicle {
	filter: drop-shadow(0 25px 45px rgba(0, 0, 0, .55));
	animation: tltFloat 6s ease-in-out infinite;
}
@keyframes tltFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-12px); }
}

/* Benefit chips */
.tlt-benefit {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: rgba(17, 22, 34, .6);
	border: 1px solid rgba(148, 163, 184, .25);
	color: #e5e7eb;
	padding: .45rem .8rem;
	border-radius: 9999px;
	font-size: .72rem;
	font-weight: 600;
}

/* Form controls (match dark premium theme) */
.tlt-field { margin-bottom: .9rem; }
.tlt-label {
	display: block;
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #94a3b8;
	font-weight: 700;
	margin-bottom: .35rem;
}
.tlt-input,
.tlt-select {
	width: 100%;
	background: #0a0d14;
	border: 1px solid rgba(148, 163, 184, .25);
	color: #fff;
	border-radius: .75rem;
	padding: .7rem .9rem;
	font-size: .9rem;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.tlt-input:focus,
.tlt-select:focus {
	outline: none;
	border-color: #eab308;
	box-shadow: 0 0 0 3px rgba(234, 179, 8, .15);
}
.tlt-input::placeholder { color: #64748b; }

.tlt-check {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .82rem;
	color: #cbd5e1;
	padding: .25rem 0;
}
.tlt-check input { accent-color: #eab308; width: 1rem; height: 1rem; }
/* Opção de rádio com texto longo (ex.: sentido da caminhada) — alinha ao topo e faz wrap. */
.tlt-radio { align-items: flex-start; line-height: 1.3; }
.tlt-radio input { margin-top: .15rem; flex-shrink: 0; }

/* Result line inside cards */
.tlt-result {
	margin-top: .75rem;
	font-size: .85rem;
	color: #eab308;
	font-weight: 700;
	min-height: 1.2rem;
}

/* Sticky summary */
@media (min-width: 1280px) {
	.tlt-summary { position: sticky; top: 6rem; }
}

/* Popular destination card */
.tlt-dest {
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(148, 163, 184, .15);
}
.tlt-dest img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.tlt-dest:hover img { transform: scale(1.08); }
.tlt-dest__grad {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(2, 6, 12, .92) 5%, rgba(2, 6, 12, .25) 60%, transparent 100%);
}

/* Tariff rows */
.tlt-zone {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: rgba(17, 22, 34, .55);
	border: 1px solid rgba(148, 163, 184, .12);
	border-radius: .65rem;
	padding: .7rem .95rem;
}
.tlt-zone__price { color: #eab308; font-weight: 700; white-space: nowrap; }

/* Generic price badge */
.tlt-price-badge {
	background: rgba(234, 179, 8, .12);
	border: 1px solid rgba(234, 179, 8, .3);
	color: #facc15;
	font-weight: 700;
	padding: .15rem .6rem;
	border-radius: 9999px;
	font-size: .8rem;
}

/* Tourist Attractions: tabela de preços */
.tlt-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
}
.tlt-table thead th {
	position: sticky;
	top: 0;
	background: rgba(17, 22, 34, .95);
	color: #cbd5e1;
	text-align: left;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: .72rem;
	padding: .85rem 1.1rem;
	border-bottom: 1px solid rgba(148, 163, 184, .18);
	white-space: nowrap;
}
.tlt-table tbody td {
	padding: .7rem 1.1rem;
	border-bottom: 1px solid rgba(148, 163, 184, .08);
	color: #e2e8f0;
}
.tlt-table tbody tr:last-child td { border-bottom: 0; }
.tlt-table tbody tr:nth-child(even) { background: rgba(148, 163, 184, .035); }
.tlt-table tbody tr:hover { background: rgba(234, 179, 8, .06); }
.tlt-table__price { color: #eab308; font-weight: 700; white-space: nowrap; }
.tlt-table__adp { color: #60a5fa; }

/* Tourist Attractions: cartões de regras */
.tlt-rule {
	background: rgba(17, 22, 34, .55);
	border: 1px solid rgba(148, 163, 184, .12);
	border-radius: .9rem;
	padding: 1rem 1.15rem;
}
.tlt-rule__title {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-family: var(--font-heading, inherit);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .03em;
	font-size: .82rem;
	color: #fff;
	margin-bottom: .65rem;
}
.tlt-rule__list { list-style: none; margin: 0; padding: 0; }
.tlt-rule__list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	font-size: .82rem;
	color: #cbd5e1;
	padding: .28rem 0;
}
.tlt-rule__val { color: #eab308; font-weight: 700; white-space: nowrap; }

/* ===== Fluxo passo-a-passo (Step 1 → 2 → 3) ===== */
.tlt-hidden { display: none !important; }

.tlt-step-eyebrow {
	font-size: .72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #eab308;
	margin-bottom: 1rem;
	text-align: center;
}

/* Cartões grandes de escolha de serviço */
.tlt-choice {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .5rem;
	background: rgba(17, 22, 34, .6);
	border: 2px solid rgba(148, 163, 184, .2);
	border-radius: 1rem;
	padding: 1.6rem 1.25rem;
	cursor: pointer;
	transition: border-color .2s ease, transform .15s ease, background .2s ease;
	min-height: 100%;
}
.tlt-choice:hover { border-color: rgba(234, 179, 8, .55); transform: translateY(-3px); }
.tlt-choice.is-active {
	border-color: #eab308;
	background: rgba(234, 179, 8, .12);
	box-shadow: 0 0 0 3px rgba(234, 179, 8, .18);
}
.tlt-choice__icon { font-size: 2.2rem; line-height: 1; }
.tlt-choice__title {
	font-family: var(--font-heading, inherit);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #fff;
	font-size: 1rem;
}
.tlt-choice__desc { font-size: .85rem; color: #94a3b8; line-height: 1.45; }

/* Botão "mudar de serviço" */
.tlt-back {
	background: none;
	border: 0;
	color: #94a3b8;
	font-size: .82rem;
	font-weight: 600;
	cursor: pointer;
	padding: .25rem 0;
	margin-bottom: .25rem;
}
.tlt-back:hover { color: #eab308; }

/* Cartões de preço da caminhada (clicáveis) */
.tlt-hike-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .25rem;
	background: rgba(15, 23, 42, .7);
	border: 2px solid rgba(148, 163, 184, .2);
	border-radius: .75rem;
	padding: .85rem .5rem;
	cursor: pointer;
	transition: all .2s ease;
}
.tlt-hike-card:hover {
	border-color: #facc15;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(234, 179, 8, .18);
}
.tlt-hike-card.is-active {
	border-color: #facc15;
	background: rgba(234, 179, 8, .14);
	box-shadow: 0 0 0 3px rgba(234, 179, 8, .25);
}
.tlt-hike-card.is-active::after {
	content: "✓ Selecionado";
	display: block;
	margin-top: .35rem;
	font-size: .58rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #facc15;
}
.tlt-hike-card__lbl {
	font-size: .62rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: #94a3b8;
	font-weight: 700;
}
.tlt-hike-card__price {
	font-family: var(--font-heading, inherit);
	font-weight: 900;
	font-size: 1.25rem;
	color: #eab308;
}

/* Acessibilidade / mobile: campos e botões maiores, sem overflow horizontal */
.tlt-input, .tlt-select { font-size: 1rem; }
#tlt-app { overflow-x: hidden; }
@media (max-width: 1279px) {
	.tlt-summary { position: static; margin-top: 1.5rem; }
}
@media (max-width: 640px) {
	.tlt-choice { padding: 1.25rem 1rem; }
	.tlt-input, .tlt-select { padding: .8rem .9rem; }
}
