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

:root {
  --blue:    #1e3a8a;
  --blue2:   #2563eb;
  --orange:  #f97316;
  --orange2: #ea6c0a;
  --green:   #16a34a;
  --bg:      #dce8f5;
  --card:    #ffffff;
  --text:    #111827;
  --muted:   #6b7280;
  --border:  #e2e8f0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
}

/* ===========================
   HEADER
=========================== */
.header {
  background: var(--blue);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.logo strong { color: var(--orange); }

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 0.45rem 0;
  overflow: hidden;
}

.trust-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 0 1rem;
}

/* ===========================
   PAGE
=========================== */
.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

/* ===========================
   HERO
=========================== */
.hero-section {
  text-align: center;
  padding: 1.6rem 0 1rem;
}

.hero-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.25;
}

.hero-highlight { color: var(--orange); }

.hero-sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ===========================
   CARD
=========================== */
.card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.4rem 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(255,255,255,0.8);
}

.main-card { padding: 1.5rem 1.3rem; }

/* ===========================
   STEP LABEL
=========================== */
.step-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.step-dot {
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===========================
   PHONE INPUT
=========================== */
.input-wrapper {
  position: relative;
  margin-bottom: 0;
}

.input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.phone-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.6rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  background: #f8fafc;
  outline: none;
  transition: all 0.2s;
}

.phone-input:focus {
  border-color: var(--blue2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.phone-input::placeholder { color: #b0bec5; }

/* ===========================
   SECTION DIVIDER
=========================== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-divider span {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* ===========================
   SUB LABEL
=========================== */
.sub-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* ===========================
   OPERATORS
=========================== */
.operators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.op-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.15s;
}

.op-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.op-btn:hover {
  border-color: var(--blue2);
  color: var(--blue);
  background: #f0f5ff;
}

.op-btn.selected {
  border-color: var(--blue);
  border-width: 2px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.08);
}

/* ===========================
   VALUES
=========================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.val-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.18s;
  overflow: hidden;
  gap: 0.2rem;
}

.val-card:hover {
  border-color: var(--blue2);
  background: #f0f5ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.12);
}

.val-card.selected {
  border-color: var(--blue);
  border-width: 2px;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(30,58,138,0.1);
}

.val-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.val-gb {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 3px 8px;
  border-bottom-left-radius: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===========================
   CTA BUTTON
=========================== */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.3rem;
  padding: 1.05rem;
  background: linear-gradient(135deg, var(--orange), #ff6b00);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.38);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  to { left: 160%; }
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--orange2), #d45e00);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.45);
}

.btn-cta:active { transform: scale(0.98); }

/* ===========================
   SECURITY ROW
=========================== */
.security-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.9rem;
  font-size: 0.68rem;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ===========================
   COUNTERS BAR
=========================== */
.counters-bar {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.07);
  margin-bottom: 1.5rem;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
}

.counter-item strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
}

.counter-item span {
  font-size: 0.67rem;
  color: var(--muted);
  text-align: center;
}

.counter-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===========================
   PIX HEADER
=========================== */
.pix-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.1rem;
}

.pix-header-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pix-header-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.pix-header-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
}

.pix-secure-badge {
  margin-left: auto;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* ===========================
   ALERT
=========================== */
.alert-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 12px;
  padding: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #78350f;
  line-height: 1.5;
}

.alert-box strong { display: block; font-size: 0.83rem; margin-bottom: 0.15rem; }
.alert-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ===========================
   SUMMARY
=========================== */
.summary-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.summ-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  padding: 0.3rem 0;
  color: var(--muted);
  border-bottom: 1px solid #f1f5f9;
}

.summ-row:last-child { border-bottom: none; }
.summ-row strong { color: var(--text); font-weight: 700; }
.orange-text { color: var(--orange) !important; font-size: 1rem !important; font-weight: 800 !important; }
.green-text  { color: var(--green) !important; font-weight: 700 !important; }

/* ===========================
   QR SECTION
=========================== */
.qr-section { text-align: center; margin-bottom: 0.5rem; }

.realtime-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-ring 1.6s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70%  { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.timer-chip {
  background: #f1f5f9;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
  color: #475569;
}

.qr-frame {
  display: inline-block;
  padding: 10px;
  border: 2.5px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 0.6rem;
}

#qrCanvas { display: block; border-radius: 8px; }

.qr-hint {
  font-size: 0.73rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

/* ===========================
   OR DIVIDER
=========================== */
.or-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.8rem 0;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.or-divider span {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.copy-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

/* ===========================
   PIX COPY
=========================== */
.pix-copy-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.6rem;
}

.pix-input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.62rem;
  font-family: 'Courier New', monospace;
  color: var(--muted);
  background: #f8fafc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.btn-copy:hover { background: #1e40af; }

.btn-regen {
  width: 100%;
  padding: 0.65rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-regen:hover { border-color: var(--orange); color: var(--orange); }

/* ===========================
   AWAIT
=========================== */
.await-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: #f8fafc;
  border-radius: 10px;
  padding: 0.8rem;
  margin-top: 0.8rem;
  border: 1px solid var(--border);
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  flex-shrink: 0;
}

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

/* ===========================
   BONUS CARD
=========================== */
.bonus-card {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border: 1.5px solid #fed7aa;
}

.bonus-top {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.bonus-fire { font-size: 1.5rem; flex-shrink: 0; }

.bonus-top h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #c2410c;
  margin-bottom: 0.2rem;
}

.bonus-top p { font-size: 0.8rem; color: #78350f; line-height: 1.4; }

.btn-skip {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  background: none;
  border: none;
  font-size: 0.78rem;
  color: #9ca3af;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Inter', sans-serif;
}

/* ===========================
   VISITS
=========================== */
.visits-card { padding: 1rem 1.2rem; }

.visits-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-ring 1.6s infinite;
  display: inline-block;
  flex-shrink: 0;
}

.visits-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }

.visits-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.visits-list li:last-child { border-bottom: none; }

.visits-list li strong { color: var(--text); }

.visits-list li em {
  font-style: normal;
  color: #9ca3af;
  margin-left: auto;
  white-space: nowrap;
}

.v-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===========================
   CONFIRMED
=========================== */
.confirmed-card { text-align: center; padding: 2rem 1.5rem; }

.success-anim {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.1rem;
}

.success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #dcfce7;
  animation: pop 0.5s cubic-bezier(.36,.07,.19,.97);
}

.check-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green);
  font-weight: 900;
  animation: pop 0.5s cubic-bezier(.36,.07,.19,.97);
}

@keyframes pop {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmed-title { font-size: 1.5rem; font-weight: 800; color: var(--green); margin-bottom: 0.25rem; }
.confirmed-sub   { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.25rem; }

.bonus-msg {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  margin-top: 0.75rem;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,0.7);
  padding: 1.75rem 1rem;
  text-align: center;
  margin-top: 1rem;
}

.footer-inner { max-width: 480px; margin: 0 auto; }

.footer-logo {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.footer-logo strong { color: var(--orange); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.footer-links span { cursor: pointer; }
.footer-links span:hover { color: #fff; text-decoration: underline; }

.footer-copy {
  font-size: 0.7rem;
  line-height: 1.6;
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.modal-header {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header-left { display: flex; align-items: center; gap: 0.75rem; }

.modal-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.modal-brand { color: #fff; font-size: 1rem; font-weight: 800; letter-spacing: 0.03em; }
.modal-brand-sub { color: rgba(255,255,255,0.7); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

.modal-close-btn {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close-btn:hover { background: rgba(255,255,255,0.25); }

.modal-body { padding: 1.5rem 1.25rem 1.25rem; text-align: center; }

.modal-person-icon {
  width: 56px;
  height: 56px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
}

.modal-title { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.modal-sub   { font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }

.modal-summary {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1rem;
  text-align: left;
  border: 1px solid var(--border);
}

.modal-summ-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.28rem 0;
  color: var(--muted);
  border-bottom: 1px solid #f1f5f9;
}

.modal-summ-row:last-child { border-bottom: none; }
.modal-summ-row strong { color: var(--blue); font-weight: 700; }

.modal-form-group { text-align: left; margin-bottom: 0.8rem; }

.modal-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.modal-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #f8fafc;
  outline: none;
  transition: all 0.2s;
}

.modal-input:focus {
  border-color: var(--blue2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.modal-input::placeholder { color: #b0bec5; }

.modal-footer-text {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ===========================
   LIVE NOTIFICATION
=========================== */
.live-notif {
  position: fixed;
  bottom: 1.5rem;
  left: 1rem;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 500;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2), opacity 0.35s ease;
  pointer-events: none;
  border: 1px solid var(--border);
}

.live-notif.show { transform: translateY(0); opacity: 1; }

.notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-text { flex: 1; min-width: 0; }

.notif-main {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.notif-valor {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: 0.08rem;
}

.notif-time {
  font-size: 0.68rem;
  color: #9ca3af;
  margin-top: 0.08rem;
}

.notif-check { flex-shrink: 0; }

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1a1a2e;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 500;
  z-index: 999;
  transition: transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error   { background: #dc2626; }
