@charset "utf-8";
.img-redonda {
    width: 66em;
    height: 10em;
    border-radius: 50%;
    object-fit: cover;
}

.img-redondaprod {
    width: 10em;
    height: 10em;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.img-redonda:hover {
    transform: scale(1.05);
    border-color: #9a8820;
}
