/*
Theme Name: Hub Industrial GHF
Author: GHF Soluções
Description: Protótipo Industrial com Pico.css e CSS Grid.
Version: 2.0
*/

/* 1. O MOTOR DO GRID */
.grid-catalogo {
    display: grid;
    /* repeat(auto-fit) faz o site ser responsivo sozinho */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* 2. AJUSTE DAS FOTOS */
.card-image img {
    width: 100%;
    height: 200px;
    object-fit: contain; /* Não estica a foto do produto */
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* 3. ALINHAMENTO DOS CARDS */
article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Faz todos os cards terem a mesma altura no grid */
}


/* style.css - Navbar Industrial */
header.container {
    background: #f8fafc; /* Um cinza muito claro para destacar */
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
    padding: 0 1rem;
    border-radius: 0 0 8px 8px;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}