body {
    font-family: sans-serif;
    background: #fef6fc;
    margin: 0;
}
header {
    background: purple;
    color: white;
    padding: 1rem;
    text-align: center;
}
main {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.produto {
    border: 1px solid #ccc;
    background: white;
    padding: 1rem;
    text-align: center;
    width: 220px;
}
.produto img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}
.botao, button {
    background: purple;
    color: white;
    padding: 0.5rem;
    border: none;
    cursor: pointer;
}
form select {
    margin: 0.5rem 0;
}
table {
    width: 100%;
}
