/* ==========================================================================
   ESTILOS PERSONALIZADOS - EL CÓDIGO PROHIBIDO DE LA RESISTENCIA (CRO BLACK)
   Diseño de Software Médico / Reporte Clínico de Alta Gama
   Paleta: #0A0A0A (Fondo), #1A1A1A (Cards), #333333 (Bordes Finos),
           #FFFFFF (Títulos), #A0A0A0 (Texto Secundario), #FF0000 (CTA Sólido),
           #FF4D4D (Rojo Alerta), #EAB308 (Ámbar Alerta Médica)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --bg-main: #0A0A0A;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --text-main: #FFFFFF;
  --text-muted: #A0A0A0;
  --color-border: #333333;
  --color-cta: #FF0000;
  --color-alert-red: #FF4D4D;
  --color-alert-amber: #EAB308;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 0, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(255, 0, 0, 0.03) 0%, transparent 60%);
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.font-mono-tech {
  font-family: 'JetBrains Mono', monospace;
}

/* Scrollbar fina */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  border-radius: 2px;
}

/* ========================================== */
/* BOTONES CRO: ROJO INTENSO CON PULSO/GLOW   */
/* ========================================== */

@keyframes pulse-cta {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7), 0 0 22px rgba(255, 0, 0, 0.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 12px rgba(255, 0, 0, 0), 0 0 38px rgba(255, 0, 0, 0.85);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0), 0 0 22px rgba(255, 0, 0, 0.5);
  }
}

.btn-cta-pulse {
  background-color: #FF0000 !important;
  background: linear-gradient(135deg, #FF1A1A 0%, #FF0000 50%, #B80000 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800;
  animation: pulse-cta 1.9s infinite cubic-bezier(0.4, 0, 0.6, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 150, 150, 0.4);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.6);
  cursor: pointer;
}

.btn-cta-pulse:hover {
  background: linear-gradient(135deg, #FF3333 0%, #FF0000 50%, #D40000 100%) !important;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 0 35px rgba(255, 0, 0, 0.9);
}

.btn-cta-pulse:active {
  transform: translateY(1px) scale(0.99);
}

@keyframes pulse-subtle {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6), 0 4px 18px rgba(255, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0), 0 6px 30px rgba(255, 0, 0, 0.7);
  }
}

.btn-salvation-solid {
  background-color: #FF0000 !important;
  background: linear-gradient(135deg, #FF1A1A 0%, #FF0000 50%, #C40000 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse-subtle 2.1s infinite cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-salvation-solid:hover {
  background-color: #E60000 !important;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.85);
}
}

.btn-salvation-solid:active {
  transform: translateY(0) scale(0.99);
}

/* ========================================== */
/* REPORTE CLÍNICO Y MATRIZ DE DIAGNÓSTICO   */
/* ========================================== */

/* Card Contenedor estilo Reporte Médico */
.medical-report-card {
  background-color: #1A1A1A;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Caja de Resultado: Nivel Crítico (Borde rojo brillante + Fondo Oscuro) */
.result-critical-box {
  background-color: #160B0B;
  border: 2px solid var(--color-alert-red);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 0 20px rgba(255, 77, 77, 0.15), inset 0 0 15px rgba(255, 77, 77, 0.06);
}

/* Matriz de Diagnóstico: Columna Izquierda (Descarte) */
.matrix-col-descarte {
  background-color: #151515;
  border: 1px solid #2B2B2B;
  border-radius: 0.75rem;
  padding: 1.1rem;
}

/* Matriz de Diagnóstico: Columna Derecha (Hallazgo Patológico con borde ámbar) */
.matrix-col-hallazgo {
  background-color: #202020;
  border: 1px solid rgba(234, 179, 8, 0.65);
  border-radius: 0.75rem;
  padding: 1.1rem;
  position: relative;
}

.matrix-col-hallazgo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #EAB308, transparent);
  border-radius: 0.75rem 0.75rem 0 0;
}

/* Visualizador de Nivel de Colapso (95%) */
.collapse-meter-bar {
  background: #111111;
  border: 1px solid #2D2D2D;
  border-radius: 9999px;
  height: 0.9rem;
  position: relative;
  overflow: hidden;
  padding: 2px;
}

.collapse-meter-fill {
  background: linear-gradient(90deg, #10B981 0%, #F59E0B 55%, #FF0000 85%, #FF4D4D 100%);
  height: 100%;
  border-radius: 9999px;
  box-shadow: 0 0 14px rgba(255, 77, 77, 0.85);
  transition: width 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Badge animado de (CRÍTICO) con entrada elástica */
.critical-badge-pill {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  color: #FF4D4D;
  background-color: rgba(255, 0, 0, 0.2);
  border: 1px solid rgba(255, 77, 77, 0.6);
  padding: 0.12rem 0.45rem;
  border-radius: 0.375rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.3) translateX(-8px);
  transition: opacity 0.35s ease-out, transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
  vertical-align: middle;
}

.critical-badge-pill.revealed {
  opacity: 1;
  transform: scale(1) translateX(0);
  animation: critical-pill-pulse 1.8s infinite ease-in-out;
}

@keyframes critical-pill-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 77, 77, 0.5);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.85);
    border-color: #FF4D4D;
  }
}

/* Transiciones entre pasos de Quiz */
.quiz-screen {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: none;
}

.quiz-screen.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  display: block;
}

/* Botón de opción de Quiz */
.quiz-option-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--color-border);
  transition: all 0.2s ease-in-out;
}

.quiz-option-btn:hover {
  background-color: var(--bg-card-hover);
  border-color: #4A4A4A;
  transform: translateY(-2px);
}

.quiz-option-btn:active, .quiz-option-btn.selected {
  background-color: #241313;
  border-color: var(--color-alert-red);
  box-shadow: 0 0 16px rgba(255, 77, 77, 0.25);
  transform: scale(0.99);
}

/* Animación de escaneo de radar tecnológico */
@keyframes radar-sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.radar-sweep-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform-origin: top left;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.4) 0%, rgba(255, 0, 0, 0) 70%);
  animation: radar-sweep 2.2s linear infinite;
  border-radius: 100% 0 0 0;
}

/* ========================================== */
/* NOTIFICACIONES DE PRUEBA SOCIAL FLOTANTES  */
/* ========================================== */

#social-proof-toast-container {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 9999;
  pointer-events: none;
  max-width: 320px;
  width: calc(100vw - 2.5rem);
}

.social-proof-toast {
  background-color: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 0.75rem;
  padding: 0.75rem 0.95rem;
  box-shadow: 0 12px 28px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.social-proof-toast.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-icon-wrapper {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 9999px;
  background-color: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(22, 163, 74, 0.15);
}

.toast-check-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.toast-text-wrapper {
  flex-grow: 1;
  min-width: 0;
}

.toast-message {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #374151;
  margin: 0;
}

.toast-message strong {
  color: #111827;
  font-weight: 700;
}

.toast-timestamp {
  display: block;
  font-size: 0.6875rem;
  color: #6B7280;
  margin-top: 0.2rem;
  font-weight: 500;
}

/* ========================================== */
/* CONTADOR DINÁMICO EN VIVO (NEUROMARKETING) */
/* ========================================== */

.live-indicator-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pulse-dot-beacon {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  background-color: #10B981;
  border-radius: 9999px;
  display: inline-block;
}

.pulse-dot-beacon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 9999px;
  background-color: rgba(16, 185, 129, 0.45);
  animation: beacon-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes beacon-ping {
  75%, 100% {
    transform: scale(2.3);
    opacity: 0;
  }
}

.live-counter-number {
  display: inline-block;
  color: #FFFFFF !important;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: -0.01em;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), text-shadow 0.25s ease, color 0.2s ease;
}

.live-counter-number.counter-updating {
  transform: scale(1.08);
  color: #FFFFFF !important;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.7), 0 0 24px rgba(255, 255, 255, 0.5);
}

/* ======================================================== */
/* PANTALLA DE PROCESAMIENTO INTERMEDIO (POST PREGUNTA 3)   */
/* ======================================================== */

.mid-processing-spinner {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  border: 3px solid rgba(255, 0, 0, 0.15);
  border-top-color: #FF0000;
  border-right-color: #FF4D4D;
  animation: spin-pulse 1.1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}

@keyframes spin-pulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mid-testimonial-bubble {
  background-color: #141414;
  border: 1px solid #2B2B2B;
  border-left: 3px solid #10B981;
  border-radius: 0.75rem;
  padding: 0.75rem 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: testimonial-slide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@keyframes testimonial-slide {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========================================== */
/* ANCLAJE DE PRECIO (PRICE ANCHORING CRO)    */
/* ========================================== */

.price-anchoring-box {
  background: linear-gradient(180deg, #181818 0%, #111111 100%);
  border: 1px solid #333333;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.price-anchor-strikethrough {
  color: #808080 !important;
  text-decoration: line-through;
  text-decoration-color: #FF4D4D;
  text-decoration-thickness: 2px;
}

.price-urgency-badge {
  background-color: #FF0000 !important;
  color: #FFFFFF !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 0.375rem;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  animation: badge-pulse-glow 1.8s infinite ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

@keyframes badge-pulse-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.85);
  }
}

.text-shadow-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.45), 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   REPRODUCTOR VSL ESTILO VTURB (MOBILE FIRST CRO)
   Diseñado para video vertical 9:16, inicio con autoplay sin sonido,
   botón superior llamativo para activar audio, barra de progreso falsa
   (fake bar con aceleración inicial y desaceleración) y controles
   estrictamente restringidos a Play/Pausa y Mute/Unmute.
   ========================================================================== */

.vturb-player-card {
  width: 100%;
  max-width: 270px;
  margin: 0.75rem auto 1.25rem auto;
  position: relative;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 26, 26, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.95), 0 0 25px rgba(255, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 640px) {
  .vturb-player-card {
    max-width: 310px;
  }
}

.vturb-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 480px;
  background: #000000;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  -webkit-user-select: none;
}

@media (max-height: 720px) {
  .vturb-video-wrapper {
    max-height: 420px;
  }
}

.vturb-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: auto;
  background: #000;
}

/* OVERLAY ESTILO VTURB: AUTOPLAY MUTED COM BOTÃO SUPERIOR */
.vturb-unmute-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.75rem;
  z-index: 25;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.vturb-unmute-overlay.vturb-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* BOTÓN SUPERIOR FLUTUANTE DE ALTA CONVERSIÓN */
.vturb-top-banner {
  background: linear-gradient(135deg, #FF1A1A 0%, #D40000 60%, #990000 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 9999px;
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 4px 22px rgba(255, 0, 0, 0.75), 0 0 15px rgba(255, 255, 255, 0.25);
  animation: vturb-btn-pulse 1.7s infinite cubic-bezier(0.4, 0, 0.6, 1);
  max-width: 95%;
  text-align: left;
}

@keyframes vturb-btn-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(255, 0, 0, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 0, 0, 1), 0 0 18px rgba(255, 255, 255, 0.45);
  }
}

.vturb-speaker-circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #FFFFFF;
  color: #D40000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  animation: vturb-speaker-wave 1.2s infinite ease-in-out;
}

@keyframes vturb-speaker-wave {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(-5deg); }
}

.vturb-banner-copy {
  display: flex;
  flex-direction: column;
}

.vturb-banner-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.vturb-banner-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  line-height: 1.15;
}

/* Indicador pulsante na parte de baixo do overlay */
.vturb-bottom-pulse-hint {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 0.4rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6875rem;
  color: #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* FAKE PROGRESS BAR (Barra de progresso falsa que acelera até a metade e depois desacelera) */
.vturb-fake-bar-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.22);
  position: absolute;
  bottom: 34px;
  left: 0;
  z-index: 20;
  pointer-events: none !important;
  user-select: none !important;
}

.vturb-fake-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF1A1A 0%, #FF4D4D 65%, #FF7A00 100%);
  position: relative;
  transition: width 0.15s linear;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.9);
}

.vturb-fake-bar-glow-dot {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 8px #FF0000, 0 0 12px #FFFFFF;
}

/* CONTROLES RESTRITOS: Apenas Play/Pausa e Mute/Unmute */
.vturb-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.65rem;
  z-index: 20;
  transition: opacity 0.3s ease;
}

.vturb-controls-bar.vturb-autohide {
  opacity: 0;
  pointer-events: none;
}

.vturb-btn-control {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  outline: none;
}

.vturb-btn-control:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.vturb-btn-control:active {
  transform: scale(0.92);
}

.vturb-brand-tag {
  display: flex;
  align-items: center;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.65);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Ícone de Estado Central Flutuante (ao pausar/reproduzir) */
.vturb-center-state-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 18;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.vturb-center-state-icon.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Toast de som ativado */
.vturb-feedback-pill {
  position: absolute;
  top: 1rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  z-index: 26;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.vturb-feedback-pill.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DELAYED PITCH CONTENT WRAPPER (APARECE SOLO TRAS 90% DEL VIDEO)
   ========================================================================== */

.vsl-pitch-delayed-wrapper {
  display: none !important;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.vsl-pitch-delayed-wrapper.revealed {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}


