.card,
.status-card {
  background: linear-gradient(145deg, #1a1a1c, #121214);
  border: 1px solid #2a2a2e;
  border-radius: 16px;

  padding: 16px; /* 👈 PADRÃO ÚNICO */
  
  display: flex;
  flex-direction: column;
  gap: 8px;

  box-shadow: 0 6px 20px rgba(0,0,0,0.3);

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.compact-card {
  padding: 10px;       /* menor que 16px */
  gap: 4px;            /* diminui espaço interno */
}

.compact-card h3 {
  margin-bottom: 4px;  /* menos espaço */
  font-size: 13px;
}

.compact-card p {
  font-size: 14px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0f0f12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* A home mostra a animacao apenas na primeira entrada da sessao ou apos PIX. */
html.skip-home-loader .loading-screen {
  display: none;
}

html.skip-home-loader body.is-loading .app {
  opacity: 1;
}

body.is-loading .app {
  opacity: 0;
}

.clipper {
  position: relative;
  width: 72px;
  height: 120px;
  animation: clipper-vibrate 0.08s infinite alternate;
}

.clipper-body {
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 40px;
  height: 78px;
  background: linear-gradient(180deg, #2d2d34, #18181b);
  border-radius: 10px 10px 16px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.clipper-head {
  position: absolute;
  top: 22px;
  left: 12px;
  width: 48px;
  height: 28px;
  background: #ff7a00;
  border-radius: 8px 8px 4px 4px;
}

.clipper-blade {
  position: absolute;
  top: 12px;
  left: 8px;
  width: 56px;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    #f3f3f3 0 5px,
    #b8b8b8 5px 8px
  );
  border-radius: 4px;
}

.loading-screen p {
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

@keyframes clipper-vibrate {
  from {
    transform: translateX(-1px) rotate(-1deg);
  }

  to {
    transform: translateX(1px) rotate(1deg);
  }
}
