/* Seção de Produtos */
.secao-produtos {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.secao-produtos h1 {
    color: #003e85;
    font-size: 32px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.grade-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

.card-produto {
    background-color: #F5F5F5;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-produto img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.card-produto h3 {
    font-size: 18px;
    color: #003e85;
    margin: 10px 0;
    font-weight: bold;
}

.card-produto a {
    color: #003e85;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #003e85;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.card-produto a:hover {
    background-color: #003e85;
    color: #FFFFFF;
    text-decoration: none;
}