@extends('layouts.questionnaire-game', [
'pageTitle' => $battery->title,
'qgTheme' => $qgTheme,
'faviconUrl' => $faviconUrl ?? null,
'projectName' => $projectName ?? null,
])
@section('content')
@if (! empty($logoUrl))

@endif
{{ $battery->title }}
@php
$progressPercent = $totalQuestions > 0
? (int) min(100, round(($questionNumber / $totalQuestions) * 100))
: 0;
@endphp
Pergunta {{ $questionNumber }} de {{ $totalQuestions }}
Em pausa
O tempo está parado. A pergunta fica oculta até continuar.
@include('portal.questionnaire._experience-success-modal')
@include('portal.questionnaire._experience-error-modal')
@endsection
@push('scripts')
@endpush