
/* ==========================================================================
   Central de Ajuda Interativa do Vendedor — ZapExpress 2.0
   Estilos Globais, Hotspots e Cards Inteligentes
   ========================================================================== */

:root {
  --bg-main: #030712;
  --bg-card: #0b0f19;
  --bg-card-hover: #111827;
  --border-color: #1e293b;
  --border-focus: #3b82f6;
  
  /* Cores ZapExpress */
  --primary-green: #10b981;
  --primary-green-glow: rgba(16, 185, 129, 0.4);
  --primary-cyan: #06b6d4;
  --primary-cyan-glow: rgba(6, 182, 212, 0.4);
  --accent-blue: #3b82f6;

  /* Tipografia */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 60px;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 16px;
}

/* ==========================================================================
   Header Superior e Notificações de Boas-Vindas
   ========================================================================== */
.help-header {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 15, 25, 0.85) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  color: #34d399;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; filter: drop-shadow(0 0 6px #10b981); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.help-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 6px;
}

.help-subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 900px;
}

/* Banner Interativo Orientativo */
.instruction-banner {
  margin-top: 16px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a5f3fc;
  font-size: 13.5px;
  font-weight: 500;
}

.instruction-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Menu de Capítulos (1 a 9)
   ========================================================================== */
.chapters-nav-wrapper {
  position: sticky;
  top: 16px;
  z-index: 80;
  margin-bottom: 24px;
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(14px);
  padding: 8px 0;
}

.chapters-nav {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
  width: 100%;
}

.chapter-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 11px 6px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.chapter-btn:hover {
  background: rgba(30, 41, 59, 0.9);
  color: #ffffff;
  border-color: #334155;
}

.chapter-btn.active {
  background: var(--primary-green);
  border-color: #34d399;
  color: #ffffff;
  box-shadow: 0 4px 16px var(--primary-green-glow);
}

/* ==========================================================================
   Área Principal de Exibição do Capítulo
   ========================================================================== */
.chapter-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  position: relative;
}

.chapter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.chapter-heading {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chapter-counter {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-cyan);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.nav-arrows {
  display: flex;
  gap: 8px;
}

.nav-arrow-btn {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.nav-arrow-btn:hover:not(:disabled) {
  background: #1e293b;
  border-color: #38bdf8;
}

.nav-arrow-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ==========================================================================
   Canvas Interativo (Imagem Limpa + Hotspots Relativos)
   ========================================================================== */
.interactive-canvas-wrapper {
  position: relative;
  width: 100%;
  background: #020617;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: visible; /* Permite cards flutuantes sem corte no desktop */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.image-stage {
  position: relative;
  width: 100%;
  display: block;
  user-select: none;
}

.base-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  pointer-events: none;
}

/* ==========================================================================
   Hotspot (Ponto Numerado Interativo)
   ========================================================================== */
.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  border: 2.5px solid #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7), 0 0 0 3px rgba(16, 185, 129, 0.35);
  outline: none;
  touch-action: manipulation;
}

/* Animação suave de pulsação */
.hotspot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #10b981;
  opacity: 0.6;
  animation: hotspot-pulse 2.2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

@keyframes hotspot-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot:hover,
.hotspot:focus-visible {
  transform: translate(-50%, -50%) scale(1.18);
  background: #059669;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8), 0 0 0 5px rgba(16, 185, 129, 0.6);
  z-index: 45;
}

.hotspot:focus-visible {
  border-color: #fef08a; /* Contraste amarelo para foco de teclado acessível */
}

.hotspot.is-active {
  background: #0ea5e9;
  border-color: #ffffff;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.8), 0 0 0 5px rgba(14, 165, 233, 0.5);
  transform: translate(-50%, -50%) scale(1.22);
  z-index: 50;
}

.hotspot.is-active::after {
  border-color: #0ea5e9;
}

/* ==========================================================================
   Card Flutuante de Explicação (Desktop)
   ========================================================================== */
.hotspot-card {
  position: absolute;
  width: 320px;
  background: #090d16;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 60;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s;
  backdrop-filter: blur(16px);
}

.hotspot-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.card-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  flex: 1;
}

.card-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.card-close-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.card-body {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.card-tip {
  font-size: 11.5px;
  line-height: 1.4;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border-left: 2.5px solid #0284c7;
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

.card-tip strong {
  color: #bae6fd;
}

.pin-status-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6ee7b7;
  display: inline-block;
  margin-top: 6px;
}

/* ==========================================================================
   Mobile / Bottom-Sheet Modal
   ========================================================================== */
.mobile-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.mobile-sheet-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #090d16;
  border-top: 1px solid var(--border-color);
  border-radius: 24px 24px 0 0;
  padding: 24px 20px 36px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-sheet.is-open {
  transform: translateY(0);
}

.mobile-sheet-drag-handle {
  width: 40px;
  height: 5px;
  background: #334155;
  border-radius: var(--radius-full);
  margin: 0 auto 16px;
}

/* ==========================================================================
   Acessibilidade e Redução de Movimento
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .pulse-dot,
  .hotspot::after {
    animation: none !important;
  }
  .hotspot,
  .hotspot-card,
  .mobile-sheet {
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .chapters-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .chapters-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .chapter-btn {
    padding: 10px 4px;
    font-size: 12px;
  }
  .help-title {
    font-size: 20px;
  }
  .chapter-heading {
    font-size: 16px;
  }
  .container {
    padding: 12px 8px;
  }
  .chapter-container {
    padding: 14px;
  }
  /* No mobile o card flutuante não é posicionado absolutamente sobre a imagem, usa o bottom-sheet */
  .hotspot-card {
    display: none !important;
  }
  .hotspot {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Busca Rápida por Palavra-Chave
   ========================================================================== */
.search-wrapper {
  position: relative;
  margin-top: 16px;
}

.search-input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  transition: border-color var(--transition-fast);
}

.search-input-box:focus-within {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.search-icon {
  font-size: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-clear-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  flex-shrink: 0;
}

.search-clear-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #0b0f19;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
  max-height: 340px;
  overflow-y: auto;
  z-index: 120;
  padding: 6px;
}

.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: inherit;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  background: rgba(16, 185, 129, 0.12);
}

.search-result-chapter {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary-cyan);
}

.search-result-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.search-result-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.search-no-results {
  padding: 14px 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   Barra de Progresso Geral
   ========================================================================== */
.progress-wrapper {
  margin-top: 16px;
}

.progress-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

#progress-text {
  color: #6ee7b7;
}

#progress-quiz-text {
  color: #a5f3fc;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-cyan));
  border-radius: var(--radius-full);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Indicador de progresso nos botões do menu de capítulos */
.chapter-btn {
  position: relative;
}

.chapter-progress-dot {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text-muted);
}

.chapter-progress-dot.is-partial {
  background: #fbbf24;
}

.chapter-progress-dot.is-complete {
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.7);
}

/* Hotspot já visitado */
.hotspot.is-visited::before {
  content: '✓';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: #0ea5e9;
  border: 2px solid var(--bg-card);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 46;
}

/* ==========================================================================
   Modo Tour Guiado
   ========================================================================== */
.tour-btn {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.4);
  color: #a5f3fc;
}

.tour-btn:hover {
  background: rgba(6, 182, 212, 0.22);
  border-color: #22d3ee;
}

.tour-btn.is-active {
  background: var(--primary-cyan);
  border-color: #22d3ee;
  color: #052e33;
}

.tour-control-bar {
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.tour-step-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #22d3ee;
  background: rgba(6, 182, 212, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.tour-step-desc {
  flex: 1 1 260px;
  font-size: 13px;
  color: #e0f2fe;
  min-width: 200px;
}

.tour-control-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.tour-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.tour-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.16);
}

.tour-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.tour-nav-btn-primary {
  background: var(--primary-cyan);
  border-color: #22d3ee;
  color: #052e33;
}

.tour-nav-btn-primary:hover:not(:disabled) {
  background: #22d3ee;
}

.tour-exit-btn {
  background: transparent;
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fca5a5;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.tour-exit-btn:hover {
  background: rgba(248, 113, 113, 0.12);
}

/* ==========================================================================
   Quiz de Fixação do Capítulo
   ========================================================================== */
.quiz-section {
  margin-top: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.5);
}

.quiz-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(16, 185, 129, 0.08);
  border: none;
  color: #d1fae5;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.quiz-toggle-btn:hover {
  background: rgba(16, 185, 129, 0.14);
}

.quiz-toggle-arrow {
  transition: transform var(--transition-fast);
}

.quiz-toggle-btn[aria-expanded="true"] .quiz-toggle-arrow {
  transform: rotate(180deg);
}

.quiz-body {
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.quiz-heading {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.quiz-question {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.quiz-question:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.quiz-question-text {
  font-size: 13.5px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-option-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quiz-option-btn:hover:not(:disabled) {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}

.quiz-option-btn:disabled {
  cursor: default;
}

.quiz-option-btn.is-correct {
  border-color: #34d399;
  background: rgba(16, 185, 129, 0.16);
  color: #d1fae5;
}

.quiz-option-btn.is-incorrect {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.quiz-feedback {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: none;
}

.quiz-feedback.is-visible {
  display: block;
}

.quiz-feedback.is-correct {
  background: rgba(16, 185, 129, 0.1);
  border-left: 2.5px solid #10b981;
  color: #a7f3d0;
}

.quiz-feedback.is-incorrect {
  background: rgba(248, 113, 113, 0.08);
  border-left: 2.5px solid #ef4444;
  color: #fecaca;
}

.quiz-result {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #a5f3fc;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .tour-control-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .tour-control-buttons {
    justify-content: space-between;
  }
}
