.grilla-padre{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}
.grilla {
    padding: 10px;
}
.grilla img {
    max-width: 100%;
    height: auto;
}
.texto-producto {
    margin-top: 10px;
}
.botones{
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: center;
}
.botones button {
    border: none;
    background-color: white;
    padding: 5px 20px;
    cursor: pointer;
}