/* ==========================================================================
   MORITZ - ULTRA CLEAN & MODERN CYBERPUNK (UI/UX PRO MAX)
   ========================================================================== */

:root {
  --bg: #050709;
  --card-bg: rgba(11, 16, 23, 0.96);
  --border: rgba(34, 197, 94, 0.22);
  --border-subtle: rgba(255, 255, 255, 0.08);
  
  --green: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.35);
  --green-hover: #4ade80;
  --green-soft: rgba(34, 197, 94, 0.12);
  
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  
  --radius: 20px;
}

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

/* REGRA GLOBAL DE OCULTAÇÃO INFALÍVEL */
.hidden {
  display: none !important;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--mono);
}

/* BRILHO AMBIENTE SUAVE DE FUNDO */
.ambient-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, rgba(5, 7, 9, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.app-layout {
  width: 100%;
  max-width: 410px;
  position: relative;
  z-index: 1;
}

/* CARD PRINCIPAL */
.clean-card {
  background: var(--card-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(34, 197, 94, 0.08);
  text-align: center;
}

/* HEADER DA APLICAÇÃO */
.app-header {
  margin-bottom: 22px;
  min-height: 38px;
  display: flex;
  align-items: center;
}

.nav-guest {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-subtle);
}

.nav-guest-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-clean-text {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-clean-text:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-clean-pill {
  background: var(--green-soft);
  border: 1px solid var(--border);
  color: var(--green);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-clean-pill:hover {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 16px var(--green-glow);
  transform: translateY(-1px);
}

/* USUÁRIO LOGADO NO TOPO */
.nav-user {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 999px;
}

.user-status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.user-handle {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.nav-user-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-balance-pill {
  background: rgba(34, 197, 94, 0.09);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 5px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-balance-pill:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: var(--green);
  transform: translateY(-1px);
}

.balance-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.balance-amount {
  font-size: 0.82rem;
  font-weight: 800;
  color: #86efac;
}

.balance-plus {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.btn-clean-logout {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-subtle);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn-clean-logout:hover {
  color: #f87171;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
}

/* HERO COM A LOGO */
.brand-hero {
  margin-bottom: 22px;
}

.logo-box {
  width: 86px;
  height: 86px;
  margin: 0 auto 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--green);
  box-shadow: 0 0 26px var(--green-glow);
  background: #000;
}

.brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 18px rgba(34, 197, 94, 0.3);
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================
   TELA 1: COMPRA PRINCIPAL (CARD SPOTLIGHT)
   ========================================== */
.product-spotlight {
  background: linear-gradient(180deg, rgba(16, 24, 38, 0.7) 0%, rgba(9, 13, 20, 0.9) 100%);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.country-badge {
  font-size: 0.68rem;
  font-weight: 800;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 6px;
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

.product-badge-live {
  font-size: 0.65rem;
  font-weight: 700;
  color: #a3e635;
  background: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.2);
  border-radius: 999px;
  padding: 2px 7px;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.product-spotlight-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-sub {
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-weight: 600;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-cur {
  font-size: 1rem;
  font-weight: 700;
  color: #86efac;
}

.price-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 16px rgba(34, 197, 94, 0.35);
}

/* BOTÃO DE AÇÃO PRINCIPAL */
.btn-main {
  width: 100%;
  background: var(--green);
  color: #000;
  border: none;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-main:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

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

.secure-footer-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-subtle);
  margin-top: 14px;
  font-weight: 500;
}

/* ==========================================
   TELA 2: PIX (PAGAMENTO / RECARGA)
   ========================================== */
.deposit-header-card {
  margin-bottom: 16px;
}

.deposit-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-bottom: 8px;
}

.deposit-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.pix-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}

.pix-val-cur {
  font-size: 1.1rem;
  font-weight: 700;
  color: #86efac;
}

.pix-val-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.qr-stage {
  background: #ffffff;
  padding: 14px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 14px;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.12);
}

.qr-stage img {
  display: block;
}

.pix-timer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.pix-timer-text strong {
  color: #f59e0b;
  font-size: 0.95rem;
}

.btn-copy-pix {
  width: 100%;
  background: var(--green);
  color: #000;
  border: none;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 14px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-copy-pix:hover {
  background: var(--green-hover);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
  transform: translateY(-1px);
}

.status-pulse-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green-glow);
  animation: pulseDot 1.5s infinite ease-in-out;
}

.status-pulse-text {
  font-size: 0.82rem;
  color: #86efac;
  font-weight: 600;
}

.btn-back {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================
   TELA 3: PAINEL DO CHIP & SMS
   ========================================== */
.order-ref-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.order-ref-label {
  color: var(--text-subtle);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.order-ref-val {
  color: var(--green);
  font-weight: 700;
}

.number-stage {
  background: #06090e;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
}

.number-sublabel {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-subtle);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.number-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.btn-number-copy {
  width: 100%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-number-copy:hover {
  background: var(--green);
  color: #000;
}

/* SMS BOX */
.sms-box {
  background: #070a0f;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 16px;
}

.radar-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(34, 197, 94, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 1s linear infinite;
}

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

.waiting-lead {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.waiting-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sms-time-hint {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.sms-time-hint strong {
  color: #f59e0b;
}

.demo-box {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.btn-demo {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-demo:hover {
  background: #3b82f6;
  color: #fff;
}

/* SMS RECEBIDO */
.sms-ok-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--green);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.sms-huge-code {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-shadow: 0 0 20px var(--green-glow);
}

.btn-code-copy {
  background: var(--green);
  color: #000;
  border: none;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.btn-code-copy:hover {
  background: var(--green-hover);
}

.sms-orig {
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-style: italic;
}

.action-grid {
  display: flex;
  gap: 10px;
}

.btn-alt {
  flex: 1;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-alt:hover {
  background: rgba(239, 68, 68, 0.22);
}

.btn-main-sm {
  flex: 1;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--border);
  color: var(--green);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-main-sm:hover {
  background: var(--green);
  color: #000;
}

.action-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 10px 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-danger:hover {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.35);
}

.sms-refund-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid #ef4444;
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ==========================================
   MODAL DE LOGIN / CADASTRO
   ========================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.clean-dialog {
  background: #090e16;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 350px;
  padding: 24px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dialog-tabs {
  display: flex;
  gap: 6px;
}

.d-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.d-tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid var(--green);
}

.btn-x {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.dialog-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.4;
}

.dialog-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dialog-form input {
  background: #05070a;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 13px 14px;
  color: #fff;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.dialog-form input:focus {
  border-color: var(--green);
}

/* TOAST DE FEEDBACK */
.toast-clean {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d131f;
  border: 1px solid var(--green);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
  z-index: 999;
  white-space: nowrap;
}

/* ==========================================
   ESTILOS ESPECÍFICOS: WHATSAPP SPOTLIGHT
   ========================================== */
.product-whatsapp {
  background: linear-gradient(180deg, rgba(13, 31, 23, 0.85) 0%, rgba(7, 18, 14, 0.95) 100%);
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 197, 94, 0.12);
}

.product-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.whatsapp-badge-icon {
  width: 42px;
  height: 42px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.25);
}

.product-subtitle {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #86efac;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.pulse-live {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #a3e635;
  border-radius: 50%;
  margin-right: 4px;
  box-shadow: 0 0 6px #a3e635;
  animation: pulseDot 1.5s infinite;
}

.btn-choose-deposit {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-choose-deposit:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.35);
  color: #86efac;
}

/* ==========================================
   BARRA SUPERIOR DE RETORNO DO PIX
   ========================================== */
.flow-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-nav-back {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-nav-back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateX(-2px);
}

.nav-step-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-cancel-return {
  width: 100%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #fca5a5;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}

.btn-cancel-return:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.45);
  color: #fff;
}

/* ==========================================
   MODAL DE ESCOLHA DE SALDO
   ========================================== */
.deposit-dialog {
  max-width: 390px;
}

.dialog-title-group {
  text-align: left;
}

.dialog-badge-pix {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-bottom: 4px;
}

.dialog-main-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.deposit-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.amount-card-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font);
}

.amount-card-btn:hover {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
}

.amount-card-btn.selected {
  background: rgba(34, 197, 94, 0.16);
  border: 2px solid var(--green);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

.amount-card-btn .amount-val {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.amount-card-btn.selected .amount-val {
  color: #86efac;
}

.amount-card-btn .amount-chips {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-subtle);
}

.amount-tag {
  position: absolute;
  top: -7px;
  right: 6px;
  background: var(--green);
  color: #000;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.custom-amount-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  text-align: left;
}

.custom-amount-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.custom-amount-input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #05070a;
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 6px 12px;
}

.custom-amount-input-wrap:focus-within {
  border-color: var(--green);
}

.custom-cur {
  font-size: 0.85rem;
  font-weight: 700;
  color: #86efac;
}

.custom-amount-input-wrap input {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  outline: none;
}

.btn-clean-back {
  background: transparent;
  border: none;
  color: var(--text-subtle);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-clean-back:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE SUPORTE WHATSAPP
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.5);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.whatsapp-float-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 4px 10px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #2ae06d 0%, #159e8f 100%);
  color: #ffffff;
}

.whatsapp-float-btn:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-label {
  line-height: 1;
}

@media (max-width: 480px) {
  .whatsapp-float-btn {
    bottom: 18px;
    right: 18px;
    padding: 10px 16px;
    font-size: 0.84rem;
  }
}
