* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

/* ===== LOGO TikTok (ícone + wordmark, com glitch ciano/vermelho) ===== */
.tt-logo { display: inline-flex; align-items: center; gap: 3px; }
.tt-logo svg { fill: #010101; filter: drop-shadow(1.2px 0 #FE2C55) drop-shadow(-1.2px 0 #25F4EE); }
.tt-word { font-size: 21px; font-weight: 800; letter-spacing: -0.7px; color: #010101; line-height: 1; filter: drop-shadow(1px 0 rgba(254,44,85,.85)) drop-shadow(-1px 0 rgba(37,244,238,.85)); }
.tt-logo.tt-lg .tt-word { font-size: 28px; }

:root {
  --bg: #f5f5f8;
  --card: #ffffff;
  --card-hover: #f0f0f3;
  --border: #e0e0e6;
  --text: #1a1a2e;
  --text-secondary: #8e8ea0;
  --accent: #FE2C55;
  --accent-hover: #e6264d;
  --cyan: #25B8B3;
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.2s ease;
  --bottom-nav-h: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
  height: 100%;
  background: #fff;
}

body {
  max-width: 430px;
  margin: 0 auto;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

.modal-overlay { background: rgba(0,0,0,0.5); }

/* ===== SCREENS ===== */
.screen { display: none; width: 100%; height: 100%; overflow-y: auto; }
.screen.active { display: flex; align-items: center; justify-content: center; }

/* ===== APP SHELL ===== */
.app-shell { display: none; width: 100%; height: 100%; flex-direction: column; background: var(--bg); }
.app-shell.active { display: flex; }

/* ===== TAB CONTENT ===== */
.tab-content { display: none; flex: 1; flex-direction: column; overflow: hidden; }
.tab-content.active { display: flex; }

.tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
}

.tab-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px 20px;
  -webkit-overflow-scrolling: touch;
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: calc(var(--bottom-nav-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--card);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.bn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 16px;
  transition: color var(--transition);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.bn-item svg { transition: color var(--transition); }

.bn-item.active { color: var(--accent); }
.bn-item.active svg { color: var(--accent); }
.bn-item.disabled { opacity: 0.3; pointer-events: none; }

.bn-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 0 0 2px 2px;
  transition: transform 0.25s ease;
}

.bn-item.active::after { transform: translateX(-50%) scaleX(1); }

/* ===== HOME TOP ===== */
.home-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
  animation: fadeSlideIn 0.4s ease;
}

.ht-left { display: flex; align-items: center; gap: 12px; }
.ht-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border); color: var(--text-secondary);
}
.ht-info { display: flex; flex-direction: column; }
.ht-greeting { font-size: 13px; color: var(--text-secondary); }
.ht-email { font-size: 14px; font-weight: 600; color: var(--text); }

.ht-notif {
  position: relative; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all var(--transition);
  flex-shrink: 0;
}
.ht-notif:hover { background: var(--card-hover); }
.notif-dot {
  position: absolute; top: 8px; right: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

/* ===== BALANCE CARD ===== */
.balance-card {
  position: relative;
  background: #fe2c55;
  border-radius: 20px;
  padding: 20px 20px 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(254,44,85,0.3), 0 0 10px rgba(0,0,0,0.5) inset;
  animation: slideUp 0.5s ease 0.05s both;
  aspect-ratio: 1.586 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-glare {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(125deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 30%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 60%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.2) 100%);
  pointer-events: none; z-index: 0;
}

.card-texture {
  position: absolute; inset: 0; border-radius: 20px;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events: none; z-index: 0;
}

.bc-glow {
  position: absolute; top: -80%; right: -30%;
  width: 120%; height: 180%;
  background: radial-gradient(ellipse at 70% 30%, rgba(37,244,238,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.bc-right-group {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.bc-chip { flex-shrink: 0; }
.bc-contactless { flex-shrink: 0; }
.bc-balance-wrap { position: relative; z-index: 1; }
.bc-label { font-size: 15px; color: rgb(255 255 255); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: -5px; }
.bc-value { font-size: 35px; font-weight: bold; color: #fff; letter-spacing: -0.3px; }
.bc-cents { font-size: 18px; font-weight: 600; }
.bc-currency { font-size: 14px; color: rgb(255 255 255); margin-top: -8px; }

.bc-card-number {
  font-size: 16px; letter-spacing: 3px; color: rgba(255,255,255,0.85);
  font-family: "Courier New", monospace; position: relative; z-index: 1;
  margin: 6px 0;
}

.bc-status-line { display: flex; align-items: center; gap: 6px; position: relative; z-index: 1; margin-top: 8px; }
.bc-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }
#home-bc-label { font-size: 10px; color: rgb(255 255 255); }



/* ===== ALERT BANNER ===== */
.alert-banner {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  animation: slideUp 0.5s ease 0.1s both;
}

.alert-banner.warning {
  background: rgba(254,44,85,0.08);
  border: 1px solid rgba(254,44,85,0.2);
}

.alert-banner.info {
  background: rgba(22,199,132,0.06);
  border: 1px solid rgba(22,199,132,0.15);
}

.alert-banner.denied {
  background: rgba(254,44,85,0.06);
  border: 1px solid rgba(254,44,85,0.12);
}

.alert-icon { flex-shrink: 0; margin-top: 1px; }
.alert-banner.warning .alert-icon { color: var(--accent); }
.alert-banner.info .alert-icon { color: #16c784; }

.alert-text strong { display: block; font-size: 14px; margin-bottom: 4px; }
.alert-banner.warning .alert-text strong { color: #f87171; }
.alert-banner.info .alert-text strong { color: #16c784; }

.alert-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ===== ACTION GRID ===== */
.action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  animation: slideUp 0.5s ease 0.15s both;
}

.action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 0; cursor: default;
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.action-btn:disabled { opacity: 0.5; }

.action-lock {
  position: absolute; top: 4px; right: 4px; z-index: 2;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #dc2626; color: #fff;
}
.action-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.04);
}

/* ===== HOME ACTIONS ===== */
.home-actions { margin-bottom: 24px; animation: slideUp 0.5s ease 0.2s both; }

/* ===== HOME SECTION ===== */
.home-section { animation: slideUp 0.5s ease 0.25s both; }
.hs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hs-header h3 { font-size: 16px; font-weight: 600; }
.hs-badge {
  font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}
.hs-badge.pending { background: #fef3c7; color: #d97706; }
.hs-badge.in-progress { background: rgba(22,199,132,0.1); color: #16c784; }
.hs-badge.denied { background: rgba(254,44,85,0.08); color: var(--accent); }

.hs-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
}

.ac-icon-wrap {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(254,44,85,0.1); color: var(--accent);
}

.ac-text strong { display: block; font-size: 14px; margin-bottom: 4px; }
.ac-text p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ===== ANALYSIS PROGRESS ===== */
.analysis-progress {
  margin: 20px 0 16px;
  animation: slideUp 0.4s ease;
}

.ap-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ap-label { font-size: 14px; font-weight: 500; }
.ap-day { font-size: 12px; font-weight: 600; color: var(--accent); background: rgba(254,44,85,0.08); padding: 3px 10px; border-radius: 100px; }

.ap-track {
  height: 6px; border-radius: 3px; background: var(--card); overflow: hidden; margin-bottom: 6px;
}
.ap-fill { height: 100%; border-radius: 3px; background: var(--accent); transition: width 0.6s ease; }
.ap-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-secondary); }

/* ===== ANALYSIS STATUS ===== */
.analysis-status {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid rgba(254,44,85,0.15);
  border-left: 3px solid var(--accent);
  box-shadow: 0 1px 8px rgba(254,44,85,0.04);
  margin-bottom: 20px; animation: slideUp 0.4s ease 0.08s both;
}

.as-icon {
  flex-shrink: 0; color: var(--accent);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(254,44,85,0.08);
}
.as-text {
  font-size: 15px; font-weight: 500; color: var(--text);
  line-height: 1.5;
}
.as-text strong { color: var(--accent); font-weight: 600; }
.as-text span { color: var(--text-secondary); font-weight: 400; }

/* ===== TIMELINE ===== */
.analysis-timeline {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px;
  margin-bottom: 20px; animation: slideUp 0.4s ease 0.12s both;
}

.tl-title { font-size: 15px; font-weight: 600; margin-bottom: 14px; }

.tl-list { display: flex; flex-direction: column; gap: 8px; }

.tl-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border);
  font-size: 14px; color: var(--text-secondary);
  animation: fadeSlideIn 0.3s ease both;
  transition: all 0.3s ease;
}
.tl-item.completed { border-color: rgba(22,199,132,0.35); background: rgba(22,199,132,0.07); }
.tl-item.current { border-color: #f59e0b; background: rgba(245,158,11,0.08); }
.tl-item.denied { border-color: #dc2626; background: rgba(220,38,38,0.06); }

.tl-i-icon {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #eeeef2; color: var(--text-secondary); transition: all 0.3s ease;
}
.tl-item.completed .tl-i-icon { background: rgba(22,199,132,0.15); color: #16c784; }
.tl-item.current .tl-i-icon { background: rgba(245,158,11,0.15); color: #d97706; }
.tl-item.denied .tl-i-icon { background: rgba(220,38,38,0.12); color: #dc2626; }

.tl-i-content { flex: 1; min-width: 0; }
.tl-i-name { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.tl-item.completed .tl-i-name { color: #16c784; }
.tl-item.current .tl-i-name { color: #b45309; }
.tl-item.denied .tl-i-name { color: #dc2626; }

.tl-i-status { display: block; font-size: 11px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-item.completed .tl-i-status { color: #16c784; }
.tl-item.current .tl-i-status { color: #d97706; }

.tl-i-bar { height: 3px; border-radius: 2px; background: #e0e0e6; margin-top: 6px; overflow: hidden; }
.tl-i-fill { height: 100%; border-radius: 2px; transition: width 0.6s ease; }
.tl-item.completed .tl-i-fill { background: #16c784; }
.tl-item.current .tl-i-fill { background: #d97706; }

.tl-i-fill--loading {
  animation: loadFill 3.5s ease infinite;
}
@keyframes loadFill {
  0%   { width: 0%;   opacity: 0.6; }
  20%  { width: 15%;  opacity: 1; }
  50%  { width: 45%;  opacity: 1; }
  75%  { width: 78%;  opacity: 1; }
  88%  { width: 94%;  opacity: 0.9; }
  95%  { width: 100%; opacity: 0.5; }
  100% { width: 100%; opacity: 0; }
}

.tl-i-approved {
  display: flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600; color: #16c784;
  background: rgba(22,199,132,0.12);
  padding: 3px 8px 3px 10px; border-radius: 100px;
  flex-shrink: 0; margin-left: auto;
}

.tl-i-check {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.tl-item.denied .tl-i-check { color: #dc2626; }

.tl-i-badge {
  font-size: 10px;
  font-weight: 600;
  color: #d97706;
  background: rgba(245,158,11,0.12);
  padding: 3px 8px;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
  animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ===== DENIED (analysis tab) ===== */
.analysis-denied {
  text-align: center; padding: 32px 0;
  animation: slideUp 0.5s ease;
}

.ad-icon-wrap {
  position: relative; display: inline-flex; margin-bottom: 20px;
}
.ad-icon-pulse {
  position: absolute; inset: -12px; border-radius: 50%;
  background: rgba(22,199,132,0.10);
  animation: deniedPulse 2s ease-in-out infinite;
}
.ad-icon {
  position: relative; z-index: 1; display: block;
  animation: deniedPop 0.5s ease both;
}
@keyframes deniedPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 0.8; }
}
@keyframes deniedPop {
  0% { transform: scale(0) rotate(-30deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.ad-title { font-size: 26px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.ad-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; padding: 0 4px; }
.ad-sub strong { color: #16c784; font-weight: 600; }

.ad-result {
  display: flex; gap: 8px; margin-bottom: 24px;
}
.ad-result-item {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.ad-ri-label { font-size: 11px; color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
.ad-ri-value { font-size: 15px; font-weight: 700; color: var(--text); }
.ad-ri-value.denied { color: #dc2626; }
.ad-ri-value.approved { color: #16c784; }

.ad-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px;
  text-align: left;
}
.ad-card-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text); }

.ad-reasons { }
.ad-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-secondary);
}
.ad-row:last-child { border-bottom: none; }
.ad-row svg { flex-shrink: 0; }

.ad-value {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(22,199,132,0.05), rgba(22,199,132,0.10));
  border: 1px solid rgba(22,199,132,0.18);
}
.dv-left { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.dv-label { font-size: 13px; font-weight: 600; color: var(--text); }
.dv-desc { font-size: 11px; color: var(--text-secondary); }
.dv-amount { font-size: 22px; font-weight: 700; color: #16c784; }

/* ===== SUPPORT ===== */
.support-content {
  padding: 24px 0;
  animation: slideUp 0.5s ease;
}

.faq-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.faq-header-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(254,44,85,0.08);
}
.faq-header h3 { font-size: 18px; font-weight: 700; }

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: var(--accent); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 14px 16px;
  background: none; border: none; cursor: pointer;
  font-size: 14px; font-weight: 500; color: var(--text);
  text-align: left; line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
}
.faq-q span { flex: 1; }
.faq-arrow {
  flex-shrink: 0; color: var(--text-secondary);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner {
  overflow: hidden; font-size: 13px; color: var(--text-secondary);
  line-height: 1.6; padding: 0 16px;
}
.faq-item.open .faq-a-inner { padding: 0 16px 14px; }
.faq-a-inner strong { color: var(--text); font-weight: 600; }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}
.modal-overlay.open { display: flex; }

.modal-sheet {
  width: 100%; max-width: 480px; max-height: 90vh;
  background: var(--bg); border-radius: 20px 20px 0 0;
  padding: 12px 24px 32px;
  overflow-y: auto;
  animation: slideUpModal 0.35s ease;
}

.modal-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--border); margin: 0 auto 16px;
}

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.modal-title { font-size: 18px; font-weight: 700; }
.btn-icon {
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all var(--transition);
}
.btn-icon:hover { background: var(--card); }

.modal-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }

/* ===== UPLOAD ZONES ===== */
.upload-zone {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; margin-bottom: 10px;
  border: 1.5px dashed var(--border); border-radius: var(--radius-sm);
  background: var(--card); cursor: pointer;
  transition: all var(--transition); position: relative;
}
.upload-zone:hover { border-color: var(--accent); background: var(--card-hover); }
.upload-zone.has-file { border-color: #16c784; border-style: solid; background: rgba(22,199,132,0.04); }
.upload-zone.has-file .uz-icon { color: #16c784; }

.uz-icon { flex-shrink: 0; color: var(--text-secondary); transition: color var(--transition); }
.uz-info { flex: 1; }
.uz-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.uz-sub { font-size: 12px; color: var(--text-secondary); }
.uz-status { flex-shrink: 0; color: var(--text-secondary); }
.uz-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* ===== LOGIN ===== */
.login-container {
  width: 100%; max-width: 400px; padding: 40px 24px;
}
.login-header { margin-bottom: 40px; animation: fadeSlideIn 0.5s ease; text-align: center; }
.login-title { font-size: 30px; font-weight: 700; text-align: center; margin-bottom: 10px; animation: slideUp 0.5s ease 0.1s both; }
.login-desc { font-size: 15px; color: var(--text-secondary); text-align: center; line-height: 1.5; margin-bottom: 36px; padding: 0 12px; animation: slideUp 0.5s ease 0.15s both; }
.login-form { width: 100%; }
.login-footer { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-secondary); }
.login-footer a { color: var(--accent); text-decoration: none; }

/* ===== FORM ===== */
.input-group {
  position: relative; width: 100%; margin-bottom: 16px;
}
.input-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-secondary); pointer-events: none;
}
.input-field {
  width: 100%; padding: 16px 16px 16px 48px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px;
  color: var(--text); outline: none; transition: all var(--transition);
}
.input-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(254,44,85,0.08); }
.input-field::placeholder { color: var(--text-secondary); }

.form-msg { font-size: 13px; margin-top: 12px; text-align: center; min-height: 20px; }
.form-msg.error { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border: none; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(254,44,85,0.2); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: default; transform: none; box-shadow: none; }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; }

.btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: transparent; font-size: 14px; font-weight: 500; color: var(--text-secondary);
  cursor: pointer; transition: all var(--transition);
}
.btn-outline:disabled { opacity: 0.4; cursor: default; }

/* ===== UPLOAD SUCCESS ===== */
.upload-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  padding: 48px 24px; text-align: center;
  animation: successPop 0.5s ease;
}
.upload-success.show { display: flex; }
#upload-modal .modal-sheet:has(.upload-success.show) .modal-handle,
#upload-modal .modal-sheet:has(.upload-success.show) .modal-header,
#upload-modal .modal-sheet:has(.upload-success.show) .modal-desc,
#upload-modal .modal-sheet:has(.upload-success.show) #doc-form,
#upload-modal .modal-sheet:has(.upload-success.show) #upload-msg {
  display: none;
}
.us-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,199,132,0.10);
  margin-bottom: 20px; animation: successScale 0.6s ease;
}
.us-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.us-sub { font-size: 14px; color: var(--text-secondary); }

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.85); }
  60% { transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes successScale {
  0% { transform: scale(0); }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 200; padding: 14px 24px; border-radius: 100px;
  background: #1a1a2e; border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 14px; font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0; pointer-events: none; white-space: nowrap;
  transition: all 0.3s ease; max-width: 90vw;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.hide { opacity: 0; transform: translateX(-50%) translateY(20px); }
.toast.success { border-color: #16c784; }
.toast.error { border-color: var(--accent); }

/* ===== SPINNER ===== */
.spinner {
  display: inline-block; width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.2); border-top-color: #fff;
  border-radius: 50%; animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUpModal { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== SCROLLBAR ===== */
.tab-scroll::-webkit-scrollbar, .modal-sheet::-webkit-scrollbar, .screen::-webkit-scrollbar { width: 4px; }
.tab-scroll::-webkit-scrollbar-track, .modal-sheet::-webkit-scrollbar-track, .screen::-webkit-scrollbar-track { background: transparent; }
.tab-scroll::-webkit-scrollbar-thumb, .modal-sheet::-webkit-scrollbar-thumb, .screen::-webkit-scrollbar-thumb { background: #d0d0d8; border-radius: 2px; }

.login-footer a { color: var(--accent); }
.login-footer a:hover { text-decoration: underline; }

.upload-zone { background: #fff; }
.upload-zone:hover { border-color: var(--accent); background: #f8f8fb; }
.upload-zone.has-file { border-color: #16c784; background: rgba(22,199,132,0.04); }

/* ===== OFFER POPUP ===== */
.offer-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}
.offer-overlay.open { display: flex; }

.offer-card {
  position: relative;
  width: 100%; max-width: 360px;
  background: var(--card); border-radius: 22px;
  padding: 34px 24px 20px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  animation: offerPop 0.4s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes offerPop {
  0% { opacity: 0; transform: scale(0.82) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.offer-close {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: var(--card-hover); color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.offer-close:hover { background: var(--border); color: var(--text); }

.offer-badge {
  display: inline-block;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}

.offer-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(254,44,85,0.1); color: var(--accent);
}

.offer-title { font-size: 21px; font-weight: 800; margin-bottom: 8px; line-height: 1.25; }
.offer-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 18px; }

.offer-price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 20px; }
.offer-price.hidden { display: none; }
.offer-price-old { font-size: 16px; color: var(--text-secondary); text-decoration: line-through; }
.offer-price-now { font-size: 30px; font-weight: 800; color: var(--accent); }

#offer-cta { text-decoration: none; margin-bottom: 6px; }

.offer-dismiss {
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary); font-size: 13px; padding: 10px;
  width: 100%; margin-top: 4px;
}
.offer-dismiss:hover { color: var(--text); }

/* ===== PROCESSING SCREEN (tela de espera pós-envio) ===== */
.processing-screen {
  position: fixed; inset: 0; z-index: 200;
  background: linear-gradient(165deg, #14141c 0%, #1e0d15 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.processing-screen.show { opacity: 1; pointer-events: auto; }
.ps-inner { width: 100%; max-width: 340px; padding: 0 30px; text-align: center; color: #fff; }
.ps-spinner {
  width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(254, 44, 85, .12); position: relative;
}
.ps-spinner::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid transparent; border-top-color: #FE2C55; border-right-color: #FE2C55;
  animation: ps-spin .9s linear infinite;
}
@keyframes ps-spin { to { transform: rotate(360deg); } }
.ps-title { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.ps-sub { font-size: 14px; color: rgba(255, 255, 255, .6); margin: 0 0 30px; }
.ps-bar { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, .1); overflow: hidden; margin-bottom: 30px; }
.ps-bar-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #FE2C55, #ff6a8a); transition: width .6s ease; }
.ps-steps { display: flex; flex-direction: column; gap: 15px; text-align: left; }
.ps-step { display: flex; align-items: center; gap: 12px; opacity: .32; transition: opacity .4s ease; }
.ps-step.active, .ps-step.loading { opacity: 1; }
.ps-step-ico {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, .25);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.ps-step.active .ps-step-ico { border-color: #16c784; background: #16c784; }
.ps-step.active .ps-step-ico::after {
  content: ""; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.ps-step.loading .ps-step-ico { border-color: #FE2C55; border-top-color: transparent; background: transparent; animation: ps-spin .8s linear infinite; }
.ps-step-txt { font-size: 15px; font-weight: 600; color: #fff; }

/* ===== SUPPORT CTA (card "Talk to support") ===== */
.support-cta {
  display: flex; align-items: center; gap: 14px; width: 100%;
  background: #fff; border: 1px solid var(--border, #eceef2); border-radius: 16px;
  padding: 16px; margin-bottom: 20px; cursor: pointer; text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,.04); transition: transform .12s ease, box-shadow .12s ease;
}
.support-cta:active { transform: scale(.99); }
.sc-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, #FE2C55, #ff6a8a); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.sc-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sc-title { font-size: 15.5px; font-weight: 700; color: var(--text, #16181c); }
.sc-sub { font-size: 12.5px; color: var(--muted, #6b7280); margin-top: 2px; }
.sc-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #16c784; flex-shrink: 0; }
.sc-dot, .sch-dot { width: 7px; height: 7px; border-radius: 50%; background: #16c784; display: inline-block; box-shadow: 0 0 0 rgba(22,199,132,.5); animation: sc-pulse 1.8s infinite; }
@keyframes sc-pulse { 0% { box-shadow: 0 0 0 0 rgba(22,199,132,.5); } 70% { box-shadow: 0 0 0 6px rgba(22,199,132,0); } 100% { box-shadow: 0 0 0 0 rgba(22,199,132,0); } }

/* ===== SUPPORT CHAT (pop-up do assistente) ===== */
.support-chat {
  position: fixed; inset: 0; z-index: 210; display: flex; align-items: flex-end; justify-content: center;
  background: rgba(15,15,20,.5); opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.support-chat.open { opacity: 1; pointer-events: auto; }
.sch-sheet {
  width: 100%; max-width: 440px; height: 82vh; max-height: 720px; background: #f4f5f7;
  border-radius: 22px 22px 0 0; display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(100%); transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.support-chat.open .sch-sheet { transform: translateY(0); }
.sch-header {
  display: flex; align-items: center; gap: 11px; padding: 14px 14px;
  background: linear-gradient(135deg, #FE2C55, #ff5c7c); color: #fff; flex-shrink: 0;
}
.sch-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sch-id { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sch-name { font-size: 16px; font-weight: 700; }
.sch-status { font-size: 12px; opacity: .95; display: inline-flex; align-items: center; gap: 5px; }
.sch-status .sch-dot { background: #7CFFB2; animation: none; }
.sch-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff; border: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.sch-btn:active { background: rgba(255,255,255,.32); }
.sch-body { flex: 1; overflow-y: auto; padding: 16px 14px 8px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 82%; padding: 11px 14px; border-radius: 16px; font-size: 14.5px; line-height: 1.45; word-wrap: break-word; animation: chat-in .2s ease; }
@keyframes chat-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.chat-msg.bot { align-self: flex-start; background: #fff; color: var(--text, #16181c); border-bottom-left-radius: 5px; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.chat-msg.user { align-self: flex-end; background: linear-gradient(135deg, #FE2C55, #ff5c7c); color: #fff; border-bottom-right-radius: 5px; }
.chat-msg strong { font-weight: 700; }
.chat-fb { align-self: flex-start; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted, #6b7280); margin: -2px 0 4px 4px; }
.chat-fb button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border, #e5e7eb); background: #fff; cursor: pointer; font-size: 13px; line-height: 1; }
.chat-fb button:active { background: #f0f0f3; }
.chat-fb .fb-note { color: #16c784; font-weight: 600; }
.chat-typing { align-self: flex-start; background: #fff; border-radius: 16px; border-bottom-left-radius: 5px; padding: 13px 16px; box-shadow: 0 1px 4px rgba(0,0,0,.05); display: inline-flex; gap: 4px; }
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: #c4c7cf; animation: chat-blink 1.2s infinite; }
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes chat-blink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }
.sch-quick { flex-shrink: 0; display: flex; flex-direction: column; gap: 7px; padding: 8px 14px; background: #fff; border-top: 1px solid var(--border, #eceef2); max-height: 190px; overflow-y: auto; }
.sch-quick button { text-align: left; background: rgba(254,44,85,.07); color: #FE2C55; border: 0; border-radius: 999px; padding: 9px 15px; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.sch-quick button:active { background: rgba(254,44,85,.15); }
.sch-input { flex-shrink: 0; display: flex; align-items: center; gap: 9px; padding: 10px 14px 14px; background: #fff; }
.sch-input input { flex: 1; border: 1px solid var(--border, #e0e2e8); border-radius: 999px; padding: 12px 16px; font-size: 14.5px; outline: none; background: #f7f8fa; }
.sch-input input:focus { border-color: #FE2C55; background: #fff; }
.sch-send { width: 44px; height: 44px; border-radius: 50%; border: 0; flex-shrink: 0; background: linear-gradient(135deg, #FE2C55, #ff5c7c); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.sch-send:active { transform: scale(.94); }

/* ===== EARN (assistir pra ganhar) ===== */
.earn-locked { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 48px 24px; gap: 10px; }
.el-icon { width: 72px; height: 72px; border-radius: 20px; background: rgba(254,44,85,.08); color: #FE2C55; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.el-title { font-size: 20px; font-weight: 800; color: var(--text, #16181c); margin: 0; }
.el-sub { font-size: 14px; color: var(--muted, #6b7280); line-height: 1.5; max-width: 300px; margin: 0 0 14px; }

.earn-content { padding: 4px 0 20px; }
.earn-hero { background: linear-gradient(135deg, #16181c, #2a1620); border-radius: 20px; padding: 20px; color: #fff; margin-bottom: 22px; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.eh-top { display: flex; align-items: center; justify-content: space-between; }
.eh-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; }
.eh-live { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #FE2C55; }
.eh-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #FE2C55; animation: sc-pulse 1.6s infinite; }
.eh-amount { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin: 6px 0 14px; }
.eh-bar { height: 8px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.eh-bar-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #FE2C55, #ff8fa6); transition: width .5s cubic-bezier(.2,.8,.2,1); }
.eh-meta { display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 9px; }
.eh-meta #earn-pervideo { color: #16c784; font-weight: 700; }

.earn-section-title { font-size: 16px; font-weight: 800; color: var(--text, #16181c); margin: 0 0 12px; }
.earn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.earn-card { position: relative; border-radius: 15px; overflow: hidden; aspect-ratio: 9/16; cursor: pointer; background: #222; box-shadow: 0 3px 12px rgba(0,0,0,.1); transition: transform .12s ease; }
.earn-card:active { transform: scale(.97); }
.earn-card .ec-thumb { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: #222; }
.earn-card .ec-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 45%); }
.earn-card .ec-reward { position: absolute; top: 8px; left: 8px; background: rgba(22,199,132,.95); color: #fff; font-size: 12px; font-weight: 800; padding: 3px 9px; border-radius: 999px; }
.earn-card .ec-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.22); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; }
.earn-card .ec-handle { position: absolute; bottom: 8px; left: 8px; right: 8px; color: #fff; font-size: 12px; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.earn-card.watched { cursor: default; }
.earn-card.watched .ec-shade { background: rgba(0,0,0,.6); }
.earn-card.watched .ec-play { background: rgba(22,199,132,.95); }
.earn-card.pending { outline: 2px solid #16c784; outline-offset: -2px; }
.earn-card .ec-claim { position: absolute; bottom: 8px; left: 8px; right: 8px; text-align: center; background: #16c784; color: #fff; font-size: 12px; font-weight: 800; padding: 5px; border-radius: 8px; z-index: 2; animation: sc-pulse 1.6s infinite; }
.earn-card.pending .ec-handle { display: none; }
.earn-card .ec-done { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: none; }
.earn-card.watched .ec-done { display: block; }
.earn-card.watched .ec-play { display: none; }

.earn-done { display: flex; align-items: center; gap: 10px; background: rgba(22,199,132,.08); border: 1px solid rgba(22,199,132,.25); border-radius: 14px; padding: 16px; margin-top: 18px; font-size: 13.5px; font-weight: 600; color: #0f9d63; }

/* ===== VIDEO PLAYER (tela cheia vertical) ===== */
.video-player { position: fixed; inset: 0; z-index: 220; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.video-player.open { opacity: 1; pointer-events: auto; }
.vp-stage { position: relative; width: 100%; max-width: 430px; height: 100%; max-height: 100vh; overflow: hidden; }
.vp-media { position: absolute; inset: 0; overflow: hidden; }
.vp-media .vp-thumb { position: absolute; inset: 0; transform: scale(1.05); animation: vp-ken 8s ease-in-out infinite alternate; }
@keyframes vp-ken { from { transform: scale(1.05) translateY(0); } to { transform: scale(1.12) translateY(-2%); } }
.vp-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,.55) 100%); }
.vp-play-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .85; animation: vp-pulse 1.6s ease-in-out infinite; }
@keyframes vp-pulse { 0%,100% { opacity: .5; transform: translate(-50%,-50%) scale(1); } 50% { opacity: .9; transform: translate(-50%,-50%) scale(1.08); } }
.vp-caption { position: absolute; top: 58px; left: 14px; color: #fff; font-size: 14px; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,.7); z-index: 3; background: rgba(0,0,0,.3); padding: 4px 10px; border-radius: 999px; }
.vp-close { position: absolute; top: 16px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: rgba(0,0,0,.4); border: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 3; }
.vp-reward { position: absolute; top: 18px; left: 14px; background: rgba(22,199,132,.95); color: #fff; font-weight: 800; font-size: 14px; padding: 5px 12px; border-radius: 999px; z-index: 3; }
.vp-panel { position: absolute; bottom: 34px; left: 20px; right: 20px; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.vp-hint { text-align: center; color: #fff; font-size: 14.5px; line-height: 1.45; opacity: .95; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.vp-hint strong { color: #16c784; }
.vp-cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; width: 100%; max-width: 300px; padding: 15px 20px; border: 0; border-radius: 14px; background: linear-gradient(135deg,#FE2C55,#ff5c7c); color: #fff; font-size: 16px; font-weight: 800; cursor: pointer; box-shadow: 0 8px 24px rgba(254,44,85,.4); }
.vp-cta:active { transform: scale(.97); }
.vp-waiting { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 13.5px; text-align: left; opacity: .95; max-width: 300px; }
.vp-waiting strong { color: #16c784; }
.vp-spin { width: 22px; height: 22px; border-radius: 50%; border: 3px solid rgba(255,255,255,.25); border-top-color: #FE2C55; animation: ps-spin .8s linear infinite; flex-shrink: 0; }
.vp-credited { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 4; }
.vp-credited.show { display: flex; animation: chat-in .25s ease; }
.vpc-check { width: 72px; height: 72px; border-radius: 50%; background: #16c784; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 8px rgba(22,199,132,.25); }
.vpc-amount { color: #fff; font-size: 36px; font-weight: 800; }
.vpc-label { color: rgba(255,255,255,.75); font-size: 14px; }
/* saldo piscando ao creditar */
@keyframes bal-bump { 0% { transform: scale(1); } 30% { transform: scale(1.08); color: #16c784; } 100% { transform: scale(1); } }
.bc-value.bump { animation: bal-bump .6s ease; }

/* ===== PAYOUT ACCOUNT (conta de recebimento) ===== */
.pay-methods { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 18px; }
.pm { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 4px; border: 1.5px solid var(--border, #e5e7eb); border-radius: 13px; background: #fff; color: var(--muted, #6b7280); cursor: pointer; transition: all .15s ease; font-size: 11px; font-weight: 600; }
.pm svg { color: var(--muted, #9aa0aa); }
.pm:active { transform: scale(.96); }
.pm.active { border-color: #FE2C55; background: rgba(254,44,85,.05); color: #16181c; }
.pm.active svg { color: #FE2C55; }
@media (max-width: 400px) { .pay-methods { grid-template-columns: repeat(3, 1fr); } }

.pay-fields { display: flex; flex-direction: column; gap: 11px; margin-bottom: 14px; }
.pf { display: flex; flex-direction: column; gap: 5px; }
.pf label { font-size: 12.5px; font-weight: 600; color: var(--text, #16181c); }
.pf input { border: 1.5px solid var(--border, #e0e2e8); border-radius: 12px; padding: 13px 14px; font-size: 15px; outline: none; background: #f7f8fa; color: var(--text, #16181c); }
.pf input:focus { border-color: #FE2C55; background: #fff; }
.pf .hint { font-size: 11.5px; color: var(--muted, #9aa0aa); }

.pay-secure { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted, #6b7280); margin-bottom: 16px; }
