/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === DESIGN SYSTEM TOKENS — SysManager === */
:root {
  /* Brand */
  --sys-magenta:        #FC429A;
  --sys-magenta-bright: #FE5FAB;
  --sys-magenta-soft:   #FFBCDB;
  --sys-blue:           #1059AF;
  --sys-blue-bright:    #386BB7;
  --sys-blue-soft:      #B4D6FD;
  --sys-dark:           #1F1F1F;
  --sys-darker:         #111111;

  /* Functional aliases */
  --blue:     var(--sys-blue);
  --blue-dk:  #0B3D7A;
  --pink:     var(--sys-magenta);
  --violet:   #8b5cf6;
  --bg:       #F8FAFC;
  --surface:  #EFF6FF;
  --text:     #1e293b;
  --text-muted: #64748B;
  --gold:     #f59e0b;
  --white:    #ffffff;
  --error:    #DC2626;

  /* Radius — matches Design System --radius: 0.5rem */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow:   0 4px 24px rgba(0,0,0,0.09);
  --trans:    300ms ease-in-out;
}

/*
 * Tipografia fluida — escala continuamente:
 *  15" laptop  (1366px) → ~15px
 *  24" FHD     (1920px) → ~17px
 *  27" QHD     (2560px) → ~19px (teto sem modo totem)
 *  43" totem   (1920px) → 24px via .totem-mode
 */
html { font-size: clamp(15px, 0.42vw + 9.4px, 20px); }

body {
  font-family: 'Manrope', 'Inter', ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow: hidden;
  position: fixed;
  inset: 0;
}

/* ─── SCREENS ─── */
.screen {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  z-index: 1;
  overflow-y: auto;
}

.screen.active {
  display: flex;
  animation: screenIn var(--trans) ease-in-out both;
  z-index: 10;
}

.screen.exit-anim {
  display: flex;
  animation: screenOut var(--trans) ease-in-out both;
  z-index: 5;
}

@keyframes screenIn {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes screenOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-28px); }
}

/* ─── TELA 0: BOAS-VINDAS ─── */
.screen-welcome {
  /* Gradient da marca: 262deg magenta → blue */
  background: linear-gradient(262deg, var(--sys-blue) 0%, #0B3D7A 40%, #1a1a2e 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
}

.welcome-inner {
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

/* Logo */
.logo-block { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.logo-svg {
  height: 44px;
  width: auto;
}

.logo-tagline {
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.8px;
}

.event-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 1.3rem;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.welcome-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.welcome-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 480px;
  font-weight: 400;
}

/* Prize Box */
.prize-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(245,158,11,0.13);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.6rem;
  text-align: left;
  max-width: 520px;
  width: 100%;
  backdrop-filter: blur(6px);
}

.prize-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }

.prize-content { flex: 1; }

.prize-main {
  color: var(--white);
  font-size: 0.97rem;
  line-height: 1.55;
  font-weight: 500;
}

.prize-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.welcome-footer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ─── SCREEN HEADER (shared) ─── */
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  background: var(--white);
  border-bottom: 1.5px solid #E2E8F0;
  position: sticky;
  top: 0;
  z-index: 20;
  gap: 1rem;
  flex-shrink: 0;
  box-shadow: 0 1px 8px rgba(16,89,175,0.06);
}

.logo-small-svg {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sys-magenta);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  flex: 1;
}

/* "Voltar ao início" reset button — top right of every header */
.btn-reset {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid #CBD5E1;
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--trans), border-color var(--trans), background var(--trans);
  flex-shrink: 0;
}

.btn-reset:hover {
  color: var(--sys-blue);
  border-color: var(--sys-blue);
  background: rgba(16,89,175,0.05);
}

/* Progress bar */
.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  justify-content: flex-end;
}

.progress-bar-bg {
  flex: 1;
  max-width: 320px;
  height: 6px;
  background: #E2E8F0;
  border-radius: 100px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sys-magenta), var(--sys-blue));
  border-radius: 100px;
  transition: width var(--trans);
}

.progress-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  min-width: 40px;
  font-variant-numeric: tabular-nums;
}

/* ─── TELA 1: IDENTIFICAÇÃO ─── */
.screen-form { background: var(--bg); }

.screen-body {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  max-width: min(880px, 92vw);
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

.screen-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sys-blue);
  margin-bottom: 0.3rem;
  letter-spacing: -0.3px;
}

.screen-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.id-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row-single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1px;
}

.form-group input,
.form-group select {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--sys-blue);
  box-shadow: 0 0 0 3px rgba(16,89,175,0.12);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-group input::placeholder { color: #94A3B8; }

.field-error {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--error);
  min-height: 1rem;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding-bottom: 2.5rem;
}

/* ─── TELA 2: QUESTIONÁRIO ─── */
.screen-quiz {
  background: var(--bg);
  display: none;
  flex-direction: column;
}

.screen-quiz.active { display: flex; }

.quiz-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}

.quiz-container {
  max-width: min(800px, 92vw);
  width: 100%;
  margin: 0 auto;
}

.question-slide {
  animation: fadeSlideIn 0.28s ease-in-out;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.question-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sys-magenta);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.question-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(139,92,246,0.1);
  color: var(--violet);
  padding: 0.15rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.question-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sys-blue);
  line-height: 1.45;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.question-hint {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.option-btn {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--white);
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans), transform 120ms ease;
  min-height: 60px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.option-btn:hover {
  border-color: var(--sys-blue-bright);
  background: var(--surface);
  transform: translateX(3px);
  box-shadow: 0 2px 12px rgba(16,89,175,0.08);
}

.option-btn.selected {
  border-color: var(--sys-blue);
  background: rgba(16,89,175,0.06);
  color: var(--sys-blue);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(16,89,175,0.14);
}

.option-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background var(--trans), color var(--trans);
  margin-top: 1px;
}

.option-btn.selected .option-letter {
  background: var(--sys-blue);
  color: var(--white);
}

.option-text { line-height: 1.5; padding-top: 3px; }

/* ─── QUIZ NAV — bottom bar centralizado ─── */
.quiz-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2rem;
  background: var(--white);
  border-top: 1.5px solid #E2E8F0;
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 15;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
}

.quiz-nav-prev {
  position: absolute;
  left: 2rem;
}

/* ─── TELA 3: PROCESSAMENTO ─── */
.screen-processing {
  background: linear-gradient(262deg, var(--sys-blue) 0%, #0B3D7A 50%, #1a1a2e 100%);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.processing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--white);
  border-right-color: var(--sys-magenta-bright);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.processing-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.2px;
}

.processing-sub {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

/* ─── TELA 4: RESULTADO ─── */
.screen-result { background: var(--bg); }

.result-header { justify-content: flex-start; }

.result-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1.5rem clamp(2rem, 5vw, 4rem);
  max-width: min(720px, 92vw);
  margin: 0 auto;
  gap: 1.3rem;
  width: 100%;
}

.result-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 1.4rem;
  border-radius: 100px;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.result-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.result-message {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  font-weight: 500;
}

.result-prize {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245,158,11,0.09);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.4rem;
  text-align: left;
  max-width: 500px;
  width: 100%;
  font-size: 0.93rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--text);
}

.prize-icon-sm { font-size: 1.6rem; flex-shrink: 0; }

.retry-error {
  background: #FEF2F2;
  border: 1.5px solid #FCA5A5;
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  font-size: 0.88rem;
  color: var(--error);
  width: 100%;
  max-width: 500px;
  text-align: center;
  font-weight: 600;
}

.btn-link {
  background: none;
  border: none;
  color: var(--sys-blue);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 700;
}

.result-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.result-logo-svg {
  height: 24px;
  width: auto;
}

.result-site {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}
.result-site:hover { text-decoration: underline; }

/* ─── BUTTONS ─── */
.btn {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  min-height: 52px;
  min-width: 52px;
  padding: 0.75rem 2rem;
  transition: background var(--trans), transform 120ms ease, opacity var(--trans), box-shadow var(--trans);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  letter-spacing: 0.1px;
}

.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.8rem;
  min-height: 58px;
}

/* CTA — magenta pill (Tela 0) */
.btn-cta {
  background: linear-gradient(135deg, var(--sys-magenta) 0%, var(--sys-magenta-bright) 100%);
  color: var(--white);
  border-radius: 100px;
  box-shadow: 0 4px 22px rgba(252,66,154,0.38);
  padding: 1rem 3rem;
}

.btn-cta:hover {
  box-shadow: 0 6px 32px rgba(252,66,154,0.5);
  transform: translateY(-2px) scale(1.02);
}

/* Primary — blue */
.btn-primary {
  background: linear-gradient(135deg, var(--sys-blue) 0%, var(--sys-blue-bright) 100%);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(16,89,175,0.2);
}

.btn-primary:hover:not(:disabled) {
  box-shadow: 0 4px 20px rgba(16,89,175,0.35);
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Ghost — outline blue */
.btn-ghost {
  background: transparent;
  color: var(--sys-blue);
  border: 1.5px solid var(--sys-blue);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(16,89,175,0.06);
}

/* ─── VIRTUAL KEYBOARD — totem & mobile ─── */
/*
 * Quando o teclado virtual abre, window.visualViewport encolhe.
 * O JS detecta e injeta --keyboard-height + classe .keyboard-open.
 * Aqui ajustamos o layout para que nada fique escondido.
 */

:root { --keyboard-height: 0px; }

/* Reduz a altura visível das telas ao tamanho do viewport disponível */
.keyboard-open .screen {
  height: calc(100dvh - var(--keyboard-height));
  overflow: hidden;
}

/* O conteúdo rolável se ajusta à área disponível */
.keyboard-open .screen-body,
.keyboard-open .quiz-scroll-area {
  max-height: calc(100dvh - var(--keyboard-height) - 80px); /* 80px = header */
  overflow-y: auto;
}

/* scroll-padding: evita que header fixo cubra o campo ao rolar */
.screen-form   { scroll-padding-top: 80px; }
.screen-quiz   { scroll-padding-top: 80px; scroll-padding-bottom: 100px; }

/* Botão "Continuar" da Tela 1: sobe junto quando teclado abre */
.keyboard-open .form-actions {
  position: sticky;
  bottom: 0;
  background: var(--bg);
  padding: 1rem 0 1.2rem;
  margin-top: 0;
  border-top: 1.5px solid #E2E8F0;
  z-index: 10;
}

/* Inputs: ao receber foco no totem, ganham sombra mais visível */
@media (min-width: 1600px) {
  .form-group input:focus,
  .form-group select:focus {
    box-shadow: 0 0 0 4px rgba(16,89,175,0.18);
    border-color: var(--sys-blue);
  }

  /* No teclado aberto, quiz-nav permanece visível (já é sticky) */
  .keyboard-open .quiz-nav {
    bottom: 0;
    position: sticky;
  }
}

/* ─── RESPONSIVE: MOBILE (< 768px) ─── */
@media (max-width: 768px) {
  html { font-size: clamp(14px, 3.5vw, 16px); }
  .form-row { grid-template-columns: 1fr; }
  .welcome-title { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .screen-body, .quiz-scroll-area { padding: 1.1rem; }
  .screen-header { padding: 0.75rem 1.1rem; }
  .quiz-nav { padding: 0.85rem 1.1rem; }
  .question-text { font-size: clamp(1rem, 3.5vw, 1.2rem); }
  .quiz-nav-prev { left: 1.1rem; }
  .welcome-inner { gap: 1.2rem; }
  .logo-svg { height: 36px; }
}

/* ─── TOTEM 43" — ativado via ?totem=1 na URL ─── */
/*
 * O JS detecta o parâmetro e adiciona a classe .totem-mode ao <body>.
 * Isso isola os estilos do totem de monitores 27" (mesma resolução FHD).
 * URL do totem: https://seu-app.netlify.app?totem=1
 */
.totem-mode {
  /* Variável usada em toda a interface */
  --totem-scale: 1;
}

.totem-mode html,
html.totem-mode {
  font-size: 24px !important;
}

/* Welcome */
.totem-mode .welcome-inner  { max-width: 960px; gap: 2.4rem; }
.totem-mode .logo-svg       { height: 76px; }
.totem-mode .logo-tagline   { font-size: 1rem; }
.totem-mode .event-badge    { font-size: 0.85rem; padding: 0.6rem 2rem; }
.totem-mode .welcome-title  { font-size: 3.6rem; }
.totem-mode .welcome-subtitle { font-size: 1.2rem; max-width: 720px; }
.totem-mode .prize-box      { max-width: 820px; padding: 1.8rem 2.4rem; border-width: 3px; }
.totem-mode .prize-icon     { font-size: 3rem; }
.totem-mode .prize-main     { font-size: 1.15rem; }
.totem-mode .prize-sub      { font-size: 0.95rem; }

/* Header */
.totem-mode .screen-header    { padding: 1.1rem 3.5rem; }
.totem-mode .logo-small-svg   { height: 48px; }
.totem-mode .step-indicator   { font-size: 0.88rem; }
.totem-mode .btn-reset        { font-size: 0.88rem; padding: 0.55rem 1.5rem; }
.totem-mode .progress-bar-bg  { height: 10px; max-width: 560px; }
.totem-mode .progress-label   { font-size: 0.95rem; }

/* Identificação */
.totem-mode .screen-body    { max-width: 1260px; padding: 2.5rem 3.5rem; }
.totem-mode .screen-title   { font-size: 2rem; }
.totem-mode .screen-subtitle { font-size: 1rem; margin-bottom: 2.5rem; }
.totem-mode .form-group label { font-size: 0.95rem; }
.totem-mode .form-group input,
.totem-mode .form-group select {
  font-size: 1.05rem;
  min-height: 72px;
  padding: 1rem 1.4rem;
  border-width: 2px;
  border-radius: 16px;
}
.totem-mode .form-row         { gap: 1.6rem; }
.totem-mode .field-error      { font-size: 0.82rem; }

/* Quiz */
.totem-mode .quiz-scroll-area { padding: 2.5rem 3.5rem; }
.totem-mode .quiz-container   { max-width: 1140px; }
.totem-mode .question-text    { font-size: 1.75rem; }
.totem-mode .question-hint    { font-size: 0.95rem; margin-bottom: 1.8rem; }
.totem-mode .options-grid     { gap: 1rem; }
.totem-mode .option-btn       { min-height: 88px; padding: 1.2rem 1.8rem; font-size: 1.05rem; border-width: 2px; border-radius: 16px; }
.totem-mode .option-letter    { width: 44px; height: 44px; font-size: 1rem; }
.totem-mode .quiz-nav         { padding: 1.4rem 3.5rem; }
.totem-mode .quiz-nav-prev    { left: 3.5rem; }

/* Processamento */
.totem-mode .spinner          { width: 80px; height: 80px; border-width: 6px; }
.totem-mode .processing-title { font-size: 1.8rem; }
.totem-mode .processing-sub   { font-size: 1.05rem; }

/* Resultado */
.totem-mode .result-body      { max-width: 1000px; padding: 3rem 2rem 4rem; gap: 1.8rem; }
.totem-mode .result-title     { font-size: 2.8rem; }
.totem-mode .result-message   { font-size: 1.15rem; max-width: 760px; }
.totem-mode .result-prize     { max-width: 760px; padding: 1.5rem 2rem; font-size: 1.05rem; border-width: 3px; }
.totem-mode .prize-icon-sm    { font-size: 2.2rem; }
.totem-mode .result-logo-svg  { height: 42px; }

/* Botões */
.totem-mode .btn        { min-height: 72px; font-size: 1.05rem; border-radius: 14px; }
.totem-mode .btn-large  { min-height: 88px; font-size: 1.2rem; padding: 1.2rem 3.5rem; }
.totem-mode .btn-cta    { padding: 1.2rem 4rem; }


