/* ==========================================================================
   UNIVERSO AFFECTION — Design System (base)
   Paleta oficial + tipografia VOAR + tokens do universo escuro
   ========================================================================== */

/* Tipografia oficial do Universo: Lora (títulos) + DM Sans (corpo).
   Decisão fechada em 01/07/2026. Não trocar. */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  /* Paleta Affection */
  --bordo: #532137;
  --rosa: #dd597d;
  --amarelo: #f9a01b;
  --escuro: #2c2c2a;
  --corpo: #3a3330;
  --label: #776b62;
  --claro: #f5f4f0;
  --branco: #ffffff;

  /* Universo */
  --u-bg: #0a0614;
  --u-bg-2: #0f0a1a;
  --u-panel: rgba(24, 14, 32, 0.72);
  --u-panel-border: rgba(221, 89, 125, 0.18);
  --u-glow: rgba(221, 89, 125, 0.35);
  --u-star: rgba(255, 255, 255, 0.85);
  --u-nebulosa-1: rgba(83, 33, 55, 0.35);
  --u-nebulosa-2: rgba(221, 89, 125, 0.22);
  --u-nebulosa-3: rgba(249, 160, 27, 0.14);

  /* Feedback */
  --acerto-1: #1D9E75;
  --acerto-2: #085041;
  --erro: #c0392b;

  /* Fontes */
  --font-titulo: 'Lora', Georgia, serif;
  --font-corpo: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Espaço */
  --raio-s: 8px;
  --raio-m: 14px;
  --raio-g: 22px;
  --raio-xg: 32px;

  /* Sombras */
  --sombra-suave: 0 10px 40px rgba(0, 0, 0, 0.35);
  --sombra-brilho: 0 0 40px var(--u-glow);
}

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

html, body {
  height: 100%;
  font-family: var(--font-corpo);
  color: var(--claro);
  background: var(--u-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, var(--u-nebulosa-1), transparent 45%),
    radial-gradient(circle at 85% 70%, var(--u-nebulosa-2), transparent 40%),
    radial-gradient(circle at 50% 100%, var(--u-nebulosa-3), transparent 55%),
    linear-gradient(180deg, var(--u-bg) 0%, var(--u-bg-2) 100%);
  background-attachment: fixed;
  position: relative;
}

/* ---------- Estrelas ---------- */

.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  background: var(--u-star);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--twinkle-dur, 3s) ease-in-out var(--twinkle-delay, 0s) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.05; transform: scale(0.85); }
  50% { opacity: 0.95; transform: scale(1); }
}

/* ---------- Container principal ---------- */

.universo {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 40px;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Cabeçalho (streak / xp) ---------- */

.hud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--u-panel);
  border: 1px solid var(--u-panel-border);
  border-radius: var(--raio-g);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hud-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--claro);
}

.hud-item .icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.hud-item .valor {
  font-weight: 700;
  font-size: 15px;
}

.hud-xp .valor { color: var(--amarelo); }
.hud-streak .valor { color: var(--rosa); }

/* ---------- Barra de progresso ---------- */

.progresso {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progresso-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rosa), var(--amarelo));
  border-radius: 999px;
  transition: width .5s ease;
  box-shadow: 0 0 12px rgba(249, 160, 27, 0.4);
}

/* ---------- Tipografia ---------- */

h1, h2, h3 {
  font-family: var(--font-titulo);
  color: var(--claro);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(32px, 8vw, 52px); font-weight: 700; }
h2 { font-size: clamp(24px, 5.5vw, 34px); font-weight: 700; }
h3 { font-size: clamp(19px, 4.5vw, 24px); font-weight: 600; }

p, li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--claro);
}

.label {
  font-family: var(--font-corpo);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--label);
}

/* ---------- Affe (mascote) ---------- */

.affe-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 8px 0 20px;
  min-height: 200px;
}

.affe {
  max-width: clamp(140px, 40vw, 200px);
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 8px 24px rgba(221, 89, 125, 0.45));
  animation: floaty 3.2s ease-in-out infinite alternate;
  transition: transform .3s ease;
}

.affe-grande {
  max-width: clamp(200px, 55vw, 280px);
}

@keyframes floaty {
  from { transform: translateY(-6px); }
  to { transform: translateY(6px); }
}

/* ---------- Caixa de diálogo (typing) ---------- */

.dialogo {
  background: var(--u-panel);
  border: 1px solid var(--u-panel-border);
  border-radius: var(--raio-g);
  padding: 20px 20px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sombra-suave);
  margin: 16px 0;
  cursor: pointer;
  min-height: 100px;
  position: relative;
}

.dialogo .quem {
  font-family: var(--font-corpo);
  font-weight: 700;
  color: var(--rosa);
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.dialogo .texto {
  font-size: 17px;
  line-height: 1.6;
  color: var(--claro);
  min-height: 1.6em;
}

.dialogo .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--rosa);
  vertical-align: -3px;
  margin-left: 2px;
  animation: piscar 0.9s steps(2) infinite;
}

.dialogo .avancar {
  display: none;
  margin-top: 10px;
  font-size: 12px;
  color: var(--label);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fade-in .4s ease, pulse-avancar 1.6s ease-in-out infinite;
}

.dialogo.pronto .avancar { display: block; }
.dialogo.pronto .cursor { display: none; }

@keyframes piscar {
  50% { opacity: 0; }
}

@keyframes pulse-avancar {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Cards de escolha (quiz) ---------- */

.escolhas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.escolha {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--u-panel);
  border: 1.5px solid var(--u-panel-border);
  border-radius: var(--raio-m);
  color: var(--claro);
  font-family: var(--font-corpo);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  min-height: 56px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}

.escolha:hover {
  border-color: var(--rosa);
  transform: translateY(-2px);
}

.escolha .letra {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordo), var(--rosa));
  color: var(--claro);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.escolha.certo {
  background: linear-gradient(135deg, var(--acerto-1), var(--acerto-2));
  border-color: var(--acerto-1);
  color: var(--branco);
}
.escolha.certo .letra { background: var(--branco); color: var(--acerto-2); }

.escolha.errado {
  background: rgba(192, 57, 43, 0.2);
  border-color: var(--erro);
  color: var(--claro);
}
.escolha.errado .letra { background: var(--erro); color: var(--branco); }

.escolha.apagado {
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Botão principal ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border: none;
  border-radius: var(--raio-g);
  background: linear-gradient(135deg, var(--bordo), var(--rosa));
  color: var(--branco);
  font-family: var(--font-corpo);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  min-height: 52px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(221, 89, 125, 0.35);
  transition: transform .15s ease, box-shadow .2s ease;
  letter-spacing: 0.3px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(221, 89, 125, 0.5);
}

.btn:active { transform: translateY(0); }

.btn-secundario {
  background: transparent;
  border: 1.5px solid var(--u-panel-border);
  color: var(--claro);
  box-shadow: none;
}

.btn-secundario:hover {
  border-color: var(--rosa);
  background: rgba(221, 89, 125, 0.08);
  box-shadow: none;
}

.btn-amarelo {
  background: linear-gradient(135deg, var(--amarelo), #a05a00);
  box-shadow: 0 8px 24px rgba(249, 160, 27, 0.35);
}

/* ---------- Cards de conteúdo (3D suave) ---------- */

.card {
  background: var(--u-panel);
  border: 1px solid var(--u-panel-border);
  border-radius: var(--raio-g);
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sombra-suave);
  transform: perspective(1200px) rotateX(0.5deg);
  transition: transform .3s ease;
}

.card:hover {
  transform: perspective(1200px) rotateX(0deg) translateY(-2px);
}

.card + .card { margin-top: 16px; }

.card-titulo {
  font-family: var(--font-titulo);
  font-size: 22px;
  font-weight: 700;
  color: var(--claro);
  margin-bottom: 10px;
}

.card-corpo p { color: var(--claro); opacity: 0.92; }
.card-corpo p + p { margin-top: 10px; }

/* ---------- Lanterninha (curiosidade revelável) ---------- */

.lanterninha {
  margin: 16px 0;
  border-radius: var(--raio-m);
  overflow: hidden;
  border: 1px dashed rgba(249, 160, 27, 0.4);
  background: rgba(249, 160, 27, 0.06);
}

.lanterninha summary {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
  color: var(--amarelo);
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 15px;
}
.lanterninha summary::-webkit-details-marker { display: none; }

.lanterninha summary::before {
  content: '';
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, var(--amarelo), transparent 70%);
  border-radius: 50%;
  animation: brilho-lanterna 2s ease-in-out infinite;
}

@keyframes brilho-lanterna {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}

.lanterninha[open] summary { border-bottom: 1px solid rgba(249, 160, 27, 0.25); }

.lanterninha-corpo {
  padding: 14px 16px;
  color: var(--claro);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- "E se isso não existisse?" ---------- */

.sem-isso {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 8px 0;
  border-radius: var(--raio-m);
  background: rgba(192, 57, 43, 0.08);
  border-left: 3px solid var(--erro);
  font-size: 15px;
  color: var(--claro);
}

.sem-isso .seta {
  color: var(--erro);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Mapa RPG ---------- */

.mapa-rpg {
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding: 20px;
  background: var(--u-panel);
  border: 1px solid var(--u-panel-border);
  border-radius: var(--raio-g);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mapa-titulo {
  font-family: var(--font-titulo);
  font-size: 20px;
  font-weight: 700;
  color: var(--amarelo);
  text-align: center;
  margin-bottom: 6px;
}

.mapa-nivel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--raio-m);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
  cursor: pointer;
}

.mapa-nivel:hover {
  border-color: var(--rosa);
  background: rgba(221, 89, 125, 0.08);
}

.mapa-nivel.bloqueado { opacity: 0.4; cursor: not-allowed; }
.mapa-nivel.bloqueado:hover { border-color: transparent; background: rgba(255, 255, 255, 0.03); }

.mapa-nivel .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordo), var(--rosa));
  color: var(--claro);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.mapa-nivel .titulo-nivel {
  font-weight: 600;
  font-size: 15px;
  color: var(--claro);
}
.mapa-nivel .contagem {
  font-size: 12px;
  color: var(--label);
  margin-top: 2px;
}

/* ---------- Confete (comemoração) ---------- */

.confete {
  position: fixed;
  top: -20px;
  width: 10px;
  height: 14px;
  z-index: 999;
  pointer-events: none;
  animation: confete-cair 3.5s ease-in forwards;
}

@keyframes confete-cair {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ---------- Responsivo ---------- */

@media (max-width: 480px) {
  .universo { padding: 16px 14px 32px; }
  .dialogo { padding: 16px; }
  .card { padding: 18px; }
  .escolha { padding: 14px 16px; font-size: 15px; }
}

/* ---------- Acessibilidade ---------- */

@media (prefers-reduced-motion: reduce) {
  .affe { animation: none; }
  .star { animation: none; opacity: 0.5; }
  .dialogo .cursor { animation: none; }
}

/* ==========================================================================
   MODO JOGO — cenas, palco, opções, feedback (motor.js)
   ========================================================================== */

.cena { display: none; }
.cena.ativa { display: flex; flex-direction: column; }

.palco {
  min-height: 100dvh;
  max-width: 560px;
  margin: 0 auto;
  padding: 14px 16px calc(18px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.palco-topo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.palco-topo .sair {
  color: var(--label);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.palco-topo .progresso {
  flex: 1;
  margin: 0;
}

.palco-affe {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 0 0 auto;
  min-height: 32dvh;
  max-height: 36dvh;
  margin: 4px 0 10px;
}

.palco-affe img {
  /* max-width limitado: a maioria das poses tem ~300-450px de origem.
     Esticar além disso pixela. Nunca usar width/height fixos nem cover. */
  max-width: min(280px, 72vw);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 10px 30px rgba(221, 89, 125, 0.4));
  animation: floaty 3.2s ease-in-out infinite alternate;
  transition: opacity .18s ease;
}

.palco-baixo {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

#caixa-dialogo { cursor: pointer; }

/* Opções da pergunta */
.opcoes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.opcao {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(245, 244, 240, 0.85);
  font-family: var(--font-corpo);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  width: 100%;
  min-height: 52px;
  opacity: 0;
  animation: opcao-entra .35s ease forwards;
  transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}

@keyframes opcao-entra {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.opcao:hover { border-color: var(--rosa); }

.opcao .letra {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordo), var(--rosa));
  color: var(--claro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.opcao.certa {
  border-color: var(--acerto-1);
  background: rgba(29, 158, 117, 0.12);
  color: #5DCAA5;
}
.opcao.certa .letra { background: var(--acerto-1); }

.opcao.errada {
  border-color: var(--erro);
  background: rgba(192, 57, 43, 0.08);
  color: #e78d84;
}
.opcao.errada .letra { background: var(--erro); }

/* Feedback da Affe após responder */
.feedback-jogo {
  display: none;
  padding: 16px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.55;
}
.feedback-jogo.visivel { display: block; animation: fade-in .3s ease; }
.feedback-jogo.certo {
  background: rgba(29, 158, 117, 0.12);
  border: 1px solid rgba(29, 158, 117, 0.45);
  color: #c9f2e2;
}
.feedback-jogo.errado {
  background: rgba(221, 89, 125, 0.1);
  border: 1px solid rgba(221, 89, 125, 0.4);
  color: #f7d4de;
}
.feedback-jogo p { margin-bottom: 12px; font-size: 15px; }

.btn-continuar {
  width: 100%;
  min-height: 50px;
}

/* Painel visual (itens que acendem) */
.visual-painel {
  background: var(--u-panel);
  border: 1px solid var(--u-panel-border);
  border-radius: var(--raio-g);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.visual-titulo {
  font-family: var(--font-titulo);
  font-size: 19px;
  font-weight: 700;
  color: var(--amarelo);
  margin-bottom: 6px;
  text-align: center;
}

.visual-item {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid transparent;
  font-size: 14.5px;
  text-align: center;
  color: rgba(245, 244, 240, 0.35);
  transition: all .4s ease;
}

.visual-item.aceso {
  color: var(--claro);
  border-color: rgba(221, 89, 125, 0.45);
  background: linear-gradient(135deg, rgba(83, 33, 55, 0.55), rgba(221, 89, 125, 0.22));
  box-shadow: 0 0 18px rgba(221, 89, 125, 0.25);
}

.visual-seta {
  color: rgba(221, 89, 125, 0.6);
  font-size: 16px;
  line-height: 1;
}

/* Lanterninha do jogo */
.lanterninha-jogo {
  background: rgba(249, 160, 27, 0.06);
  border: 1.5px dashed rgba(249, 160, 27, 0.45);
  border-radius: var(--raio-g);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background .3s ease;
}

.lanterninha-jogo .lampada {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amarelo), rgba(249, 160, 27, 0.05) 70%);
  animation: brilho-lanterna 1.8s ease-in-out infinite;
}

.lanterninha-jogo.acesa {
  background: rgba(249, 160, 27, 0.12);
  cursor: default;
}

.lanterninha-jogo .chamada {
  color: var(--amarelo);
  font-weight: 700;
  font-size: 14px;
}

.lanterninha-jogo .revelacao {
  color: var(--claro);
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 14px;
}

/* Laboratório */
.lab-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lab-input {
  background: rgba(255, 255, 255, 0.05);
  color: var(--claro);
  border: 1.5px solid var(--u-panel-border);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-corpo);
  font-size: 16px;
  min-height: 52px;
}

.lab-input:focus {
  outline: none;
  border-color: var(--rosa);
}

.lab-resposta {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  line-height: 1.55;
}
.lab-resposta.visivel { display: block; animation: fade-in .3s ease; }
.lab-resposta.certo {
  background: rgba(29, 158, 117, 0.12);
  border: 1px solid rgba(29, 158, 117, 0.45);
  color: #c9f2e2;
}
.lab-resposta.neutro {
  background: rgba(249, 160, 27, 0.08);
  border: 1px solid rgba(249, 160, 27, 0.4);
  color: #ffe3b8;
}

/* Cena de recompensa */
#cena-recompensa {
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
  z-index: 1;
}

#cena-recompensa .recompensa-xp {
  font-family: var(--font-titulo);
  font-size: clamp(40px, 12vw, 64px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--amarelo), #ffd28a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 10px 0 4px;
}

#cena-recompensa .recompensa-badge {
  color: var(--amarelo);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  min-height: 20px;
}

#cena-recompensa img {
  max-height: 34dvh;
  max-width: min(280px, 70vw);
  width: auto;
  height: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 10px 30px rgba(249, 160, 27, 0.35));
  animation: floaty 3s ease-in-out infinite alternate;
}

#cena-recompensa .recompensa-texto {
  font-size: 16px;
  line-height: 1.6;
  max-width: 420px;
  margin: 14px auto;
  min-height: 52px;
}

/* ---------- Utilitários ---------- */

.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
