.suiek-video-carousel {
	--suiek-vc-aspect: 16 / 9;
	--suiek-vc-accent: #4c86ff;
	position: relative;
	width: 100%;
	padding: 8px 0 10px;
	color: #fff;
}

.suiek-vc-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.suiek-vc-head-copy {
	display: grid;
	gap: 12px;
	max-width: 720px;
}

.suiek-vc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 12px;
	line-height: 1.1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.55);
}

.suiek-vc-eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--suiek-vc-accent);
	box-shadow: 0 0 10px rgba(76, 134, 255, 0.9);
}

.suiek-vc-heading {
	margin: 0;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 700;
	color: #fff;
}

.suiek-vc-intro {
	margin: 0;
	max-width: 560px;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.68);
}

.suiek-vc-counter {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.suiek-vc-counter-current {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.suiek-vc-counter-sep,
.suiek-vc-counter-total {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
}

.suiek-vc-stage {
	position: relative;
}

.suiek-vc-viewport {
	width: 100%;
	overflow: hidden;
	padding: 8px 2px 18px;
	margin: -8px -2px;
}

.suiek-vc-track {
	display: flex;
	gap: 22px;
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.suiek-vc-slide {
	flex: 0 0 auto;
	min-width: 0;
	box-sizing: border-box;
}

.suiek-vc-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 10px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	transform: translateY(0) scale(0.975);
	opacity: 0.72;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease,
		border-color 0.45s ease,
		box-shadow 0.45s ease,
		background-color 0.45s ease;
	overflow: hidden;
}

.suiek-vc-slide.is-active .suiek-vc-card,
.suiek-vc-slide:hover .suiek-vc-card {
	transform: translateY(-6px) scale(1);
	opacity: 1;
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

/* Solo video: limpia chrome y deja el media protagonista */
.suiek-video-carousel.is-video_only .suiek-vc-card {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
	opacity: 1;
}

.suiek-video-carousel.is-video_only .suiek-vc-slide.is-active .suiek-vc-card,
.suiek-video-carousel.is-video_only .suiek-vc-slide:hover .suiek-vc-card {
	transform: none;
	opacity: 1;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.suiek-video-carousel.is-video_only .suiek-vc-media {
	border-radius: 18px;
}

.suiek-video-carousel.is-video_only .suiek-vc-media-overlay {
	opacity: 0.15;
}

.suiek-vc-media {
	position: relative;
	width: 100%;
	aspect-ratio: var(--suiek-vc-aspect);
	overflow: hidden;
	border-radius: 20px;
	background:
		radial-gradient(120% 90% at 20% 10%, rgba(76, 134, 255, 0.28), transparent 55%),
		linear-gradient(160deg, #12151d 0%, #07090e 100%);
}

.suiek-vc-media iframe,
.suiek-vc-media video,
.suiek-vc-iframe,
.suiek-vc-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	object-fit: cover;
	background: #07090e;
	z-index: 1;
}

.suiek-vc-cover {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: opacity 0.45s ease, transform 0.55s ease;
}

.suiek-vc-cover-fallback {
	background:
		radial-gradient(90% 70% at 70% 20%, rgba(76, 134, 255, 0.35), transparent 60%),
		linear-gradient(145deg, #1a2233 0%, #0a0d14 100%);
}

.suiek-vc-media-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.45) 100%);
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.suiek-vc-index {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 4;
	min-width: 34px;
	padding: 6px 8px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.9);
}

.suiek-vc-play {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 4;
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #0a0a0a;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
	transition: transform 0.25s ease, opacity 0.35s ease;
}

.suiek-vc-slide:hover .suiek-vc-play,
.suiek-vc-slide.is-active .suiek-vc-play {
	transform: scale(1.06);
}

.suiek-vc-slide.is-playing .suiek-vc-cover,
.suiek-vc-slide.is-playing .suiek-vc-media-overlay,
.suiek-vc-slide.is-playing .suiek-vc-play {
	opacity: 0;
	pointer-events: none;
}

.suiek-vc-slide.is-playing .suiek-vc-cover {
	transform: scale(1.04);
}

.suiek-video-carousel.is-editor .suiek-vc-cover,
.suiek-video-carousel.is-editor .suiek-vc-media-overlay,
.suiek-video-carousel.is-editor .suiek-vc-play,
.suiek-video-carousel.is-editor .suiek-vc-index {
	opacity: 1 !important;
	pointer-events: none;
}

.suiek-video-carousel.is-editor .suiek-vc-iframe,
.suiek-video-carousel.is-editor .suiek-vc-video {
	display: none !important;
}

.suiek-video-carousel.is-editor .suiek-vc-media {
	min-height: 180px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.suiek-video-carousel.is-editor.is-video_only .suiek-vc-card {
	padding: 0;
}

.suiek-video-carousel.is-editor .suiek-vc-slide {
	opacity: 1;
}

.suiek-video-carousel.is-editor .suiek-vc-card {
	opacity: 1;
	transform: none;
}

.suiek-vc-editor-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 5;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(76, 134, 255, 0.92);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.suiek-vc-editor-caption {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 14px;
	z-index: 5;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.suiek-vc-body {
	display: grid;
	gap: 10px;
	padding: 16px 8px 8px;
}

.suiek-vc-body-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.suiek-vc-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(76, 134, 255, 0.14);
	color: #c9dbff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.suiek-vc-badge::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #00ff4d;
	box-shadow: 0 0 10px rgba(0, 255, 77, 0.85);
}

.suiek-vc-client {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	white-space: nowrap;
}

.suiek-vc-title {
	margin: 0;
	font-size: clamp(18px, 2vw, 24px);
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
	color: #fff;
}

.suiek-vc-title a {
	color: inherit;
	text-decoration: none;
}

.suiek-vc-title a:hover {
	color: #d7e4ff;
}

.suiek-vc-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.58);
}

.suiek-vc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 2px 0 0;
	padding: 0;
}

.suiek-vc-tags li {
	padding: 5px 9px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
}

.suiek-vc-arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(12, 14, 20, 0.55);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
	transform: translateY(-50%);
	transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-tap-highlight-color: transparent;
	appearance: none;
	outline: none;
}

.suiek-vc-arrow svg {
	display: block;
	pointer-events: none;
}

.suiek-vc-arrow:hover:not(:disabled) {
	background: rgba(12, 14, 20, 0.78);
	transform: translateY(-50%) scale(1.05);
}

.suiek-vc-arrow:focus,
.suiek-vc-arrow:focus-visible,
.suiek-vc-arrow:active {
	outline: none !important;
	border: 0 !important;
}

.suiek-vc-arrow:focus-visible:not(:disabled) {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85), 0 0 0 4px rgba(76, 134, 255, 0.55);
}

.suiek-vc-arrow:active:not(:disabled) {
	transform: translateY(-50%) scale(0.96);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.suiek-vc-arrow:disabled {
	opacity: 0.3;
	cursor: default;
	transform: translateY(-50%);
}

.suiek-vc-arrow-prev {
	left: 12px;
}

.suiek-vc-arrow-next {
	right: 12px;
}

.suiek-vc-footer {
	display: grid;
	gap: 14px;
	margin-top: 6px;
}

.suiek-vc-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.suiek-vc-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	cursor: pointer;
	transition: width 0.25s ease, background-color 0.25s ease;
}

.suiek-vc-dot.is-active {
	width: 26px;
	background: var(--suiek-vc-accent);
}

.suiek-vc-progress {
	width: min(280px, 100%);
	height: 2px;
	margin: 0 auto;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.suiek-vc-progress-bar {
	display: block;
	height: 100%;
	width: 0;
	border-radius: inherit;
	background: var(--suiek-vc-accent);
	transition: width 0.35s ease;
}

@media (max-width: 1024px) {
	.suiek-vc-arrow-prev {
		left: 8px;
	}

	.suiek-vc-arrow-next {
		right: 8px;
	}
}

@media (max-width: 767px) {
	.suiek-vc-head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 20px;
	}

	.suiek-vc-arrow {
		width: 38px;
		height: 38px;
		top: 24%;
	}

	.suiek-vc-body {
		padding-top: 14px;
	}

	.suiek-vc-title {
		font-size: 20px;
	}
}
