.info-icon {
    cursor: pointer;
    margin-left: 5px;
    font-size: 14px;
}

/* Fondo del modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.img-modal-content {
    position: relative;
    background: transparent;   
    padding: 0;
    margin: 0;
    width: auto;
    max-width: none;
}


.img-modal-content img {
    display: block;            
    max-width: 90vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;       
    border-radius: 6px;
}

.img-click {
    max-width: 200px;
    margin: 0 10px;
    cursor: pointer;
    animation: bounce 1.5s infinite;
}

.img-click:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Botón cerrar */
.close {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #000;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
}