/**
 * VERSÃO: 31.0
 * DATA: Maio/2026
 * ATUALIZAÇÕES: Removido o botão de som flutuante (movido para o modal). 
 * Cartão de conclusão agora ocupa 100% da largura permitida no mobile.
 */

.thiasos-reward-host {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 9998;
  display: grid;
  gap: 10px;
  pointer-events: none;
  width: min(92vw, 560px);
}

.thiasos-reward-toast {
  justify-self: center; display: inline-flex; align-items: center; gap: 10px; max-width: 100%;
  padding: 12px 16px 12px 12px; border-radius: var(--layout-border-radius-pill, 999px); border: 1px solid var(--colors-border-soft, #DED6CB);
  background: color-mix(in srgb, var(--colors-background-surface, #F4F3EF) 92%, transparent); color: var(--colors-text-primary, #24191B);
  box-shadow: 0 18px 46px rgba(74, 18, 29, 0.18); font-family: var(--typography-families-ui, Inter, Arial, sans-serif);
  font-size: 0.9rem; font-weight: 700; line-height: 1.25; animation: thiasosRewardIn 220ms ease both; backdrop-filter: blur(10px);
}

.thiasos-completion-burst { position: fixed; inset: 0; z-index: 9997; display: grid; place-items: center; pointer-events: none; background: radial-gradient(circle at center, rgba(244, 243, 239, 0.32), rgba(36, 25, 27, 0.16)); animation: thiasosCompletionFadeIn 160ms ease both; }

.thiasos-completion-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--layout-border-radius-lg, 22px);
  border: 1px solid var(--colors-border-soft, #DED6CB);
  background: var(--colors-background-surface, #F4F3EF);
  box-shadow: 0 24px 70px rgba(74, 18, 29, 0.22);
  text-align: center;
  animation: thiasosCompletionCardIn 280ms ease both;
}

.thiasos-completion-card strong { display: block; color: var(--colors-brand-primary, #692530); font-family: var(--typography-families-heading, Georgia, serif); font-size: clamp(2rem, 8vw, 3.1rem); line-height: 1; }
.thiasos-completion-card p { margin: 14px auto 10px; max-width: 320px; color: var(--colors-text-secondary, #6F6260); line-height: 1.45; }

/* REMOVIDO: .thiasos-sound-toggle - Agora vive no modal da rádio */
.thiasos-sound-toggle { display: none !important; visibility: hidden !important; opacity: 0 !important; }

@media (max-width: 899px) {
  .thiasos-reward-host { bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
  .thiasos-completion-card { padding: 22px; width: 90vw; }
}