/* ============================================================
   MYELOJOB — login e painel
   Estende styles.css. Só o que não existe na landing.
   ============================================================ */

/* ritmo dos formulários — o painel também usa .campo, então os
   tokens moram no :root e não no container do acesso */
:root {
  --passo: 1rem;
  --campo-alt: 3.25rem;
  --raio-campo: 14px;
}

/* ---------- ACESSO (entrar / criar conta) ---------- */
.acesso {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  /* sem isso a linha do grid fica do tamanho do conteúdo e o
     painel da esquerda para antes do fim da tela */
  grid-template-rows: 1fr;
}

.acesso__lado {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem);
  /* bloco único e centrado — antes o space-between jogava
     logo, texto e resumo para cantos opostos da tela */
  display: grid;
  place-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #24140f, #0e0705 62%);
  border-right: 1px solid var(--linha);
}

.acesso__miolo {
  display: grid;
  justify-items: start;
  gap: 1rem;
  max-width: 460px;
}

.acesso__marca {
  display: block;
  margin-bottom: 1.75rem;
  transition: transform var(--medio) var(--saida);
}

.acesso__marca img {
  width: clamp(190px, 22vw, 260px);
  filter: drop-shadow(0 12px 36px rgba(255, 122, 24, 0.28));
}

.acesso__marca:hover {
  transform: translateY(-2px);
}

.acesso__lado::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.22), transparent 65%);
  pointer-events: none;
}

.acesso__lado > * {
  position: relative;
}

.acesso__frase {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  max-width: 14ch;
}

.acesso__nota {
  color: var(--fumaca);
  max-width: 42ch;
  font-size: 0.9rem;
}

.acesso__miolo .sobrancelha {
  margin-bottom: 0;
}

.acesso__miolo #resumoPedido:not(:empty) {
  margin-top: 0.8rem;
  width: 100%;
}

/* resumo do pedido vindo da calculadora */
.pedido-resumo {
  border-radius: var(--raio-g);
  padding: 1.4rem;
  background: rgba(246, 239, 234, 0.04);
  box-shadow: inset 0 0 0 1px var(--linha-forte);
  animation: entraBalao var(--medio) var(--saida);
}

.pedido-resumo h4 {
  font-family: var(--dado);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--brasa);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pedido-resumo dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.5rem;
  margin: 0;
  font-size: 0.85rem;
}

.pedido-resumo dt {
  color: var(--fumaca);
}

.pedido-resumo dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
}

.pedido-resumo .total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--linha);
}

.pedido-resumo .total b {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 115%;
  font-size: 1.7rem;
  color: var(--brasa-alta);
}

.acesso__forma {
  display: grid;
  place-items: center;
  padding: clamp(2.25rem, 5vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.forma {
  width: 100%;
  max-width: 420px;
}

.forma h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  line-height: 1.06;
  margin-bottom: 0.55rem;
}

.forma > p {
  color: var(--fumaca);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: calc(var(--passo) * 1.6);
}

/* uma pilha só: o gap do form manda no ritmo vertical inteiro */
.forma form {
  display: grid;
  gap: var(--passo);
}

.forma__troca {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.86rem;
  color: var(--fumaca);
}

.forma__troca a {
  color: var(--brasa-alta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color var(--rapido) var(--saida);
}

.forma__troca a:hover {
  color: var(--osso);
}

.campo {
  display: grid;
  gap: 0.45rem;
  /* checkout e painel empilham .campo solto, sem grid em volta */
  margin-bottom: 0.9rem;
}

/* onde a pilha já tem gap próprio a margem viraria espaço dobrado */
.forma form .campo,
.campos .campo {
  margin-bottom: 0;
}

/* dica de perfil reconhecido pelo e-mail */
.campo__dica {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.1rem;
  font-family: var(--dado);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--brasa-alta);
  animation: entraBalao var(--medio) var(--saida);
}

.campo__dica::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: currentColor;
}

.campo label {
  font-family: var(--dado);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fumaca);
  transition: color var(--rapido) var(--saida);
}

.campo:focus-within label {
  color: var(--osso);
}

/* moldura do input: comporta ícone à esquerda e ação à direita */
.campo__caixa {
  position: relative;
  display: flex;
  align-items: center;
}

.campo__icone {
  position: absolute;
  left: 1.05rem;
  width: 17px;
  height: 17px;
  color: var(--fumaca);
  pointer-events: none;
  transition: color var(--medio) var(--saida);
}

.campo__caixa:focus-within .campo__icone {
  color: var(--brasa);
}

.campo input,
.campo select {
  width: 100%;
  height: var(--campo-alt);
  padding: 0 1.05rem;
  border: 0;
  border-radius: var(--raio-campo);
  background: rgba(246, 239, 234, 0.045);
  box-shadow: inset 0 0 0 1px var(--linha);
  font-family: inherit;
  font-size: 0.95rem;
  color: inherit;
  transition: box-shadow var(--medio) var(--saida), background var(--medio) var(--saida);
}

.campo__caixa input {
  padding-left: 2.9rem;
}

.campo__caixa:has(.campo__olho) input {
  padding-right: 3.1rem;
}

.campo input::placeholder {
  color: rgba(160, 141, 133, 0.6);
}

.campo input:hover,
.campo select:hover {
  box-shadow: inset 0 0 0 1px var(--linha-forte);
}

.campo input:focus,
.campo select:focus {
  outline: none;
  background: rgba(246, 239, 234, 0.07);
  box-shadow: inset 0 0 0 1px var(--brasa), 0 0 0 4px rgba(255, 122, 24, 0.14);
}

/* autofill do Chrome não pode voltar ao branco padrão */
.campo input:-webkit-autofill,
.campo input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--osso);
  box-shadow: inset 0 0 0 1px var(--linha), inset 0 0 0 100px #251611;
  caret-color: var(--osso);
}

.campo--erro input {
  box-shadow: inset 0 0 0 1px rgba(217, 72, 62, 0.55);
}

.campo--erro .campo__icone {
  color: #e0655a;
}

/* mostrar / ocultar senha */
.campo__olho {
  position: absolute;
  right: 0.45rem;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--fumaca);
  cursor: pointer;
  transition: color var(--rapido) var(--saida), background var(--rapido) var(--saida);
}

.campo__olho:hover {
  color: var(--osso);
  background: rgba(246, 239, 234, 0.06);
}

.campo__olho:focus-visible {
  outline: 2px solid var(--brasa);
  outline-offset: 2px;
}

.campo__olho svg {
  width: 18px;
  height: 18px;
}

.campo__olho .olho--off {
  display: none;
}

.campo__olho[aria-pressed="true"] {
  color: var(--brasa-alta);
}

.campo__olho[aria-pressed="true"] .olho--on {
  display: none;
}

.campo__olho[aria-pressed="true"] .olho--off {
  display: block;
}

.forma__extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: -0.15rem;
  font-size: 0.82rem;
}

/* ---------- login social ---------- */
.social {
  margin: 0;
}

.social__ou {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  margin: calc(var(--passo) * 1.35) 0 calc(var(--passo) * 0.35);
  color: var(--fumaca);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--dado);
}

.social__ou::before,
.social__ou::after {
  content: "";
  height: 1px;
  background: var(--linha);
}

.social__grade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: var(--campo-alt);
  padding: 0.65rem 0.9rem;
  border: 0;
  border-radius: var(--raio-campo);
  background: rgba(246, 239, 234, 0.05);
  box-shadow: inset 0 0 0 1px var(--linha);
  color: inherit;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--medio) var(--saida), box-shadow var(--medio) var(--saida), transform 160ms var(--saida);
}

.btn-social:hover {
  background: rgba(246, 239, 234, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.45);
  transform: translateY(-1px);
}

.btn-social:focus-visible {
  outline: 2px solid var(--brasa);
  outline-offset: 2px;
}

.btn-social:active {
  transform: translateY(1px);
}

.btn-social:disabled {
  opacity: 0.55;
  cursor: wait;
}

.btn-social--discord {
  color: #c9d2ff;
}

.btn-social--discord:hover {
  box-shadow: inset 0 0 0 1px rgba(88, 101, 242, 0.55);
}

.social__aviso {
  margin: 0.75rem 0 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(217, 72, 62, 0.12);
  box-shadow: inset 0 0 0 1px rgba(217, 72, 62, 0.35);
  color: #f0a9a2;
  font-size: 0.78rem;
}

.social__aviso[hidden] {
  display: none;
}

@media (max-width: 420px) {
  .social__grade {
    grid-template-columns: 1fr;
  }
}

/* checkbox próprio do acesso — os .extra da calculadora são botões
   com aria-pressed e traziam moldura e cores que não cabem aqui */
.lembrar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--fumaca);
  cursor: pointer;
  user-select: none;
  transition: color var(--rapido) var(--saida);
}

.lembrar:hover {
  color: var(--osso);
}

.lembrar input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lembrar__marca {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(246, 239, 234, 0.04);
  box-shadow: inset 0 0 0 1px var(--linha-forte);
  transition: background var(--rapido) var(--saida), box-shadow var(--rapido) var(--saida);
}

.lembrar input:checked ~ .lembrar__marca {
  background: var(--brasa);
  box-shadow: inset 0 0 0 1px var(--brasa);
}

.lembrar input:checked ~ .lembrar__marca::after {
  content: "";
  width: 100%;
  height: 100%;
  background: no-repeat center / 11px
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a0c06' stroke-width='3.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5.2 5.2L20 7'/%3E%3C/svg%3E");
}

.lembrar input:focus-visible ~ .lembrar__marca {
  box-shadow: inset 0 0 0 1px var(--brasa), 0 0 0 4px rgba(255, 122, 24, 0.18);
}

.forma__extra a {
  color: var(--brasa);
  transition: color var(--rapido) var(--saida);
}

.forma__extra a:hover {
  color: var(--brasa-alta);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.aviso {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(217, 72, 62, 0.12);
  box-shadow: inset 0 0 0 1px rgba(217, 72, 62, 0.35);
  color: #f0a9a2;
  font-size: 0.82rem;
  margin-bottom: 1rem;
  animation: treme 420ms var(--entrada);
}

.aviso[hidden] {
  display: none;
}

/* dentro do form o espaçamento é do gap, não da margem */
.forma form .aviso {
  margin-bottom: 0;
}

/* ação principal ganha um respiro extra sobre o resto da pilha */
.forma form .btn--largo {
  margin-top: 0.35rem;
  min-height: 3.4rem;
}

.forma form .btn:focus-visible {
  outline: 2px solid var(--brasa-alta);
  outline-offset: 3px;
}

@keyframes treme {
  0%, 100% { transform: none; }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

.demo {
  margin-top: 1.4rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 122, 24, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.22);
  font-family: var(--dado);
  font-size: 0.68rem;
  line-height: 1.9;
  color: var(--fumaca);
}

.demo b {
  color: var(--brasa-alta);
}

/* ---------- selo de segurança ---------- */
.seguro {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linha);
}

.seguro__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.seguro__item svg {
  width: 20px;
  height: 20px;
  color: var(--brasa);
  opacity: 0.85;
  margin-top: 1px;
}

.seguro__item span {
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(160, 141, 133, 0.85);
}

.seguro__item b {
  display: block;
  font-family: var(--dado);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--osso);
  margin-bottom: 0.2rem;
}

.voltar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--dado);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fumaca);
  margin-bottom: 2rem;
  transition: color var(--rapido) var(--saida), gap var(--rapido) var(--saida);
}

.voltar:hover {
  color: var(--brasa);
  gap: 0.75rem;
}

.voltar:focus-visible {
  outline: 2px solid var(--brasa);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .acesso {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .acesso__lado {
    border-right: 0;
    border-bottom: 1px solid var(--linha);
    padding-block: 2.75rem;
  }

  .acesso__miolo {
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
  }

  .acesso__miolo .sobrancelha {
    justify-content: center;
  }

  .acesso__marca {
    margin-bottom: 1.25rem;
  }

  .acesso__frase {
    font-size: 2rem;
    max-width: 18ch;
  }

  .acesso__nota {
    max-width: 46ch;
  }

  /* no empilhado o formulário é o foco: cabeçalho mais curto */
  .acesso__forma {
    padding-block: 2.5rem 3.5rem;
  }

  .voltar {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 560px) {
  :root {
    --passo: 0.9rem;
    --campo-alt: 3.1rem;
  }

  .forma h1 {
    font-size: 1.75rem;
  }

  .seguro {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .acesso__marca,
  .btn-social,
  .voltar {
    transition: none;
  }

  .acesso__marca:hover,
  .btn-social:hover {
    transform: none;
  }
}

/* ---------- PAINEL ---------- */
.painel-topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 7, 5, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--linha);
}

.painel-topo__linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.cracha {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  background: rgba(255, 122, 24, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 24, 0.3);
  font-family: var(--dado);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brasa-alta);
}

.sair {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 100px;
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--linha-forte);
  color: var(--fumaca);
  font-family: var(--dado);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--rapido) var(--saida), box-shadow var(--rapido) var(--saida);
}

.sair:hover {
  color: #e0655a;
  box-shadow: inset 0 0 0 1px rgba(217, 72, 62, 0.5);
}

.painel {
  padding-block: 2.5rem 5rem;
}

.painel__intro {
  margin-bottom: 2.2rem;
}

.painel__intro h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}

.painel__intro p {
  color: var(--fumaca);
  margin-top: 0.6rem;
  font-size: 0.92rem;
}

.grade {
  display: grid;
  gap: 1rem;
}

.grade--2 { grid-template-columns: 1.35fr 1fr; }
.grade--3 { grid-template-columns: repeat(3, 1fr); }
.grade--4 { grid-template-columns: repeat(4, 1fr); }

.painel-card {
  border-radius: var(--raio-g);
  background: linear-gradient(168deg, rgba(42, 26, 21, 0.62), rgba(21, 12, 9, 0.72));
  box-shadow: inset 0 0 0 1px var(--linha);
  padding: 1.5rem;
  animation: sobe var(--lento) var(--saida) backwards;
}

.painel-card:nth-child(2) { animation-delay: 70ms; }
.painel-card:nth-child(3) { animation-delay: 140ms; }
.painel-card:nth-child(4) { animation-delay: 210ms; }

@keyframes sobe {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.painel-card > h3 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.painel-card > h3 span {
  font-family: var(--dado);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--fumaca);
  text-transform: uppercase;
}

.kpi b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.kpi span {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--dado);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fumaca);
}

.kpi small {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--dado);
  font-size: 0.66rem;
  color: #35d07f;
}

.kpi small.baixa {
  color: #e0655a;
}

/* tabela */
.tabela {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.tabela th {
  text-align: left;
  padding: 0.6rem 0.8rem;
  font-family: var(--dado);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fumaca);
  border-bottom: 1px solid var(--linha);
}

.tabela td {
  padding: 0.85rem 0.8rem;
  border-bottom: 1px solid var(--linha);
}

.tabela tr {
  transition: background var(--rapido) var(--saida);
}

.tabela tbody tr:hover {
  background: rgba(246, 239, 234, 0.03);
}

.tabela-rolagem {
  overflow-x: auto;
  margin: 0 -0.4rem;
}

.marcador {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  font-family: var(--dado);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marcador--ativo { background: rgba(53, 208, 127, 0.14); color: #57dd97; }
.marcador--fila { background: rgba(255, 176, 71, 0.14); color: var(--brasa-alta); }
.marcador--fim { background: rgba(246, 239, 234, 0.08); color: var(--fumaca); }
.marcador--alerta { background: rgba(217, 72, 62, 0.14); color: #e0655a; }

/* chat funcional */
.chat {
  display: flex;
  flex-direction: column;
  height: 420px;
}

.chat__fluxo {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding-right: 0.4rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 122, 24, 0.4) transparent;
}

.chat__fluxo::-webkit-scrollbar { width: 5px; }
.chat__fluxo::-webkit-scrollbar-thumb {
  background: rgba(255, 122, 24, 0.35);
  border-radius: 10px;
}

.chat__pe {
  display: flex;
  gap: 0.5rem;
  padding-top: 0.9rem;
  margin-top: 0.9rem;
  border-top: 1px solid var(--linha);
}

.chat__pe input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 100px;
  background: rgba(246, 239, 234, 0.05);
  box-shadow: inset 0 0 0 1px var(--linha);
  font-size: 0.87rem;
}

.chat__pe input:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--brasa);
}

/* barras de receita */
.barras {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 150px;
  margin-top: 0.5rem;
}

.barras div {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--brasa-alta), rgba(217, 62, 0, 0.35));
  transform-origin: bottom;
  animation: cresceBarra 800ms var(--saida) backwards;
  position: relative;
}

.barras div::after {
  content: attr(data-rot);
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--dado);
  font-size: 0.55rem;
  color: var(--fumaca);
}

@keyframes cresceBarra {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.barras + .legenda-barras {
  margin-top: 1.8rem;
  font-family: var(--dado);
  font-size: 0.64rem;
  color: var(--fumaca);
}

/* lista de fila do booster */
.fila-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--linha);
}

.fila-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fila-item h4 {
  font-family: var(--corpo);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.fila-item p {
  color: var(--fumaca);
  font-size: 0.78rem;
  margin-top: 0.25rem;
  font-family: var(--dado);
}

.fila-item .valor {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--brasa-alta);
  display: block;
  text-align: right;
  margin-bottom: 0.5rem;
}

.btn--mini {
  padding: 0.55rem 1.1rem;
  font-size: 0.7rem;
}

.aceito {
  animation: aceitou 520ms var(--saida);
}

@keyframes aceitou {
  0% { background: rgba(53, 208, 127, 0.2); }
  100% { background: transparent; }
}

@media (max-width: 1040px) {
  .grade--2,
  .grade--3,
  .grade--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .grade--2,
  .grade--3,
  .grade--4 {
    grid-template-columns: 1fr;
  }

  .chat { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  .painel-card,
  .barras div,
  .aviso {
    animation: none;
  }
}
