.indice-lateral {
	position: fixed;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.indice-mini {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	padding: 8px 0;
}

.indice-mini-item {
	display: block;
	width: 18px;
	height: 2px;
	background: #aaa;
	opacity: .75;
	text-decoration: none;
	transition: width .15s ease, background-color .15s ease, opacity .15s ease;
}

.indice-mini-item:hover,
.indice-mini-item.activo {
	width: 30px;
	background: #333;
	opacity: 1;
}

.indice-panel {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	width: 320px;
	max-height: 80vh;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0,0,0,.15);
	overflow: hidden;
}

.indice-panel-scroll {
	max-height: 80vh;
	overflow-y: auto;
	padding: 8px;
}

.indice-panel a {
	display: block;
	padding: 8px 10px;
	border-radius: 7px;
	color: #333;
	font-size: 13px;
	line-height: 1.25;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.indice-panel a:hover,
.indice-panel a.activo {
	background: #f1f3f5;
	color: #111;
}

@media (max-width: 768px) {
	.indice-lateral {
		display: none;
	}
}