/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f4f7f6;
}

.categorias {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 100;
}

.categorias button {
    background: transparent;
    border: 1px solid #fff;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.categorias button:hover {
    background: white;
    color: #2c3e50;
}

.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-produto {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    cursor: pointer;
}

.card-produto:hover {
    transform: translateY(-5px);
}

.card-produto img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.preco {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}