/* Estilos específicos para a página da loja */

/* Garantir que o header fique fixo */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #1f1e1f;
}

.store-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(29, 29, 29, 0.8), rgba(29, 29, 29, 0.8)), url(./img/banerr.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px; /* Espaço para o header fixo */
    padding-top: 20px;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 6rem;
    line-height: 1.1;
    max-width: 98%;
    margin: 0 auto 1rem;
    font-family: 'Indie Flower', cursive;
    color: #f31212;
}

.hero-content h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Indie Flower', cursive;
    color: #ffffff;
}

.hero-btn {
    margin-top: 2rem;
    padding: 1.5rem 4rem;
    background: #f31212;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Indie Flower', cursive;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(243, 18, 18, 0.3);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    min-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn:hover {
    background: #d10a0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 18, 18, 0.4);
}

.hero-btn i {
    font-size: 2rem;
}

.products-section {
    padding: 4rem 0;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-section h2 {
    text-align: center;
    font-size: 4rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Indie Flower', cursive;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 1rem 2rem;
    border: 2px solid #f31212;
    background: transparent;
    color: #f31212;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Indie Flower', cursive;
}

.filter-btn:hover,
.filter-btn.active {
    background: #f31212;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 2rem;
}

.product-category {
    color: #f31212;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Indie Flower', cursive;
}

.product-price {
    font-size: 2.4rem;
    color: #f31212;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.product-description {
    color: #666;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.order-btn {
    width: 100%;
    padding: 1.2rem;
    background: #f31212;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.order-btn:hover {
    background: #d10a0a;
}

/* Seção de Localização */
.localizacao {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.localizacao h2 {
    text-align: center;
    font-size: 4rem;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'Indie Flower', cursive;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

.endereco-info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.endereco-info h3 {
    font-size: 2.5rem;
    color: #f31212;
    margin-bottom: 1rem;
    font-family: 'Indie Flower', cursive;
}

.endereco-info p {
    font-size: 1.8rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.endereco-info i {
    color: #f31212;
    font-size: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    /* Garantir que o header fique fixo em mobile */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .store-hero {
        margin-top: 70px;
        padding-top: 10px;
    }
    
    .hero-content h1 {
        font-size: 4.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.6rem;
        margin-top: 1.5rem;
    }
    
    .hero-btn i {
        font-size: 1.8rem;
    }
    
    .products-section h2 {
        font-size: 3rem;
    }
    
    .localizacao h2 {
        font-size: 3rem;
    }
    
    .endereco-info h3 {
        font-size: 2rem;
    }
    
    .endereco-info p {
        font-size: 1.5rem;
    }
    
    .filters {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1.3rem;
        min-width: auto;
        flex: 0 1 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Garantir que o header fique fixo em mobile pequeno */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .store-hero {
        margin-top: 70px;
        padding-top: 5px;
    }
    
    .hero-content h1 {
        font-size: 5rem !important;
    }
    
    .hero-content h2 {
        font-size: 3rem !important;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1.4rem;
        margin-top: 1rem;
        min-width: 200px;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-btn i {
        font-size: 1.6rem;
    }
    
    .products-section h2 {
        font-size: 2.5rem;
    }
    
    .filters {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 1.1rem;
        width: auto;
        min-width: auto;
        flex: 0 1 auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .filters {
        gap: 0.3rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }
} 