/* ARQUIVO: public/css/style_Loja.css */
/* Página Loja & Box - CAAC Arena Cataratas */

/* ============================================ */
/* FUNDO DINÂMICO */
/* ============================================ */

.loja-body {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85)), 
                url('/public/img/fundo.jpg');
    background-size: cover;
    background-position: 50% center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

body.loja-body.bg-street-focus {
    background-position: 15% center !important;
}

body.loja-body.bg-offroad-focus {
    background-position: 85% center !important;
}

/* ============================================ */
/* CONTAINER E UTILITÁRIOS */
/* ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 69, 0, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color, #ff4500);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-tag.muted {
    background: rgba(255,255,255,0.05);
    color: #666;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.section-header h2 span {
    color: var(--primary-color, #ff4500);
}

.section-header p {
    color: #aaa;
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.loja-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
}

.loja-hero-content {
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--primary-color, #ff4500);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color, #ff4500);
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-title-accent {
    background: linear-gradient(135deg, #ffaa00, var(--primary-color, #ff4500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

/* ============================================ */
/* CATEGORIAS */
/* ============================================ */

.categorias-container {
    padding: 20px 0 40px;
}

.categorias-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.categoria-btn {
    padding: 12px 25px;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid #444;
    border-radius: 40px;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.categoria-btn i {
    margin-right: 8px;
}

.categoria-btn:hover {
    border-color: var(--primary-color, #ff4500);
    color: var(--primary-color, #ff4500);
}

.categoria-btn.active {
    background: var(--primary-color, #ff4500);
    border-color: var(--primary-color, #ff4500);
    color: #fff;
}

/* ============================================ */
/* PRODUTOS GRID */
/* ============================================ */

.produtos-section {
    padding: 0 0 60px;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.produto-card {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.produto-imagem {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.produto-card:hover .produto-imagem img {
    transform: scale(1.05);
}

.produto-destaque {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffc107;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.produto-info {
    padding: 20px;
}

.produto-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
}

.produto-info p {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 12px;
    line-height: 1.4;
}

.produto-preco {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color, #ff4500);
    margin-bottom: 15px;
}

.btn-comprar {
    width: 100%;
    padding: 12px;
    background: var(--primary-color, #ff4500);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-comprar:hover {
    background: #e03e00;
}

/* ============================================ */
/* SERVIÇOS BOX */
/* ============================================ */

.box-servicos {
    padding: 60px 0;
    background: rgba(0,0,0,0.3);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.servico-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: 0.2s;
}

.servico-card:hover {
    transform: translateY(-3px);
    background: rgba(30, 30, 30, 0.8);
}

.servico-card i {
    font-size: 2rem;
    color: var(--primary-color, #ff4500);
    margin-bottom: 15px;
}

.servico-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #fff;
}

.servico-card p {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 12px;
}

.servico-preco {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,69,0,0.15);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color, #ff4500);
}

/* ============================================ */
/* ALUGUEL DE BOX */
/* ============================================ */

.box-aluguel {
    padding: 60px 0;
}

.aluguel-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,69,0,0.3);
}

.aluguel-info {
    padding: 40px;
}

.aluguel-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.aluguel-info h3 i {
    color: var(--primary-color, #ff4500);
    margin-right: 10px;
}

.aluguel-info > p {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.aluguel-planos {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.plano {
    background: rgba(0,0,0,0.3);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
}

.plano-tipo {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 5px;
}

.plano-preco {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.btn-alugar {
    padding: 12px 25px;
    background: var(--primary-color, #ff4500);
    border: none;
    border-radius: 40px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-alugar:hover {
    background: #e03e00;
}

.aluguel-beneficios {
    background: rgba(0,0,0,0.3);
    padding: 40px;
}

.aluguel-beneficios h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.aluguel-beneficios ul {
    list-style: none;
}

.aluguel-beneficios li {
    padding: 8px 0;
    color: #ccc;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aluguel-beneficios li i {
    color: #28a745;
    width: 20px;
}

/* ============================================ */
/* LOCALIZAÇÃO */
/* ============================================ */

.localizacao {
    padding: 60px 0 80px;
}

.localizacao-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
}

.localizacao-info {
    padding: 40px;
    text-align: center;
}

.localizacao-info i {
    font-size: 2rem;
    color: var(--primary-color, #ff4500);
    margin-bottom: 15px;
}

.localizacao-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.localizacao-info p {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.mapa-placeholder {
    height: 100%;
    min-height: 250px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.mapa-placeholder:hover {
    background: #222;
}

.mapa-placeholder i {
    font-size: 3rem;
    color: #444;
}

.mapa-placeholder span {
    color: #888;
    font-size: 0.8rem;
}

/* ============================================ */
/* RESPONSIVO */
/* ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .aluguel-card {
        grid-template-columns: 1fr;
    }
    
    .localizacao-card {
        grid-template-columns: 1fr;
    }
    
    .aluguel-planos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .categoria-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    
    .plano {
        width: 100%;
    }
}