.vsv-player {
	margin: 1.5em 0;
	width: 100%;
}

.vsv-stage {
	position: relative;
	width: 100%;
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 8px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.vsv-content {
	position: absolute;
	inset: 0;
}

.vsv-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.vsv-slide.vsv-active {
	opacity: 1;
}

/* Só a imagem recebe o zoom (Ken Burns); o texto fica parado. */
.vsv-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
}

.vsv-slide.vsv-active .vsv-slide-bg {
	animation: vsv-ken 5s ease-out forwards;
}

.vsv-paused .vsv-slide.vsv-active .vsv-slide-bg {
	animation-play-state: paused;
}

@keyframes vsv-ken {
	from { transform: scale(1); }
	to { transform: scale(1.08); }
}

/* Texto da matéria sobre o slide */
.vsv-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 22px 18px 56px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vsv-content-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.vsv-ad {
	position: absolute;
	inset: 0;
	z-index: 5;
}

/* Play central (quando não é autoplay) */
.vsv-center-play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 7;
	width: 64px;
	height: 64px;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	font-size: 26px;
	cursor: pointer;
}
.vsv-center-play:hover { background: rgba(0, 0, 0, 0.8); }

/* Barra de controles */
.vsv-controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.vsv-content-active .vsv-controls { display: flex; }
.vsv-ad-active .vsv-controls,
.vsv-ad-active .vsv-caption { display: none; }

.vsv-btn {
	flex: 0 0 auto;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	padding: 4px;
}
.vsv-btn:hover { opacity: 0.85; }

.vsv-progress {
	position: relative;
	flex: 1 1 auto;
	height: 16px;
	display: flex;
	align-items: center;
	cursor: pointer;
	touch-action: none;
}
.vsv-progress-bg {
	position: absolute;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.35);
}
.vsv-progress-fill {
	position: absolute;
	left: 0;
	height: 4px;
	width: 0;
	border-radius: 2px;
	background: #ff3b30;
}
.vsv-handle {
	position: absolute;
	left: 0;
	width: 13px;
	height: 13px;
	margin-left: -6px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.vsv-time {
	flex: 0 0 auto;
	color: #fff;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.vsv-caption { font-size: 15px; padding: 16px 14px 50px; }
	.vsv-time { font-size: 11px; }
}
