#expandableImage {
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

#expandableImage:hover {
    opacity: 0.7;
}


/* Estilo do modal */
.modalgal {
    display: none;
    position: fixed;
    top: 0;
    left: 0; 
    z-index: 1; 
    width: 100%;
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.842); 
    border: 1px solid red; 
}

.modal-content-gal {
    
    animation-name: zoom;
    animation-duration: 0.6s;
    padding: 0;
}

.modal-content img{
    object-fit: contain;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

/* Botão para fechar o modal */
.close {
    position: absolute;
    top: 90vh;
    right: 48vw;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    width: 3vw;
    height: 7vh;
    text-align: center;
    padding: 0;
    margin: 0;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}