/* ===== VARIÁVEIS (mesmas do portal) ===== */
:root {
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #22223b;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0c0;
    --accent: #5865f2;
    --accent-hover: #4752c4;
    --live: #e1306c;
    --success: #4caf50;
    --border-radius: 1.2rem;
    --transition: all 0.3s ease;
}

/* ===== RESET GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Inter', system-ui, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== HEADER (igual ao portal) ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #5865f2, #e1306c);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.logo-nome {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #b0b0c0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-lista {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent);
}

/* ===== SEÇÃO PRINCIPAL ===== */
.secao {
    padding: 3rem 0;
}

.secao-titulo {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.secao-sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===== GRADE DE PRODUTOS ===== */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.produto-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.produto-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(88,101,242,0.3);
}

.produto-imagem {
    width: 100%;
    height: 160px;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
}

.produto-info {
    padding: 1.2rem;
    flex-grow: 1;
}

.produto-titulo {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.produto-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.produto-preco {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent);
    margin: 0.5rem 0;
}

.produto-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.7rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.produto-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    margin-top: 2rem;
    text-align: center;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.btn-topo {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.7;
    z-index: 99;
}

.btn-topo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    .nav-lista {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .produtos-grid {
        gap: 1rem;
    }
    .secao-titulo {
        font-size: 1.6rem;
    }
}
