body{
    font-family: Arial, sans-serif;
    margin:0;
    padding:0;
}

.produtos{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}

.produtos h2{
    font-size: 25px;
    margin-bottom: 10px;
}

.produto{
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius:10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: calc(33.33% - 40px);
}

.produto img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.produto h2{
    font-size: 18px;
    margin-bottom: 10px;
}

.produto p{
    font-size: 14px;
    margin-bottom: 20px;
}

.preco{
    font-size: 18px;
    font-weight:bold;
    color:#00698f;
}

.comprar{
    background-color:#006400;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.comprar:hover{
    background-color: green;
}