 /* Estilos básicos para o layout */
 @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

 .container-cat{
    width: 100%;
    height: fit-content;
    align-items: center;
    justify-items: center;
    margin: 0;
    padding: 0;
    border-bottom: black solid 1px;
    font-family: 'Oswald', sans-serif;
}
.container-cat p {
    width: 100%;
    margin: 0;
    padding: 10px;
    text-align: center;
    font-family:'Oswald', sans-serif;
    font-size: 20px;
    font-weight: bold;
    background-color: #d9dee4;
    color:#1a1713
}
.elements{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    text-align: left;
}
.cat{
    padding: 5px;
    text-decoration: none;
    color: black;
    margin: 5px;
    transition: background-color 1s, border-radius 1s;
}
.cat:hover{
    background-color: #9ba39f;
    color: white;
    border: #7f857f solid 1px;
    border-radius: 8px;
}

/*inicia os produto*/

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    margin: 20px auto;
    justify-content: center;
    align-items: center;
}

.product-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}
.product-card:hover {
    transform: scale(1.05);
}
.product-card img {
    max-width: 100%;
    height: 150px; /* Define a altura fixa para as imagens */
    object-fit: cover; /* Garante que a imagem se ajuste ao tamanho definido */
    border-radius: 8px;
    transition: transform 0.3s;
}
.product-card img:hover {
    transform: scale(1.1);
}
.product-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.product-card p {
    font-size: 16px;
    color: #28a745;
    font-weight: bold;
    margin: 0;
}
a {
    text-decoration: none;
    color: #333;
}