/* =====================================================================
 * LIONS-TOUR-V1 (2026-07-29) — Tour guiado de boas-vindas com voz
 * Servido em /lions-tour/lions-tour.css (carregado via additionalhtmlhead)
 * ===================================================================== */

#lions-tour-root {
	position: fixed;
	inset: 0;
	z-index: 2000000;
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

/* Holofote: buraco transparente + sombra gigante escurecendo o resto */
#lions-tour-root .lt-spot {
	position: fixed;
	border-radius: 14px;
	box-shadow:
		0 0 0 100vmax rgba(9, 16, 32, 0.78),
		0 0 0 4px rgba(251, 191, 36, 0.95),
		0 0 26px 8px rgba(251, 191, 36, 0.40);
	transition: top .35s ease, left .35s ease, width .35s ease, height .35s ease;
	pointer-events: none;
}
#lions-tour-root.lt-modal .lt-spot {
	top: 50%; left: 50%; width: 0; height: 0;
	border-radius: 0;
	box-shadow: 0 0 0 100vmax rgba(9, 16, 32, 0.84);
}

/* Cartão do passo */
#lions-tour-root .lt-card {
	position: fixed;
	width: min(370px, calc(100vw - 20px));
	background: #ffffff;
	color: #0f172a;
	border-radius: 16px;
	box-shadow: 0 14px 44px rgba(0, 0, 0, 0.40);
	padding: 16px 18px 12px;
	transition: top .3s ease, left .3s ease;
}
#lions-tour-root.lt-modal .lt-card {
	top: 50% !important; left: 50% !important;
	transform: translate(-50%, -50%);
	text-align: center;
}
#lions-tour-root .lt-title {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.25;
}
#lions-tour-root .lt-text {
	margin: 0 0 12px;
	font-size: 14.5px;
	line-height: 1.5;
	color: #334155;
}
#lions-tour-root .lt-foot {
	display: flex;
	align-items: center;
	gap: 8px;
}
#lions-tour-root.lt-modal .lt-foot { justify-content: center; }
#lions-tour-root .lt-progress {
	font-size: 12.5px;
	font-weight: 700;
	color: #64748b;
	margin-right: auto;
}
#lions-tour-root.lt-modal .lt-progress { margin-right: 0; }

#lions-tour-root .lt-btn {
	border: 0;
	border-radius: 10px;
	padding: 9px 16px;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	font-family: inherit;
}
#lions-tour-root .lt-next {
	background: #2563eb;
	color: #ffffff !important;
}
#lions-tour-root .lt-next:hover { background: #1d4ed8; }
#lions-tour-root .lt-back {
	background: #e2e8f0;
	color: #0f172a !important;
	padding: 9px 12px;
}
#lions-tour-root .lt-mute {
	background: #e2e8f0;
	color: #0f172a;
	border: 0;
	border-radius: 10px;
	width: 38px;
	height: 36px;
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
}
#lions-tour-root .lt-skip {
	position: fixed;
	top: 14px;
	right: 14px;
	background: rgba(15, 23, 42, 0.65);
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}
#lions-tour-root .lt-skip:hover { background: rgba(15, 23, 42, 0.85); }

@media (max-width: 640px) {
	#lions-tour-root .lt-card { padding: 14px 14px 10px; }
	#lions-tour-root .lt-title { font-size: 16.5px; }
	#lions-tour-root .lt-text { font-size: 14px; }
}
