/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --bg-body: #0f172a;
    --card-bg: #1e293b;
    --accent-blue: #3b82f6;
    --accent-green: #22c55e;
    --accent-yellow: #eab308;
    --accent-red: #ef4444;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --neon-green: #00ff00; 
}

/* ================= PÁGINA DE VENDAS (ESTILO PLAYGAMES) ================= */
.vendas-body {
    background-color: #0b0e14;
    color: white;
    padding: 15px;
}

/* Estilo do Círculo de Ícone (Igual à foto 47511) */
.icon-circle-main {
    width: 100px;
    height: 100px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.oferta-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #334155;
    border-left: 5px solid var(--neon-green); 
    border-radius: 12px;
    background: rgba(30, 41, 59, 0.5);
}

.beneficio-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #334155; 
}

.check-icon {
    min-width: 25px;
    height: 25px;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 14px;
}

/* Estilo das Perguntas (FAQ) com Check Verde (Igual à foto 47523) */
.faq-row {
    margin-bottom: 20px;
}
.faq-q {
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.faq-a {
    display: flex;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
}
.faq-a i {
    color: var(--neon-green);
    margin-top: 3px;
}

.preco-container {
    text-align: center;
    margin-top: 30px;
}

.preco-antigo {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.preco-novo {
    color: var(--accent-green); /* Mudei para o teu verde padrão para combinar */
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0;
}

.botao-comprar {
    display: block;
    background: var(--accent-green);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: 0.3s;
    animation: pulse-comprar 2s infinite;
}

@keyframes pulse-comprar {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); }
}

/* ================= LOGIN (MANTIDO INTACTO) ================= */
.login-body {
    background: url("../static/bg.jpg") no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.login-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 20px;
    width: 380px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    text-align: center;
}

.login-card h2 { margin-bottom: 25px; color: #1e293b; font-weight: 800; }

.login-card input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.login-card button {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: var(--accent-green);
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* ================= DASHBOARD / ÁREA DE MEMBROS (MANTIDO INTACTO) ================= */
.dashboard-body {
    background-color: var(--bg-body);
    min-height: 100vh;
    color: var(--text-main);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #0b1220;
    border-bottom: 2px solid #334155;
}

.section-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid #334155;
}

.border-blue { border-left: 6px solid var(--accent-blue); }
.border-green { border-left: 6px solid var(--accent-green); }

.serial-container {
    background: #0b1220;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #334155;
}

.serial-code {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px;
    background-color: #25d366; border-radius: 50px; display: flex; 
    align-items: center; justify-content: center; z-index: 1000;
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 768px) {
    .oferta-container { width: 95%; padding: 15px; }
    .preco-novo { font-size: 2.2rem; }
}
