/* ========================================
   SURF PREMIADO — Design System
   Tema: Dark + Vermelho
======================================== */

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

:root {
    --bg:          #0d0d0d;
    --bg-card:     #131313;
    --bg-elevated: #1a1a1a;
    --border:      #222;
    --border-light:#2c2c2c;
    --accent:      #22c55e;
    --accent-h:    #4ade80;
    --accent-dim:  rgba(34, 197, 94, 0.12);
    --accent-glow: rgba(34, 197, 94, 0.22);
    --text:        #f0f0f0;
    --text-muted:  #777;
    --text-dim:    #444;
    --radius:      13px;
    --radius-sm:   9px;
    --radius-lg:   18px;
    --shadow:      0 8px 32px rgba(0,0,0,0.5);
    --shadow-sm:   0 2px 12px rgba(0,0,0,0.35);
}

html, body {
    background: var(--bg) !important;
    color: var(--text) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ========================================
   NAVBAR
======================================== */
.sp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    height: 62px;
}

.sp-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sp-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.3px;
    color: var(--text);
    white-space: nowrap;
}

.sp-nav-brand img { border-radius: 6px; }

.sp-nav-brand span em {
    color: var(--accent);
    font-style: normal;
}

.sp-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.sp-nav-desktop-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sp-nav-link {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
    font-weight: 500;
    display: block;
}

.sp-nav-link:hover, .sp-nav-link.active {
    color: var(--text);
    background: rgba(255,255,255,0.06);
}

.sp-nav-btn {
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.sp-nav-btn:hover {
    background: var(--accent-h);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.sp-nav-toggle {
    display: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text);
    font-size: 20px;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
}

.sp-nav-toggle-visible {
    display: block;
}

/* Dropdown (mobile e painel) — posicionado abaixo da barra fixa */
.sp-nav-dropdown {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 10px 16px 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    gap: 2px;
}

.sp-nav-dropdown.open { display: flex; }

.sp-page-body {
    padding-top: 62px;
    min-height: 100vh;
    background: var(--bg);
}

/* ========================================
   FORMULÁRIOS & INPUTS
======================================== */
.sp-field {
    margin-bottom: 18px;
}

.sp-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.sp-field input,
.sp-field select,
.large-input-field,
.w-input,
input[type="text"],
input[type="number"],
input[type="password"],
input[type="email"],
input[type="e-mail"],
input[type="tel"] {
    width: 100% !important;
    background: var(--bg-elevated) !important;
    border: 1.5px solid var(--border-light) !important;
    border-radius: var(--radius) !important;
    padding: 13px 16px !important;
    font-size: 15px !important;
    color: var(--text) !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.sp-field input:focus,
.sp-field select:focus,
.large-input-field:focus,
.w-input:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="e-mail"]:focus,
input[type="tel"]:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

input::placeholder,
.large-input-field::placeholder,
.w-input::placeholder {
    color: var(--text-dim) !important;
}

.sp-input-group {
    position: relative;
}

.sp-input-group input {
    padding-right: 46px !important;
}

.sp-toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.sp-toggle-pw:hover { opacity: 1; }

/* ========================================
   BOTÕES
======================================== */
.sp-btn-primary,
.primary-button {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s !important;
    letter-spacing: 0.02em;
    display: block;
    text-align: center;
}

.sp-btn-primary:hover,
.primary-button:hover {
    background: var(--accent-h) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow) !important;
}

.sp-btn-outline {
    padding: 10px 20px;
    background: transparent;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.sp-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.sp-quick-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sp-quick-btns button {
    flex: 1;
    min-width: 70px;
    padding: 10px;
    background: var(--bg-elevated);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sp-quick-btns button:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

/* ========================================
   AUTH PAGES (login / cadastrar)
======================================== */
.sp-auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(ellipse at 50% 0%, #1f0d0d 0%, #0f0f0f 65%);
}

.sp-auth-card {
    width: 100%;
    max-width: 420px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(34,197,94,0.12);
}

.sp-auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    text-align: center;
}

.sp-auth-logo img { border-radius: 10px; }

.sp-auth-logo h1 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sp-auth-logo h1 em {
    color: var(--accent);
    font-style: normal;
}

.sp-auth-logo p {
    font-size: 14px;
    color: var(--text-muted);
}

.sp-auth-bottom {
    margin-top: 24px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.sp-auth-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.sp-auth-bottom a:hover { color: var(--accent-h); }

.sp-divider {
    height: 1px;
    background: var(--border);
    margin: 24px 0;
}

/* ========================================
   ALERTAS
======================================== */
.sp-alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}

.sp-alert-error {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #ff6b6b;
}

.sp-alert-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #69d46e;
}

/* ========================================
   CONTENT PAGES (deposito / saque)
======================================== */
.sp-content {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.sp-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.sp-card-header {
    margin-bottom: 28px;
    text-align: center;
}

.sp-card-header h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.sp-card-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

.sp-saldo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent-h);
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    width: fit-content;
}

/* ========================================
   FOOTER
======================================== */
.sp-footer {
    text-align: center;
    padding: 32px 20px;
    font-size: 12px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
    background: var(--bg);
    margin-top: auto;
}

.sp-footer a { color: var(--text-dim); }
.sp-footer a:hover { color: var(--accent); }

/* ========================================
   MOBILE
======================================== */
@media (max-width: 640px) {
    .sp-nav-desktop-links { display: none; }
    .sp-nav-toggle { display: block; }
    .sp-auth-card { padding: 28px 20px; }
    .sp-card { padding: 24px 18px; }
    .sp-game-card { margin: 20px 16px 0; padding: 26px 20px; }
}

/* ========================================
   NAVBAR — 3 colunas (painel com saldo)
======================================== */
.sp-nav-inner.sp-nav-3col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.sp-nav-saldo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.sp-nav-saldo-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.sp-nav-saldo-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
}

.sp-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

/* ========================================
   GAME PAGE — card do jogo
======================================== */
:root {
    --game-blue:     #1e6feb;
    --game-blue-h:   #3b82f6;
    --game-blue-dim: rgba(30, 111, 235, 0.15);
    --game-blue-glow:rgba(30, 111, 235, 0.35);
}

/* ========================================
   BONUS TIERS (deposito page)
======================================== */
.sp-bonus-section {
    margin-bottom: 28px;
}
.sp-bonus-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sp-bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 540px) { .sp-bonus-grid { grid-template-columns: repeat(4, 1fr); } }

.sp-bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, transform .15s;
    position: relative;
}
.sp-bonus-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.sp-bonus-card.sp-bonus-best {
    border-color: #f59e0b;
    background: linear-gradient(145deg, rgba(245,158,11,0.08), var(--bg-card));
}
.sp-bonus-card.sp-bonus-best::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #000;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 2px 8px;
    border-radius: 99px;
    white-space: nowrap;
}
.sp-bonus-deposit {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.sp-bonus-pct {
    font-size: 26px;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 4px;
}
.sp-bonus-card.sp-bonus-best .sp-bonus-pct { color: #f59e0b; }
.sp-bonus-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.sp-bonus-rollover {
    font-size: 12px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(34,197,94,0.08);
    border-radius: 6px;
    padding: 3px 6px;
}

/* ========================================
   ROLLOVER CARD (saque page)
======================================== */
.sp-rollover-card {
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid;
}
.sp-rollover-locked {
    background: rgba(239,68,68,0.06);
    border-color: rgba(239,68,68,0.25);
}
.sp-rollover-done {
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.25);
}
.sp-rollover-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.sp-rollover-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.sp-rw-bar-bg {
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.sp-rw-bar-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    transition: width .4s;
}
.sp-rollover-done .sp-rw-bar-fill {
    background: linear-gradient(90deg, #16a34a, #22c55e);
}
.sp-rw-nums {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* ========================================
   GAME PAGE
======================================== */
.sp-game-wrap {
    min-height: 100vh;
    padding-top: 62px;
    background: #0e0e18;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* -- Card principal -- */
.sp-game-card {
    width: 100%;
    max-width: 390px;
    margin: 24px auto 40px;
    background: linear-gradient(160deg, #111122 0%, #0d0d1a 100%);
    border: 1.5px solid rgba(30,111,235,0.35);
    border-radius: 24px;
    padding: 28px 24px 24px;
    box-shadow: 0 0 60px rgba(30,111,235,0.1), 0 20px 60px rgba(0,0,0,0.6);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sp-game-card::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(30,111,235,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* -- Badge ao vivo -- */
.sp-live-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 700;
}
.sp-live-dot {
    width: 7px; height: 7px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 6px #ef4444;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.4); }
}
.sp-live-text { color: #ef4444; letter-spacing: .08em; }
.sp-live-sep  { color: #374151; }
.sp-live-online { color: #9ca3af; font-weight: 600; }

/* -- Troféu animado -- */
.sp-trophy-wrap {
    position: relative;
    width: 90px; height: 90px;
    margin: 0 auto 16px;
}
.sp-trophy-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,204,21,0.18) 0%, transparent 70%);
    animation: trophyPulse 2.2s ease-in-out infinite;
}
@keyframes trophyPulse {
    0%, 100% { opacity: .7; transform: scale(1);    }
    50%       { opacity: 1;  transform: scale(1.15); }
}
.sp-game-trophy {
    width: 90px; height: 90px;
    background: linear-gradient(145deg, #1c1c30, #14142a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid rgba(250,204,21,0.2);
    animation: trophyFloat 3s ease-in-out infinite;
    position: relative;
}
@keyframes trophyFloat {
    0%, 100% { transform: translateY(0);   }
    50%       { transform: translateY(-5px); }
}

/* -- Título -- */
.sp-game-title {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}

/* -- Preview de ganho -- */
.sp-win-preview {
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
}
.sp-win-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6b7280;
    margin-bottom: 4px;
}
.sp-win-value {
    font-size: 30px;
    font-weight: 900;
    color: #6b7280;
    line-height: 1;
    margin-bottom: 4px;
    transition: color .2s;
    font-variant-numeric: tabular-nums;
}
.sp-win-mult {
    font-size: 12px;
    color: #4b5563;
    font-weight: 600;
}

/* -- Campo de aposta -- */
.sp-bet-label {
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6b7280;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sp-bet-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px #22c55e;
}
.sp-bet-input {
    width: 100%;
    background: #141428 !important;
    border: 1.5px solid #252545 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-align: center !important;
    margin-bottom: 12px !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color .2s, box-shadow .2s !important;
    box-sizing: border-box !important;
}
.sp-bet-input:focus {
    border-color: var(--game-blue) !important;
    box-shadow: 0 0 0 3px var(--game-blue-dim) !important;
}

/* -- Botões rápidos -- */
.sp-game-quick-btns {
    display: flex;
    gap: 7px;
    margin-bottom: 18px;
}
.sp-game-quick-btns button {
    flex: 1;
    padding: 10px 4px;
    background: #141428;
    border: 1.5px solid #252545;
    border-radius: 10px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    line-height: 1;
}
.sp-game-quick-btns button:hover {
    border-color: var(--game-blue);
    color: #fff;
    background: var(--game-blue-dim);
}
.sp-game-quick-btns button.active {
    border-color: var(--game-blue);
    color: #fff;
    background: rgba(30,111,235,0.22);
    box-shadow: 0 0 12px rgba(30,111,235,0.25);
}

/* -- Botão apostar -- */
.sp-btn-apostar {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, #1e6feb 0%, #2563eb 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .06em;
    cursor: pointer;
    transition: transform .15s, box-shadow .2s;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(30,111,235,0.35); }
    50%       { box-shadow: 0 4px 32px rgba(30,111,235,0.65); }
}
.sp-btn-apostar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30,111,235,0.55) !important;
    animation: none;
}
.sp-btn-apostar:active { transform: scale(.97); }
.sp-btn-icon { font-size: 20px; }

/* -- Regras rápidas -- */
.sp-rules-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.sp-rules-row span {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 600;
    white-space: nowrap;
}

/* -- Treinar link -- */
.sp-btn-treinar {
    display: block;
    padding: 11px;
    background: transparent;
    border: 1.5px solid #1e2040;
    border-radius: 10px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: border-color .2s, color .2s;
}
.sp-btn-treinar:hover {
    border-color: #2d3060;
    color: #6b7280;
}

/* -- Badge online (mantido por compatibilidade) -- */
.sp-online-badge {
    margin: 20px auto 40px;
    background: #ca8a04;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    padding: 10px 28px;
    border-radius: 12px;
    border: 2px solid #92400e;
    box-shadow: 0 3px 0 0 #78350f;
    line-height: 1.5;
    width: fit-content;
    min-width: 160px;
}

/* ========================================
   INDIQUE E GANHE
======================================== */
.sp-ref-hero {
    text-align: center;
    padding: 32px 24px 24px;
}
.sp-ref-icon {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1;
}
.sp-ref-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.sp-ref-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.sp-ref-desc strong { color: var(--text); }
.sp-ref-example {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(34,197,94,0.07);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-muted);
}
.sp-ref-example strong { color: #22c55e; }

.sp-ref-link-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-ref-link-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-muted);
    word-break: break-all;
    line-height: 1.5;
    font-family: monospace;
}
.sp-ref-copy-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s, transform .15s;
    letter-spacing: .02em;
}
.sp-ref-copy-btn:hover { background: #15803d; transform: translateY(-1px); }

.sp-ref-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 4px;
}
.sp-ref-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
}
.sp-ref-stat-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.sp-ref-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.3;
}
.sp-ref-saque-aviso {
    margin-top: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.sp-ref-steps { padding: 28px 24px; }
.sp-ref-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.sp-ref-step:last-child { border-bottom: none; padding-bottom: 0; }
.sp-ref-step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
}
.sp-ref-step-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 5px;
}

/* Sobrescrever estilos antigos do Webflow */
.hero-section, .wf-section { background: var(--bg) !important; background-image: none !important; }
.footer-section { display: none !important; }
.navbar.w-nav { display: none !important; }
.nav-bar { display: none !important; }
#saldoDiv { display: none !important; }
.mint-section { display: none !important; }
.faq-section { display: none !important; }
.intermission { display: none !important; }

/* ========================================
   BÔNUS CARDS ULTRA-SIMPLES (deposito)
======================================== */
.sp-bcard-in {
    font-size: 18px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 4px;
}
.sp-bcard-arrow {
    font-size: 18px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}
.sp-bcard-out {
    font-size: 22px;
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 2px;
}
.sp-bonus-card.sp-bonus-best .sp-bcard-out { color: #f59e0b; }
.sp-bcard-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
}

/* ========================================
   LANDING PAGE (index.php)
======================================== */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.lp-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    color: var(--text);
    letter-spacing: -0.4px;
}
.lp-nav-brand em { color: var(--accent); font-style: normal; }
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-nav-login {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color .2s;
}
.lp-nav-login:hover { color: var(--text); }
.lp-nav-cta {
    padding: 9px 20px;
    background: var(--accent);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: background .2s, transform .15s;
}
.lp-nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); }

.lp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(34,197,94,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: .06em;
    margin-bottom: 24px;
}
.lp-hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}
.lp-hero-title {
    font-size: clamp(36px, 9vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 20px;
}
.lp-hero-title em { color: var(--accent); font-style: normal; }
.lp-hero-sub {
    font-size: clamp(15px, 4vw, 18px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto 36px;
}
.lp-hero-sub strong { color: var(--text); }
.lp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 14px;
    letter-spacing: .02em;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 8px 32px rgba(34,197,94,0.35);
    animation: btnPulse 2.5s ease-in-out infinite;
    margin-bottom: 20px;
}
.lp-hero-cta:hover {
    background: var(--accent-h);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34,197,94,0.5);
}
.lp-hero-cta-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 48px;
}
.lp-online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.lp-online-dot {
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

.lp-steps {
    padding: 60px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.lp-steps-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.lp-steps-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.lp-steps-title {
    font-size: clamp(22px, 5vw, 34px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}
.lp-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 540px) { .lp-steps-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-step {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    position: relative;
}
.lp-step-num {
    width: 40px; height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 14px;
}
.lp-step-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}
.lp-step-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}
.lp-step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.lp-cta-band {
    padding: 64px 24px;
    text-align: center;
}
.lp-cta-band-title {
    font-size: clamp(26px, 6vw, 42px);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -1px;
    margin-bottom: 12px;
}
.lp-cta-band-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.lp-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 2;
}
.lp-footer a { color: var(--text-muted); }
.lp-footer a:hover { color: var(--text); }
