/* libro de RECLAMACIONES*/

.libro-reclamaciones {
    width: 160px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    border-radius: 6px;
}

.libro-reclamaciones:hover {
    transform: scale(1.08);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
