/* =========================================================================
   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; }

/* 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; }
