/* =========================================================================
 * Vídeo Destaque — estilos do front (visual preservado da v3.2).
 * ====================================================================== */

/* ---- Faixa de vídeos do produto (carrossel inline) ---- */
.vdp-reels { margin: 20px 0; }
.vdp-reels-title { font-size: 18px; font-weight: 700; margin: 0 0 12px; }
.vdp-reels-viewport { position: relative; }
.vdp-reels-track {
	display: flex; align-items: center; gap: 10px;
	overflow-x: auto; scroll-behavior: smooth;
	scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 2px;
}
.vdp-reels-track::-webkit-scrollbar { display: none; }
.vdp-reel {
	position: relative; flex: 0 0 auto; width: 96px; aspect-ratio: 9/16;
	border: 0; padding: 0; border-radius: 10px; overflow: hidden;
	background: #000; cursor: pointer;
}
.vdp-reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vdp-reel-play {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 34px; height: 34px; border-radius: 50%;
	background: rgba(255, 255, 255, .85); transition: opacity .15s;
}
.vdp-reel-play:before {
	content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
	border-style: solid; border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent #111;
}
/* o vídeo que está tocando apenas não mostra o botão de play */
.vdp-reel.is-active .vdp-reel-play { display: none; }
/* botão de som: aparece só no vídeo que está tocando */
.vdp-reel-mute {
	position: absolute; bottom: 7px; right: 7px; z-index: 3; display: none;
	width: 28px; height: 28px; cursor: pointer;
}
.vdp-reel.is-active .vdp-reel-mute { display: flex; }
.vdp-reel[data-muted] .vdp-reel-mute { display: none !important; }
.vdp-reels-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
	width: 30px; height: 30px; border: 0; border-radius: 50%; background: #fff;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .25); cursor: pointer;
	font-size: 14px; line-height: 30px; color: #111; padding: 0;
}
.vdp-reels-prev { left: -6px; }
.vdp-reels-next { right: -6px; }
.vdp-reels-arrow[hidden] { display: none; }

/* ---- Variante SPOTLIGHT: coverflow centralizado por transform ---- */
.vdp-reels--spotlight .vdp-reels-title { text-align: center; }
.vdp-reels--spotlight .vdp-reels-viewport { max-width: var(--vdp-spot-w, 100%); margin: 0 auto; overflow: hidden; }
/* track não rola: é movido por transform (centralização determinística e suave) */
.vdp-reels--spotlight .vdp-reels-track { min-height: calc(var(--vdp-spot-active, 160px) * 16 / 9 + 4px); overflow: visible; padding: 0; justify-content: flex-start; will-change: transform; }
.vdp-reels--spotlight .vdp-reel { width: var(--vdp-spot-base, 96px); transition: width .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease; }
.vdp-reels--spotlight .vdp-reel.is-active {
	width: var(--vdp-spot-active, 160px); z-index: 1; box-shadow: 0 10px 26px rgba(0, 0, 0, .32);
}
/* Spotlight INFINITO: tiles uniformes; destaque por scale (não afeta o layout do loop) */
.vdp-reels--spotlight.vdp-inf .vdp-reel { width: var(--vdp-spot-base, 96px); transform-origin: center center; transition: transform .34s cubic-bezier(.22, .61, .36, 1), box-shadow .34s ease; }
.vdp-reels--spotlight.vdp-inf .vdp-reel.is-active { width: var(--vdp-spot-base, 96px); transform: scale(var(--vdp-spot-scale, 1.6)); z-index: 2; box-shadow: 0 12px 32px rgba(0, 0, 0, .34); }

/* ---- Vídeo flutuante ---- */
.vdp-floating { position: fixed; z-index: 99990; transition: width .25s ease, height .25s ease; }
.vdp-floating .vdp-float-inner {
	position: relative; width: 100%; height: 100%; background: #000;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .35); overflow: hidden; transition: border-radius .25s ease;
}
.vdp-floating .vdp-float-video { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }

/* ---- Feed vertical do flutuante ---- */
.vdp-floating .vdp-float-viewport { position: relative; width: 100%; height: 100%; overflow: hidden; }
.vdp-floating .vdp-float-slide {
	position: absolute; inset: 0; will-change: transform, opacity;
	transition: transform .45s cubic-bezier(.22, .61, .36, 1), opacity .45s ease;
}
.vdp-floating .vdp-float-slide video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vdp-floating .vdp-float-arrow {
	position: absolute; left: 50%; transform: translateX(-50%); z-index: 4; display: none;
	width: 36px; height: 36px; cursor: pointer; padding: 0;
	align-items: center; justify-content: center;
}
.vdp-floating .vdp-float-prev { top: 12px; }
.vdp-floating .vdp-float-next { bottom: 12px; }
.vdp-floating.vdp-expanded.vdp-has-feed .vdp-float-arrow { display: flex; }
.vdp-chev { width: 20px; height: 20px; display: block; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) {
	.vdp-floating .vdp-float-slide { transition: none; }
}
.vdp-floating .vdp-float-close {
	position: absolute; top: -8px; right: -8px; z-index: 3; width: 24px; height: 24px;
	line-height: 22px; text-align: center; border: 0; border-radius: 50%;
	background: rgba(0, 0, 0, .8); color: #fff; cursor: pointer; font-size: 16px; padding: 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}
.vdp-floating .vdp-float-mute {
	position: absolute; bottom: 12px; right: 12px; z-index: 5;
	width: 36px; height: 36px; padding: 0; cursor: pointer; display: none;
}
.vdp-floating.vdp-collapsed { width: 96px; height: 96px; cursor: pointer; }
.vdp-floating.vdp-collapsed .vdp-float-inner { border-radius: 50%; }
.vdp-floating.vdp-expanded { width: 300px; height: 533px; }
.vdp-floating.vdp-expanded .vdp-float-inner { border-radius: 16px; }
.vdp-floating.vdp-expanded .vdp-float-video { cursor: default; }
.vdp-floating.vdp-expanded .vdp-float-mute { display: flex; pointer-events: auto; }

/* ---- Controles estilo Instagram: vidro fosco + ícone SVG ---- */
.vdp-mute-btn, .vdp-floating .vdp-float-arrow {
	border: 1px solid rgba(255, 255, 255, .28);
	background: rgba(18, 18, 20, .34);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	backdrop-filter: blur(14px) saturate(160%);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .12);
	border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	transition: background .15s ease, transform .12s ease;
}
.vdp-mute-btn:active, .vdp-floating .vdp-float-arrow:active { transform: scale(.92); }
.vdp-floating .vdp-float-arrow:active { transform: translateX(-50%) scale(.92); }
.vdp-spk { width: 58%; height: 58%; display: block; overflow: visible; }
.vdp-spk-body { fill: #fff; }
.vdp-spk-wave { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; display: none; }
.vdp-spk-slash { stroke: #fff; stroke-width: 2; stroke-linecap: round; }
.is-sound .vdp-spk-wave { display: inline; }
.is-sound .vdp-spk-slash { display: none; }

/* posição: lado (com safe-area do iOS e teto de largura para nunca gerar scroll lateral) */
.vdp-floating { max-width: calc(100vw - 24px); box-sizing: border-box; }
.vdp-floating.vdp-h-right { right: max(18px, env(safe-area-inset-right)); }
.vdp-floating.vdp-h-left { left: max(18px, env(safe-area-inset-left)); }
.vdp-floating.vdp-h-left .vdp-float-close { right: auto; left: -8px; }
/* posição: altura */
.vdp-floating.vdp-v-bottom { bottom: max(18px, env(safe-area-inset-bottom)); }
.vdp-floating.vdp-v-middle { top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
	/* recolhido: retângulo modesto (proporção story), não um bloco grande */
	.vdp-floating.vdp-collapsed { width: 82px; height: 120px; }
	.vdp-floating.vdp-collapsed .vdp-float-inner { border-radius: 16px; }
	/* expandido: cabe na tela, sem estourar largura/altura */
	.vdp-floating.vdp-expanded { width: min(72vw, 320px); height: min(122vw, 76vh); }
	/* fecha por dentro no mobile, pra não empurrar a borda da tela */
	.vdp-floating .vdp-float-close { top: 5px; right: 5px; }
	.vdp-floating.vdp-h-left .vdp-float-close { left: 5px; right: auto; }
}

/* Acessibilidade: respeita quem pediu menos movimento. */
@media (prefers-reduced-motion: reduce) {
	.vdp-reels-track { scroll-behavior: auto; }
	.vdp-reel, .vdp-floating, .vdp-floating .vdp-float-inner { transition: none; }
}

/* ============================================================
 * v3.7 — retangular + blindagem contra CSS do tema + modal de fechar
 * (id-scoped + !important para vencer temas que usam !important em button)
 * ============================================================ */

/* Neutraliza estilos de <button> do tema dentro do widget e do modal */
#vdp-floating button, #vdp-floating [role="button"], #vdp-float-modal button {
	-webkit-appearance: none !important; appearance: none !important;
	box-sizing: border-box !important; margin: 0 !important;
	min-width: 0 !important; max-width: none !important; min-height: 0 !important;
	font-family: inherit !important; letter-spacing: normal !important;
	text-transform: none !important; text-shadow: none !important; float: none !important;
}
/* Reels: garante que o tema não deforme os tiles/botões */
.vdp-reels .vdp-reel {
	-webkit-appearance: none !important; appearance: none !important;
	padding: 0 !important; margin: 0 !important; min-width: 0 !important;
	background: #000 !important; box-shadow: none !important;
}

/* Botão fechar (X): dentro do card, glass */
#vdp-floating .vdp-float-close {
	top: 8px !important; right: 8px !important; left: auto !important; bottom: auto !important;
	width: 30px !important; height: 30px !important; padding: 0 !important;
	border-radius: 50% !important; font-size: 17px !important; line-height: 1 !important;
	display: flex !important; align-items: center !important; justify-content: center !important;
	color: #fff !important; border: 1px solid rgba(255, 255, 255, .28) !important;
	background: rgba(18, 18, 20, .42) !important;
	-webkit-backdrop-filter: blur(12px) saturate(160%) !important; backdrop-filter: blur(12px) saturate(160%) !important;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .3) !important;
}
#vdp-floating.vdp-h-left .vdp-float-close { right: 8px !important; left: auto !important; }

/* Setas e botão de som: tamanho fixo, glass, à prova de tema */
#vdp-floating .vdp-float-arrow, #vdp-floating .vdp-float-mute {
	width: 36px !important; height: 36px !important; padding: 0 !important;
	border-radius: 999px !important;
	display: flex; align-items: center !important; justify-content: center !important;
	border: 1px solid rgba(255, 255, 255, .28) !important;
	background: rgba(18, 18, 20, .36) !important;
	-webkit-backdrop-filter: blur(14px) saturate(160%) !important; backdrop-filter: blur(14px) saturate(160%) !important;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .28) !important;
}
#vdp-floating .vdp-float-arrow { position: absolute !important; left: 50% !important; transform: translateX(-50%) !important; }
#vdp-floating .vdp-float-prev { top: 12px !important; bottom: auto !important; }
#vdp-floating .vdp-float-next { bottom: 12px !important; top: auto !important; }
/* visibilidade: setas e som só no expandido; nunca minimizado */
#vdp-floating .vdp-float-arrow { display: none !important; }
#vdp-floating.vdp-expanded.vdp-has-feed .vdp-float-arrow { display: flex !important; }
#vdp-floating .vdp-float-mute { display: none !important; }
#vdp-floating.vdp-expanded .vdp-float-mute { display: flex !important; }

/* Retangular: expandido (desktop) */
#vdp-floating.vdp-expanded { width: 300px !important; height: 520px !important; }
#vdp-floating.vdp-expanded .vdp-float-inner { border-radius: 18px !important; }

@media (max-width: 600px) {
	#vdp-floating.vdp-expanded { width: min(74vw, 320px) !important; height: min(128vw, 78vh) !important; }
}

/* Modal de confirmação de fechar (glass) */
.vdp-float-modal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s ease; }
.vdp-float-modal[hidden] { display: none; }
.vdp-float-modal.is-open { opacity: 1; }
.vdp-float-modal .vdp-float-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .5); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.vdp-float-modal .vdp-float-modal-card {
	position: relative; z-index: 1; width: min(92vw, 340px);
	background: rgba(28, 28, 32, .74); color: #fff;
	-webkit-backdrop-filter: blur(18px) saturate(160%); backdrop-filter: blur(18px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, .16); border-radius: 18px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .4); padding: 22px 20px;
	transform: translateY(8px) scale(.98); transition: transform .22s cubic-bezier(.22, .61, .36, 1);
}
.vdp-float-modal.is-open .vdp-float-modal-card { transform: translateY(0) scale(1); }
.vdp-float-modal h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; color: #fff; }
.vdp-float-modal .vdp-fm-text { margin: 0 0 14px; font-size: 14px; opacity: .85; }
.vdp-float-modal .vdp-fm-check { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; margin: 0 0 18px; }
.vdp-float-modal .vdp-fm-check input { width: 18px; height: 18px; accent-color: #fff; flex: 0 0 auto; }
.vdp-float-modal .vdp-fm-actions { display: flex; gap: 10px; justify-content: flex-end; }
.vdp-float-modal .vdp-fm-actions button {
	-webkit-appearance: none; appearance: none; border-radius: 999px; padding: 9px 18px;
	font-size: 14px; font-weight: 600; cursor: pointer; border: 1px solid rgba(255, 255, 255, .24);
	background: transparent; color: #fff; transition: background .15s ease, opacity .15s ease;
}
.vdp-float-modal .vdp-fm-cancel:hover { background: rgba(255, 255, 255, .1); }
.vdp-float-modal .vdp-fm-confirm { background: #e0483d; border-color: #e0483d; }
.vdp-float-modal .vdp-fm-confirm:hover { background: #c93c32; }
.vdp-float-modal .vdp-fm-confirm:disabled { opacity: .45; cursor: not-allowed; }

/* ---- Controle de volume estilo Instagram (slider vertical no hover) ---- */
.vdp-vol-pop {
	position: fixed; z-index: 100001;
	transform: translate(-50%, -100%) translateY(-10px);
	padding: 12px 9px; border-radius: 999px;
	background: rgba(18, 18, 20, .6); border: 1px solid rgba(255, 255, 255, .22);
	-webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
	box-shadow: 0 8px 26px rgba(0, 0, 0, .34);
	opacity: 0; pointer-events: none; transition: opacity .14s ease;
}
.vdp-vol-pop.is-open { opacity: 1; pointer-events: auto; }
.vdp-vol-slider {
	-webkit-appearance: slider-vertical; appearance: slider-vertical;
	writing-mode: vertical-lr; direction: rtl;
	width: 6px; height: 100px; margin: 0; display: block;
	cursor: pointer; accent-color: #fff; background: transparent;
}
/* Mobile: sem hover -> só mute/tap, igual ao Instagram app */
@media (hover: none) { .vdp-vol-pop { display: none !important; } }

/* ---- Botão de CTA sobre o vídeo (aparece após alguns segundos, perto do rodapé) ---- */
.vdp-reel .vdp-cta, .vdp-float-slide .vdp-cta, .vdp-story-player .vdp-cta {
	position: absolute; left: 50%; bottom: 12px; z-index: 4;
	transform: translateX(-50%) translateY(8px);
	max-width: 86%; padding: 8px 16px; border-radius: 999px;
	font-size: 13px; font-weight: 700; line-height: 1; letter-spacing: .01em;
	color: #111; background: rgba(255, 255, 255, .94);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
	text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
	cursor: pointer; opacity: 0; pointer-events: none;
	transition: opacity .28s ease, transform .28s cubic-bezier(.22, .61, .36, 1);
}
.vdp-cta.is-show { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

/* ============================================================
 * Faixa de produto: miniaturas circulares (story) + overlay (popup)
 * ============================================================ */
.vdp-story-faixa { margin: 20px 0; }
.vdp-story-title { font-size: 18px; font-weight: 700; margin: 0 0 12px; }
.vdp-story-viewport { position: relative; max-width: 100%; }
.vdp-story-row { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding: 4px 2px; }
.vdp-story-row::-webkit-scrollbar { display: none; }
.vdp-story-thumb {
	position: relative; flex: 0 0 auto; width: 92px; height: 92px; border: 0; padding: 3px;
	border-radius: 50%; cursor: pointer;
	background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.vdp-story-thumb-img { width: 100%; height: 100%; border-radius: 50%; display: block; border: 3px solid #fff; box-sizing: border-box; background-color: #000; background-size: cover; background-position: center; background-repeat: no-repeat; }
.vdp-story-thumb-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .85); }
.vdp-story-thumb-play:before { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 5px 0 5px 9px; border-color: transparent transparent transparent #111; }
.vdp-story-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 30px; height: 30px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 1px 6px rgba(0, 0, 0, .25); cursor: pointer; font-size: 14px; line-height: 30px; color: #111; padding: 0; }
.vdp-story-prev { left: -6px; }
.vdp-story-next { right: -6px; }
.vdp-story-arrow[hidden] { display: none; }

/* Overlay */
.vdp-story-overlay { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s ease; }
.vdp-story-overlay[hidden] { display: none; }
.vdp-story-overlay.is-open { opacity: 1; }
.vdp-story-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.vdp-story-stage { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; }
.vdp-story-player { position: relative; width: min(86vw, 340px); aspect-ratio: 9 / 16; max-height: 88vh; background: #000; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.vdp-story-video { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }
/* Blindagem contra CSS de button do tema + estilos dos controles */
.vdp-story-overlay button, .vdp-story-overlay [role="button"] {
	-webkit-appearance: none !important; appearance: none !important; box-sizing: border-box !important;
	margin: 0 !important; min-width: 0 !important; max-width: none !important; min-height: 0 !important;
	font-family: inherit !important; letter-spacing: normal !important; text-transform: none !important; text-shadow: none !important;
}
.vdp-story-overlay .vdp-story-close {
	position: absolute !important; top: 8px !important; right: 8px !important; z-index: 4 !important;
	width: 32px !important; height: 32px !important; padding: 0 !important; border-radius: 50% !important;
	display: flex !important; align-items: center !important; justify-content: center !important;
	font-size: 19px !important; color: #fff !important; cursor: pointer;
	background: rgba(0, 0, 0, .5) !important; border: 1px solid rgba(255, 255, 255, .25) !important;
	-webkit-backdrop-filter: blur(10px) !important; backdrop-filter: blur(10px) !important;
}
.vdp-story-overlay .vdp-story-nav {
	z-index: 2; width: 42px !important; height: 42px !important; padding: 0 !important; border-radius: 50% !important;
	display: flex !important; align-items: center; justify-content: center; cursor: pointer;
	font-size: 16px !important; color: #fff !important;
	background: rgba(255, 255, 255, .16) !important; border: 1px solid rgba(255, 255, 255, .2) !important;
	-webkit-backdrop-filter: blur(10px) !important; backdrop-filter: blur(10px) !important;
}
.vdp-story-player .vdp-story-mute { position: absolute; bottom: 12px; right: 12px; z-index: 3; width: 36px; height: 36px; }
@media (max-width: 600px) {
	.vdp-story-stage { gap: 0; }
	.vdp-story-overlay .vdp-story-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, .4) !important; }
	.vdp-story-prev-nav { left: 8px; }
	.vdp-story-next-nav { right: 8px; }
}

/* ============================================================
 * Ajustes: story no canto (dock), setas up/down à direita,
 * CTA com carrinho, confete Copa 2026, spotlight mais espaçado
 * ============================================================ */

/* Posição/tamanho do overlay são aplicados via JS (forceVisible) com !important inline. */
.vdp-story-overlay.is-open { opacity: 1; }

/* setas up/down no meio da direita */
.vdp-story-nav-group { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 10px; }
.vdp-story-overlay .vdp-story-nav { position: static !important; transform: none !important; width: 38px !important; height: 38px !important; border-radius: 50% !important; display: flex !important; align-items: center; justify-content: center; padding: 0 !important; cursor: pointer; color: #fff !important; background: rgba(18, 18, 20, .42) !important; border: 1px solid rgba(255, 255, 255, .24) !important; -webkit-backdrop-filter: blur(12px) saturate(160%) !important; backdrop-filter: blur(12px) saturate(160%) !important; }
.vdp-story-overlay .vdp-story-nav .vdp-chev { width: 18px; height: 18px; }

/* CTA com ícone de carrinho (entra com transição já herdada de .vdp-cta) */
.vdp-cta { display: inline-flex; align-items: center; gap: 7px; }
.vdp-cart { width: 16px; height: 16px; flex: 0 0 auto; color: currentColor; display: inline-block; }
.vdp-cta-label { display: inline-block; }

/* Confete + bola (abertura temática Copa 2026) */
.vdp-story-fx { position: absolute; inset: 0; z-index: 6; pointer-events: none; overflow: hidden; }
.vdp-confetti { position: absolute; top: -14px; width: 8px; height: 13px; border-radius: 1px; opacity: .95; animation: vdp-confetti-fall linear forwards; }
@keyframes vdp-confetti-fall { 0% { transform: translateY(-14px) rotate(0); opacity: 1; } 100% { transform: translateY(560px) rotate(540deg); opacity: 0; } }
.vdp-ball { position: absolute; left: 50%; top: 42%; font-size: 40px; transform: translate(-50%, -50%) scale(0); animation: vdp-ball-pop 1.4s cubic-bezier(.2, 1.1, .3, 1) forwards; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .4)); }
@keyframes vdp-ball-pop {
	0% { transform: translate(-50%, -50%) scale(0) rotate(-90deg); opacity: 0; }
	20% { transform: translate(-50%, -60%) scale(1.2) rotate(150deg); opacity: 1; }
	36% { transform: translate(-50%, -44%) scale(.92) rotate(250deg); opacity: 1; }
	52% { transform: translate(-50%, -50%) scale(1.04) rotate(330deg); opacity: 1; }
	70% { transform: translate(-50%, -50%) scale(1) rotate(360deg); opacity: 1; }
	100% { transform: translate(-50%, -50%) scale(.86) rotate(360deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .vdp-confetti, .vdp-ball { display: none; } }

/* Spotlight: mais espaço entre os itens + preenche a largura */
.vdp-reels--spotlight.vdp-inf .vdp-reels-track { gap: 24px; }
.vdp-reels--spotlight.vdp-inf .vdp-reels-viewport { max-width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%); }

/* Mini-motion de abertura (texto) do story */
.vdp-story-intro { position: absolute; left: 16px; right: 16px; top: 34%; z-index: 7; text-align: center; pointer-events: none; opacity: 0; }
.vdp-story-intro-title { display: block; font-size: 26px; font-weight: 800; line-height: 1.1; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .55); text-transform: uppercase; letter-spacing: .01em; }
.vdp-story-intro-sub { display: block; margin-top: 8px; font-size: 15px; font-weight: 600; color: #ffdf00; text-shadow: 0 2px 10px rgba(0, 0, 0, .55); }
.vdp-story-intro.is-play { animation: vdp-intro-in 2.6s ease forwards; }
.vdp-story-intro.is-play .vdp-story-intro-title { animation: vdp-intro-pop .5s cubic-bezier(.2, 1.4, .4, 1) both; }
.vdp-story-intro.is-play .vdp-story-intro-sub { animation: vdp-intro-pop .5s cubic-bezier(.2, 1.4, .4, 1) .4s both; }
@keyframes vdp-intro-in { 0% { opacity: 0; } 8% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; } }
@keyframes vdp-intro-pop { 0% { transform: translateY(16px) scale(.9); opacity: 0; } 60% { transform: translateY(0) scale(1.04); opacity: 1; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .vdp-story-intro, .vdp-story-intro.is-play { animation: none; opacity: 0; } }

/* CTA do story mais largo */
.vdp-story-player .vdp-cta { min-width: 200px; padding: 11px 22px !important; justify-content: center; box-sizing: border-box; }

/* Founder: setas up/down empilhadas na direita (igual ao story) */
#vdp-floating .vdp-float-prev { top: calc(50% - 26px) !important; bottom: auto !important; left: auto !important; right: 12px !important; transform: translateY(-50%) !important; }
#vdp-floating .vdp-float-next { top: calc(50% + 26px) !important; bottom: auto !important; left: auto !important; right: 12px !important; transform: translateY(-50%) !important; }
