.loja-section {
    background: linear-gradient(135deg, #0a0818, #1a1033);
    padding: 100px 20px;
    color: white;
}

.loja-container {
    max-width: 1200px;
    margin: 0 auto;
}

.loja-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.loja-main-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.loja-main-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, transparent);
}

.loja-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

.loja-tabs {
    display: flex;
    gap: 20px;
}

.tab-title {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding-bottom: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.tab-title:hover {
    color: #fff;
}

.tab-title.active {
    color: #f5a623;
    font-weight: 600;
}

.tab-title.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #f5a623;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.produto-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.produto-image {
    height: 200px;
    overflow: hidden;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.05);
}

.produto-info {
    padding: 20px;
}

.produto-nome {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.produto-descricao {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.produto-preco {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f5a623;
    margin: 20px 0;
}

.produto-botao {
    background: linear-gradient(145deg, #f5a623, #e6951a);
    color: #000;
    border: none;
    padding: 12px 25px;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.produto-botao:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .loja-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .loja-main-title {
        font-size: 2.5rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .loja-main-title {
        font-size: 2rem;
    }
    
    .tab-title {
        font-size: 1.2rem;
    }
}