/* Estilos específicos para a página de produtos (produtos.html) */

/* Header especial para a página de produtos */
.products-header {
    background-image: url('../../img/banner-bg.png');
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.products-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 1;
}

.products-header-content {
    position: relative;
    z-index: 2;
}

.products-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 1rem;
}

/* Filtros de produtos */
.filter-buttons {
    margin-bottom: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
    border: 1px solid rgba(255, 61, 0, 0.1);
    margin: 0 0.3rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    box-shadow: var(--neon-glow);
}

/* Cards de produtos */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 61, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.product-image {
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 25px;
    font-size: 0.8rem;
    z-index: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.product-description {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow);
}

.price-old {
    text-decoration: line-through;
    font-size: 1rem;
    color: #888;
    margin-right: 1rem;
}

/* Lista de características */
.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Botões de produto */
.btn-view-details {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    box-shadow: var(--neon-glow);
}

.btn-add-cart {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--dark-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
    color: var(--dark-color);
}

/* Botão Comprar */
.btn-comprar {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.3);
    width: 100%;
    font-size: 1.1rem;
    margin: 0 auto;
}

.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 61, 0, 0.5);
    color: white;
}

.btn-comprar:active {
    transform: translateY(1px);
}

.btn-comprar i {
    color: white;
    margin-right: 10px;
} 