/* ============================================
   MELHORIAS NA PÁGINA DA LOJA
   ============================================ */

/* Header da Loja */
#loja-fundo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-bottom: 2px solid rgba(245, 166, 35, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#loja-fundo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#loja-fundo h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    position: relative;
    z-index: 1;
}

#loja-fundo h1 span {
    color: #ffffff;
}

#loja-fundo h5 {
    font-size: 1.1rem;
    color: #d1d1d1;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Sidebar - Navegação */
#sidebar-fundo.card {
    background: #151515;
    border: 1px solid rgba(245, 166, 35, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

#sidebar-fundo.card:hover {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 8px 35px rgba(245, 166, 35, 0.15);
    transform: translateY(-2px);
}

.sidebar-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.05) 100%);
    border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.sidebar-header span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navegação Sidebar */
#sidebar-color {
    list-style: none;
    padding: 0;
    margin: 0;
}

#sidebar-color li {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

#sidebar-color li:first-child {
    border-top: none;
}

#sidebar-color li:hover {
    background: rgba(245, 166, 35, 0.05);
}

#sidebar-color li a {
    color: #e5e5e5 !important;
    font-size: 1rem;
    font-weight: 600;
    height: 60px;
    line-height: 60px;
    text-decoration: none !important;
    display: block;
    transition: all 0.2s ease;
    text-transform: capitalize;
    padding: 0 1.5rem;
}

#sidebar-color li a:hover {
    color: #f5a623 !important;
    background: rgba(245, 166, 35, 0.1);
    padding-left: 2rem;
}

/* Card de Informações da Loja */
.loja-info {
    background: #151515;
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.homepage-title {
    margin-bottom: 2rem;
}

.homepage-title .small {
    display: block;
    font-size: 0.9rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.homepage-title .big {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #f5a623;
    text-shadow: 0 3px 15px rgba(245, 166, 35, 0.4);
    letter-spacing: 1px;
}

.homepage-title .big b {
    color: #ffffff;
}

.loja-text {
    margin-top: 2rem;
}

#text-loja {
    color: #d1d1d1;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Botões de Suporte */
.botoes-link {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.botoes-link a {
    flex: 1;
    min-width: 150px;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%) !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.botoes-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.botoes-link a:hover::before {
    left: 100%;
}

.botoes-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.4);
    color: #1a1a1a !important;
}

/* Compras Recentes */
.compras-recent {
    margin-top: 1.5rem;
}

.recent-buy {
    padding: 1.5rem;
}

.recent-title {
    font-weight: 900;
    color: #f5a623;
    letter-spacing: 2px;
    text-align: center;
    font-size: 0.9rem;
    display: block;
    padding: 1rem 0;
    line-height: 1.4;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(245, 166, 35, 0.2);
    margin-bottom: 1.5rem;
}

.recent-heads {
    padding: 0.5rem 0;
}

.heads-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.heads-row .head {
    flex: 0 0 auto;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.heads-row .head img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 2px solid rgba(245, 166, 35, 0.2);
    transition: all 0.3s ease;
}

.heads-row .head:hover {
    transform: translateY(-5px) scale(1.1);
}

.heads-row .head:hover img {
    border-color: #f5a623;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Meta Mensal */
.card-meta#sidebar-fundo {
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.meta-text {
    color: #f5a623 !important;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.goal-progress {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.2);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.goal-progress .progress-bar {
    background: linear-gradient(90deg, #f5a623, #ffd93d, #f5a623);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Produtos */
#produtos .card {
    background: #151515;
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

#produtos .card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 10px 35px rgba(245, 166, 35, 0.2);
}

/* Seção Top */
section#top {
    padding: 2rem 0;
    background: #0a0a0a;
}

/* Homepage Header */
.homepage-header {
    padding: 0;
    margin-bottom: 2rem;
}

/* Produto Mais Vendido */
.homepage-package {
    background: rgba(245, 166, 35, 0.05);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.homepage-package:hover {
    background: rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.4);
    transform: translateY(-3px);
}

/* Melhorias Gerais */
.loja-info {
    position: relative;
}

.loja-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.6), rgba(245, 166, 35, 0.3), rgba(245, 166, 35, 0.6));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loja-info:hover::before {
    opacity: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    #loja-fundo {
        padding: 2rem 1rem;
    }
    
    #loja-fundo h1 {
        font-size: 2rem;
    }
    
    .botoes-link {
        flex-direction: column;
    }
    
    .botoes-link a {
        width: 100%;
    }
    
    .heads-row .head img {
        width: 45px;
        height: 45px;
    }
    
    .homepage-title .big {
        font-size: 1.5rem;
    }
    
    .loja-info {
        padding: 1.5rem;
    }
}
