/* =============================================
   TIKPRO — DESIGN SYSTEM
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #e8294e;
  --brand-dark:  #c01f3c;
  --brand-light: #ff6b8a;
  --cyan:        #00c4cc;
  --bg:          #f7f8fa;
  --bg-card:     #ffffff;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --font:        'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text-dark); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ---- UTILITIES ---- */
.container { max-width: 680px; margin: 0 auto; padding: 0 20px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-brand { display: flex; align-items: center; gap: 8px; }
.brand-name { font-weight: 800; font-size: 1.1rem; color: var(--text-dark); }
.navbar-nav { display: flex; align-items: center; gap: 12px; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--text-mid); padding: 6px 10px; }
.nav-link:hover { color: var(--brand); }

.tiktok-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #010101 0%, #69c9d0 50%, #ee1d52 100%);
  display: flex; align-items: center; justify-content: center;
}
.tiktok-icon.small { width: 26px; height: 26px; border-radius: 6px; }

.btn-primary-sm {
  background: var(--brand); color: #fff;
  padding: 8px 18px; border-radius: 50px;
  font-size: .85rem; font-weight: 700;
  transition: background .2s, transform .15s;
}
.btn-primary-sm:hover { background: var(--brand-dark); transform: translateY(-1px); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(170deg, #ffffff 0%, #f0f4ff 60%, #ffe0e7 100%);
  padding: 60px 20px 0;
  text-align: center;
}
.hero-inner { max-width: 560px; margin: 0 auto; }

.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff0f3; color: var(--brand);
  font-size: .78rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid #ffd0d9;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 18px;
}
.highlight-pink { color: var(--brand); }
.highlight-cyan  { color: var(--cyan); }

.hero-sub {
  font-size: 1rem; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 32px;
  max-width: 440px; margin-left: auto; margin-right: auto;
}

.btn-hero {
  display: block; width: 100%; max-width: 480px;
  margin: 0 auto 48px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-size: 1.05rem; font-weight: 800;
  padding: 18px 24px; border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(232,41,78,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,41,78,.4); }
.btn-hero:active { transform: translateY(0); }

/* STATS BAR */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px 10px;
  gap: 0;
}
.stat-item { flex: 1; text-align: center; }
.stat-value { display: block; font-size: 1.35rem; font-weight: 800; color: var(--text-dark); }
.stat-label { display: block; font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 64px 0; }
.section-header { margin-bottom: 36px; }
.section-title { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); }
.section-sub { font-size: .95rem; color: var(--text-muted); margin-top: 6px; }

/* HOW IT WORKS */
.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.step-number {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.step-content p  { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

/* FEATURES GRID */
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feature-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.feature-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.feature-card p  { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  padding: 56px 20px; text-align: center;
}
.cta-banner h2 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 28px; }
.btn-cta-white {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.7);
  color: #fff; font-size: 1rem; font-weight: 700;
  padding: 16px 40px; border-radius: var(--radius-lg);
  transition: background .2s, transform .15s;
  width: 100%; max-width: 440px;
}
.btn-cta-white:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* =============================================
   DASHBOARD PAGE
   ============================================= */
.dashboard-page { background: #f0f2f5; min-height: 100vh; }

.dash-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  box-shadow: var(--shadow-sm);
}
.dash-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
}
.dash-center { display: flex; align-items: center; gap: 6px; }
.dash-brand { font-weight: 800; font-size: 1rem; }
.balance-label { display: block; font-size: .7rem; color: var(--text-muted); }
.balance-value { display: block; font-size: 1.1rem; font-weight: 800; color: #16a34a; }

.btn-withdraw {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff; font-size: .8rem; font-weight: 700;
  padding: 8px 16px; border-radius: 50px;
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
}

.progress-bar-wrap { padding: 8px 20px 10px; }
.progress-bar-track {
  height: 6px; background: #e5e7eb; border-radius: 10px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%; border-radius: 10px;
  background: linear-gradient(90deg, var(--brand) 0%, #ff6b8a 100%);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}
.progress-label { font-size: .72rem; color: var(--text-muted); margin-top: 4px; display: block; }

.campaign-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 10px 20px;
}
.campaign-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.campaign-tag {
  background: var(--brand); color: #fff;
  font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px;
}
.campaign-text { font-size: .82rem; color: rgba(255,255,255,.9); }

.creators-section { padding: 16px; max-width: 600px; margin: 0 auto; }
.creators-list { display: flex; flex-direction: column; gap: 12px; padding-bottom: 120px; }

.creator-card {
  background: var(--bg-card); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden;
}
.creator-top {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px 0;
}
.creator-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border);
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.creator-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.creator-info { flex: 1; }
.creator-name { font-weight: 700; font-size: .95rem; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.creator-handle { font-size: .78rem; color: var(--text-muted); margin-top: 1px; }
.creator-verified { color: #1d9bf0; }
.creator-stats {
  display: flex; gap: 16px;
  padding: 10px 14px;
  border-top: 1px solid var(--border); margin-top: 10px;
}
.stat-sm { display: flex; flex-direction: column; }
.stat-sm-value { font-size: .82rem; font-weight: 700; color: var(--text-dark); }
.stat-sm-label { font-size: .68rem; color: var(--text-muted); }
.creator-actions { padding: 12px 14px; }
.btn-follow {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-weight: 800; font-size: .88rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px rgba(232,41,78,.3);
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-follow:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(232,41,78,.4); }
.btn-follow:active { transform: translateY(0); }
.btn-follow.followed {
  background: #f3f4f6; color: var(--text-muted);
  box-shadow: none; border: 2px solid var(--border);
}
.btn-follow .follow-earned { font-size: .75rem; opacity: .85; }
.creator-reward {
  font-size: .72rem; text-align: center;
  color: #16a34a; font-weight: 600;
  padding: 0 14px 10px;
}

/* STICKY BOTTOM */
.sticky-bottom {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--bg-card);
  border-top: 2px solid var(--border);
  padding: 12px 20px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.btn-sticky-withdraw {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff; font-weight: 800; font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  transition: all .2s;
}
.btn-sticky-withdraw:disabled {
  background: #d1d5db; color: #9ca3af;
  box-shadow: none; cursor: not-allowed;
}
.btn-sticky-withdraw:not(:disabled):hover { transform: translateY(-2px); }
.sticky-hint {
  text-align: center; font-size: .75rem;
  color: var(--text-muted); margin-top: 6px;
}

/* =============================================
   WELCOME MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }

.modal-overlay.hidden { display: none; }

.modal-card {
  background: #fff; width: 100%; max-width: 500px;
  border-radius: 28px 28px 0 0;
  padding: 32px 24px 40px;
  animation: slideUp .35s cubic-bezier(.4,0,.2,1);
  max-height: 90vh; overflow-y: auto;
}
@keyframes slideUp { from { transform: translateY(100%) } to { transform: translateY(0) } }

.modal-emoji { font-size: 2.8rem; text-align: center; margin-bottom: 12px; }
.modal-title { font-size: 1.4rem; font-weight: 900; text-align: center; margin-bottom: 6px; }
.modal-subtitle { font-size: .9rem; color: var(--text-muted); text-align: center; margin-bottom: 24px; line-height: 1.5; }

.modal-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.modal-step { display: flex; align-items: flex-start; gap: 14px; }
.modal-step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.modal-step-text { display: flex; flex-direction: column; gap: 2px; }
.modal-step-text strong { font-size: .92rem; font-weight: 700; color: var(--text-dark); }
.modal-step-text span  { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

.modal-scroll-hint {
  text-align: center; font-size: .75rem; font-weight: 700;
  color: var(--brand); letter-spacing: .05em;
  margin-bottom: 20px;
}
.chevrons {
  display: flex; justify-content: center; gap: 4px;
  font-size: 1rem; color: var(--brand);
  transform: rotate(90deg); margin-top: 4px;
}
.chevrons span { animation: bounce 1.2s ease-in-out infinite; }
.chevrons span:nth-child(2) { animation-delay: .15s; }
.chevrons span:nth-child(3) { animation-delay: .3s; }
@keyframes bounce { 0%,100%{opacity:.3} 50%{opacity:1} }

.btn-modal-confirm {
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-size: 1rem; font-weight: 800;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(232,41,78,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-modal-confirm:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(232,41,78,.4); }

/* =============================================
   WITHDRAW PAGE
   ============================================= */
.withdraw-page { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }

.simple-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.simple-brand { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 1rem; }
.btn-back {
  display: flex; align-items: center; gap: 4px;
  background: none; font-size: .9rem; color: var(--text-mid);
  padding: 6px; font-weight: 500;
}
.btn-back:hover { color: var(--text-dark); }

.vsl-section { padding: 24px 20px 0; max-width: 600px; margin: 0 auto; width: 100%; }
.vsl-wrapper { width: 100%; }
.vsl-container {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); background: #000;
  position: relative; aspect-ratio: 9/7;
}
.vsl-placeholder {
  width: 100%; height: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.vsl-thumbnail-overlay {
  position: absolute; inset: 0;
}
.play-btn-wrap {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .2s, background .2s;
}
.play-btn:hover { background: rgba(0,0,0,.85); transform: scale(1.1); }
.vsl-timer-overlay {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.7); color: #fff;
  font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; z-index: 6;
}

.withdraw-cta-section {
  padding: 20px; max-width: 600px; margin: 0 auto; width: 100%;
  margin-top: auto;
}
.btn-withdraw-pix {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff; font-weight: 800; font-size: 1rem;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  transition: all .2s;
}
.btn-withdraw-pix:disabled {
  background: #d1d5db; color: #9ca3af;
  box-shadow: none; cursor: not-allowed;
}
.btn-withdraw-pix:not(:disabled):hover { transform: translateY(-2px); }
.withdraw-unlock-hint {
  text-align: center; font-size: .8rem; color: var(--text-muted);
  margin-top: 8px;
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-page {
  background: var(--bg); min-height: 100vh;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px 16px 48px;
}
.checkout-wrapper { width: 100%; max-width: 500px; }
.checkout-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 28px 24px;
}
.checkout-header {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px; gap: 6px;
}
.checkout-icon { font-size: 1.8rem; }
.checkout-title { font-size: 1.3rem; font-weight: 800; text-align: center; }

.checkout-step-label {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 600; color: var(--text-mid);
  margin: 16px 0 8px;
}
.step-badge {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.step-badge.green { background: #16a34a; }

.pix-code-box {
  background: #fffbeb; border: 1.5px solid #f59e0b;
  border-radius: var(--radius-sm); padding: 14px;
  margin-bottom: 12px; word-break: break-all;
}
.pix-code-box code { font-size: .78rem; color: #92400e; font-family: monospace; line-height: 1.6; }

.btn-copy-pix {
  width: 100%; padding: 14px;
  background: #f59e0b; color: #fff;
  font-size: .95rem; font-weight: 800;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .15s;
}
.btn-copy-pix:hover { background: #d97706; transform: translateY(-1px); }
.btn-copy-pix.copied { background: #16a34a; }

.qr-wrapper { display: flex; justify-content: center; padding: 16px 0; }
.qr-placeholder {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
  box-shadow: var(--shadow-sm);
}

.pix-expiry-warning {
  background: #fff7ed; border: 1px solid #fed7aa;
  border-radius: var(--radius-sm); padding: 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; color: #92400e; margin-top: 16px;
}

.checkout-status-box {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm); padding: 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: #166534; margin-top: 12px;
}
.status-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 3px solid #bbf7d0; border-top-color: #16a34a;
  animation: spin .8s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg) } }

/* =============================================
   TIKPRO — Checkout real (checkout.html) PIX + cartão
   ============================================= */
.tikpro-brand-row { margin-bottom: 16px; }
.tikpro-brand {
  display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.05rem; color: var(--text-dark);
}
.tikpro-checkout-header .checkout-title { font-size: 1.4rem; }
.tikpro-checkout-lead { font-size: 0.9rem; color: var(--text-muted); text-align: center; line-height: 1.5; max-width: 36rem; margin: 0 auto; }
.tikpro-checkout-card { margin-bottom: 16px; }
.tikpro-product-line {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px; background: #f8fafc; border-radius: var(--radius-sm); border: 1px solid var(--border);
  margin-bottom: 20px;
}
.tikpro-product-line strong { display: block; font-size: 1rem; color: var(--text-dark); }
.tikpro-product-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.tikpro-product-price { font-size: 1.25rem; font-weight: 800; color: var(--brand); }
.tikpro-form-title { font-size: 0.9rem; font-weight: 700; color: var(--text-mid); margin: 16px 0 10px; }
.tikpro-form { display: flex; flex-direction: column; gap: 0; }
.tikpro-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 4px; margin-top: 10px; }
.tikpro-label:first-of-type { margin-top: 0; }
.tikpro-input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.95rem; background: #fff; color: var(--text-dark);
}
.tikpro-input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,41,78,.12); }
.payment-methods__label { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); margin: 20px 0 10px; }
.payment-methods__options { display: flex; gap: 8px; margin-bottom: 12px; }
.payment-method-btn {
  flex: 1; padding: 12px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: #fafafa; font-weight: 600; font-size: 0.9rem; color: var(--text-mid);
}
.payment-method-btn--active {
  border-color: var(--brand); background: #fff; color: var(--brand);
}
.payment-pane { margin-top: 4px; }
.pix-instructions { font-size: 0.88rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 8px; }
.tikpro-pix-cta { font-size: 0.95rem; }
.tikpro-hint { font-size: 0.78rem; color: var(--text-muted); }
.pagou-card-wrap { margin: 8px 0 16px; }
.pagou-card-element {
  min-height: 48px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px; background: #fafafa;
}
.btn-primary {
  display: block; width: 100%; padding: 14px; border-radius: var(--radius-sm);
  background: var(--brand); color: #fff; font-size: 0.95rem; font-weight: 800;
  border: none; text-align: center; transition: background .2s, transform .1s;
}
.btn-primary:hover:not(:disabled) { background: var(--brand-dark); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.tikpro-card-submit { margin-top: 4px; }
.btn-outline {
  display: block; width: 100%; padding: 12px; border-radius: var(--radius-sm);
  background: #fff; color: var(--text-mid); font-weight: 600; font-size: 0.9rem;
  border: 1px solid var(--border);
}
.btn-outline:hover { background: #f8fafc; }
.payment-alert { margin-top: 12px; padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.88rem; }
.payment-alert--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.payment-alert--ok { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.tikpro-success-card { text-align: center; }
.tikpro-back-link { font-size: 0.88rem; font-weight: 600; color: var(--brand); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 0; }
  .hero-title { font-size: 2rem; }
}

/* =============================================
   REGISTER / LOGIN PAGE
   ============================================= */
.register-page {
  background: #f0f2f5; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
}
.register-wrapper { width: 100%; max-width: 440px; }
.register-card {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 36px 28px;
}
.register-card.hidden { display: none !important; }
.register-logo { display: flex; justify-content: center; margin-bottom: 20px; }
.tiktok-icon.large {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  display: flex; align-items: center; justify-content: center;
}
.register-title { font-size: 1.5rem; font-weight: 900; text-align: center; margin-bottom: 6px; }
.register-sub { font-size: .9rem; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-input {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-size: .95rem; font-family: var(--font); color: var(--text-dark);
  background: #fafafa; transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(232,41,78,.1); background: #fff; }
.form-input::placeholder { color: #9ca3af; }
.form-divider-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--text-muted); margin: 8px 0 16px; }
.form-error { font-size: .82rem; color: var(--brand); min-height: 18px; margin-bottom: 4px; font-weight: 500; }
.btn-register {
  width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-size: 1rem; font-weight: 800;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(232,41,78,.35);
  transition: transform .2s, box-shadow .2s; margin-top: 8px;
}
.btn-register:hover { transform: translateY(-2px); }
.btn-register:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.register-login-link { text-align: center; font-size: .88rem; color: var(--text-muted); margin-top: 20px; }
.register-login-link a { color: var(--brand); font-weight: 700; }

/* =============================================
   DASHBOARD REDESIGN
   ============================================= */
.dashboard-page { background: #f7f8fa; min-height: 100vh; }
.dash-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: #fff; border-bottom: 1px solid var(--border);
}
.dash-greeting { display: flex; flex-direction: column; }
.greeting-ola  { font-size: .82rem; color: var(--text-muted); }
.greeting-name { font-size: 1.1rem; font-weight: 900; color: var(--text-dark); }

.saldo-card-wrap { padding: 12px 16px; }
.saldo-card {
  background: linear-gradient(135deg, var(--brand) 0%, #c01f3c 100%);
  border-radius: var(--radius-md); padding: 18px 20px;
  box-shadow: 0 6px 20px rgba(232,41,78,.3);
}
.saldo-label { display: block; font-size: .78rem; color: rgba(255,255,255,.8); margin-bottom: 4px; }
.saldo-value { font-size: 2rem; font-weight: 900; color: #fff; }
.saldo-pix-key { font-size: .78rem; color: rgba(255,255,255,.75); margin-top: 6px; }

.progress-section { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px 4px; }
.progress-title { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.progress-count { font-size: .82rem; color: var(--brand); font-weight: 700; }
.progress-track-wrap { padding: 0 16px 12px; }
.progress-track { height: 4px; background: var(--border); border-radius: 4px; }
.progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--brand), #ff4f6d); transition: width .6s ease; }

.creators-header { padding: 12px 16px 4px; }
.creators-title { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.creators-sub { font-size: .85rem; color: var(--text-muted); }
.creators-sub strong { color: var(--brand); }

.creators-list { display: flex; flex-direction: column; padding: 0 0 120px; }
.creator-item { background: #fff; border-bottom: 8px solid #f0f2f5; padding: 16px; transition: background .2s; }
.creator-item.creator-done { opacity: .7; }
.creator-item.creator-flash { background: #f0fdf4; }
.ci-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.ci-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.ci-avatar-fallback {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-info { flex: 1; }
.ci-name { font-size: .95rem; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }
.ci-verified { flex-shrink: 0; }
.ci-handle { font-size: .78rem; color: var(--brand); margin-top: 1px; }
.ci-bio { font-size: .8rem; color: var(--text-muted); margin-top: 4px; line-height: 1.4; }
.ci-stats { display: flex; gap: 20px; margin-bottom: 12px; border-top: 1px solid var(--border); padding-top: 10px; }
.ci-stat { display: flex; flex-direction: column; }
.ci-stat-val { font-size: .88rem; font-weight: 800; color: var(--text-dark); }
.ci-stat-lbl { font-size: .7rem; color: var(--text-muted); }
.btn-seguir {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-size: .92rem; font-weight: 800;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(232,41,78,.3); transition: all .2s;
}
.btn-seguir:hover { transform: translateY(-1px); }
.btn-seguir-done { background: #f3f4f6 !important; color: #6b7280 !important; box-shadow: none !important; border: 1.5px solid var(--border); cursor: default; }

.sticky-withdraw-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: #fff; border-top: 1px solid var(--border);
  padding: 12px 16px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.btn-big-withdraw {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-weight: 800; font-size: 1rem;
  border-radius: var(--radius-md); box-shadow: 0 4px 16px rgba(232,41,78,.35); transition: all .2s;
}
.btn-big-withdraw:disabled { background: #d1d5db; color: #9ca3af; box-shadow: none; cursor: not-allowed; }
.btn-big-withdraw:not(:disabled):hover { transform: translateY(-1px); }
.sticky-bar-hint { text-align: center; font-size: .75rem; color: var(--text-muted); margin-top: 6px; }

.modal-bg {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
}
.modal-bg.hidden { display: none !important; }
.modal-sheet {
  background: #fff; width: 100%; max-width: 500px;
  border-radius: 24px 24px 0 0; padding: 28px 20px 40px;
  animation: slideUp .35s ease; max-height: 90vh; overflow-y: auto;
}
.modal-emoji { font-size: 2.5rem; text-align: center; margin-bottom: 10px; }
.modal-title  { font-size: 1.3rem; font-weight: 900; text-align: center; margin-bottom: 4px; }
.modal-sub    { font-size: .85rem; color: var(--text-muted); text-align: center; margin-bottom: 22px; line-height: 1.5; }
.modal-steps  { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.modal-step-row { display: flex; align-items: flex-start; gap: 12px; }
.modal-step-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.modal-step-row strong { font-size: .9rem; font-weight: 700; display: block; margin-bottom: 2px; }
.modal-step-row p { font-size: .8rem; color: var(--text-muted); line-height: 1.4; margin: 0; }
.modal-scroll-hint { text-align: center; font-size: .73rem; font-weight: 700; color: var(--brand); letter-spacing: .06em; margin-bottom: 18px; }
.modal-chevrons { display: flex; justify-content: center; gap: 3px; font-size: 1.1rem; color: var(--brand); transform: rotate(90deg); margin-top: 4px; }
.modal-chevrons span { animation: bounce 1.2s ease infinite; }
.modal-chevrons span:nth-child(2) { animation-delay: .15s; }
.modal-chevrons span:nth-child(3) { animation-delay: .3s; }
.btn-modal-ok {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-size: .98rem; font-weight: 800;
  border-radius: var(--radius-lg); box-shadow: 0 5px 18px rgba(232,41,78,.35); transition: transform .2s;
}
.btn-modal-ok:hover { transform: translateY(-2px); }

/* =============================================
   SACAR PAGE
   ============================================= */
.sacar-page { background: #f7f8fa; min-height: 100vh; }
.toast-bar {
  position: fixed; top: -60px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  padding: 10px 20px; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; z-index: 300;
  white-space: nowrap; box-shadow: var(--shadow-md);
  transition: top .4s cubic-bezier(.4,0,.2,1); max-width: 90vw;
}
.toast-bar.toast-visible { top: 16px; }
.toast-check { font-size: 1rem; }
.sacar-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: #fff; border-bottom: 1px solid var(--border); }
.sacar-header-brand { display: flex; align-items: center; gap: 6px; font-weight: 800; }
.sacar-badge-wrap { display: flex; justify-content: center; padding: 20px 16px 0; }
.sacar-badge {
  background: linear-gradient(135deg, #00b4d8, #00c4cc);
  color: #fff; font-size: .82rem; font-weight: 700;
  padding: 8px 20px; border-radius: 50px; box-shadow: 0 3px 12px rgba(0,196,204,.3);
}
.sacar-title-wrap { text-align: center; padding: 16px 20px 8px; }
.sacar-title { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); }
.sacar-sub { font-size: .88rem; color: var(--text-muted); margin-top: 4px; }
.sacar-dados-section { background: #fff; margin: 12px 16px; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.sacar-dados-label { font-size: .7rem; font-weight: 700; letter-spacing: .06em; color: var(--text-muted); padding: 14px 16px 6px; }
.sacar-dados-card { display: flex; align-items: center; gap: 12px; padding: 6px 16px 14px; }
.sacar-avatar-initial { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sacar-user-name { font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.sacar-user-role { font-size: .75rem; color: var(--text-muted); margin-top: 1px; }
.sacar-pix-display { background: #f0fdf4; margin: 0 16px; border-radius: var(--radius-sm); padding: 12px 14px; }
.sacar-pix-label { font-size: .68rem; font-weight: 700; color: var(--brand); letter-spacing: .06em; margin-bottom: 4px; }
.sacar-pix-value-row { display: flex; align-items: center; justify-content: space-between; }
.sacar-pix-value { font-size: .95rem; font-weight: 700; color: var(--text-dark); }
.sacar-pix-check { font-size: 1.1rem; color: #16a34a; }
.sacar-valor-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; }
.sacar-valor-label { font-size: .9rem; color: var(--text-mid); font-weight: 500; }
.sacar-valor-amount { font-size: 1.1rem; font-weight: 900; color: var(--brand); }
.sacar-video-section { padding: 8px 16px; }
.sacar-video-toast { background: var(--brand); color: #fff; padding: 10px 14px; border-radius: 8px 8px 0 0; display: flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 700; }
.sacar-video-wrap { border-radius: 0 0 12px 12px; overflow: hidden; background: #000; position: relative; min-height: 220px; }
.sacar-btn-section { padding: 16px; }
.btn-sacar-pix {
  width: 100%; padding: 17px; background: #d1d5db; color: #9ca3af;
  font-weight: 800; font-size: 1rem; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .3s; cursor: not-allowed;
}
.btn-sacar-pix.btn-sacar-active { background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; cursor: pointer; box-shadow: 0 4px 16px rgba(22,163,74,.4); }
.btn-sacar-pix.btn-sacar-active:hover { transform: translateY(-1px); }
.sacar-btn-hint { text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: 8px; }
.sacar-countdown-display { text-align: center; font-size: 1.4rem; font-weight: 900; color: var(--text-muted); margin-top: 6px; font-variant-numeric: tabular-nums; }

/* =============================================
   VSL PHONE FRAME — centraliza o vídeo no desktop
   ============================================= */
.sacar-video-section { padding: 8px 16px; display: flex; justify-content: center; }
.vsl-phone-frame {
  width: 100%;
  max-width: 400px; /* tamanho de celular no desktop */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.sacar-video-toast {
  background: var(--brand); color: #fff;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 700;
}
.sacar-video-wrap { background: #000; position: relative; min-height: 200px; }

/* Animação do botão ao liberar */
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 16px rgba(22,163,74,.4); }
  50%      { box-shadow: 0 4px 28px rgba(22,163,74,.7); }
}

/* =============================================
   TAXA PAGE
   ============================================= */
.taxa-page { background: #f7f8fa; min-height: 100vh; }
.taxa-wrapper {
  display: flex; justify-content: center;
  padding: 24px 16px 48px;
}
.taxa-card {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  width: 100%; max-width: 420px;
  text-align: center;
}

.taxa-icon-wrap { display: flex; justify-content: center; margin-bottom: 18px; }
.taxa-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(232,41,78,.3);
}

.taxa-title {
  font-size: 1.4rem; font-weight: 900;
  color: var(--text-dark); margin-bottom: 16px;
}
.taxa-desc {
  font-size: .9rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 12px;
  text-align: center;
}
.taxa-desc strong { color: var(--text-dark); }
.taxa-refund-note {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.6; margin-bottom: 24px;
  padding: 12px 16px;
  background: #f0fdf4; border-radius: var(--radius-sm);
  border: 1px solid #bbf7d0;
  text-align: center;
}

.taxa-items {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px; text-align: left;
}
.taxa-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: #f9fafb; border-radius: var(--radius-sm);
  padding: 14px; border: 1px solid var(--border);
}
.taxa-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.taxa-item-text { display: flex; flex-direction: column; gap: 3px; }
.taxa-item-text strong { font-size: .9rem; font-weight: 700; color: var(--text-dark); }
.taxa-item-text span   { font-size: .82rem; color: var(--text-muted); line-height: 1.45; }

.btn-taxa-sacar {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--brand) 0%, #ff4f6d 100%);
  color: #fff; font-size: 1.05rem; font-weight: 800;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px rgba(232,41,78,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-taxa-sacar:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,41,78,.4); }
.btn-taxa-sacar:active { transform: translateY(0); }

.hidden { display: none !important; }

