/* =========================================
   ESTILOS EXCLUSIVOS DA PÁGINA DE PRODUTOS
   (Escalado para o "Zoom de 85%")
========================================= */

/* Ajuste do banner estático (Agora com o MESMO tamanho do vídeo mp4 do Início) */
.banner-estatico {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
}

.banner-img {
    width: 100%;
    max-height: 480px; /* Trava na mesma altura exata do vídeo do index */
    height: auto;
    object-fit: cover;
    object-position: center; /* Centraliza a imagem perfeitamente */
    display: block;
}

/* =========================================
   GRID DOS PRODUTOS
========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px; 
    padding: 50px 0 80px 0;
    max-width: 1000px; 
    margin: 0 auto;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
    
    /* MÁGICA AQUI: Puxa o botão para a frente do escudo invisível do rodapé */
    position: relative;
    z-index: 10;
}

/* A foto de cada produto 100% LIMPA (Respeita a transparência do seu PNG) */
.product-image {
    width: 100%;
    height: auto;
    
    /* TUDO ZERADO: A sua imagem já tem o fundo branco, a borda e a sombra nativos! */
    background: transparent; 
    border: none;
    border-radius: 0;
    box-shadow: none; 
    
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.03); /* Dá um zoom de leve ao passar o mouse */
}

/* =========================================
   BOTÕES 3D NEON VERDE (TAMANHO COMPACTO)
========================================= */
.btn-neon {
    background: linear-gradient(180deg, #555555 0%, #222222 100%);
    border: 4px solid #3a3a3a; 
    border-radius: 40px; 
    
    padding: 12px 30px;
    width: 75%; 
    max-width: 260px;
    
    color: #4aff22; 
    font-size: 22px; 
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 0 8px rgba(74, 255, 34, 0.7), 0 0 15px rgba(74, 255, 34, 0.4); 
    
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.2), 0 10px 15px rgba(0,0,0,0.4);
    
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.btn-neon:hover {
    color: #ffffff; 
    text-shadow: 0 0 15px #4aff22, 0 0 30px #4aff22; 
    border-color: #444;
    transform: translateY(-4px); 
    box-shadow: inset 0 3px 6px rgba(255,255,255,0.3), 0 15px 20px rgba(0,0,0,0.5);
}

.btn-neon:active {
    transform: translateY(2px);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5), 0 5px 8px rgba(0,0,0,0.4);
}

/* =========================================
   RESPONSIVIDADE (CELULARES E TABLETS)
========================================= */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr; 
        gap: 60px;
        max-width: 500px; 
    }
    
    .btn-neon {
        font-size: 20px;
        width: 85%;
    }
}