.imovel-gallery section{
    display: grid;
    grid-template-columns: repeat(1,minmax(10px,1fr));
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    max-width: 1000px;
    margin: 16px 2rem;
    width: fit-content;
    padding: 1rem;
}

.imovel-gallery_titulo{
    font-weight: 400;
    padding: 1rem 2rem 0 1rem;
}

.imovel-gallery span{
    font-weight: 400;
    font-size: 14px;
    margin: 1rem 0;
}

.imovel-gallery_box{
    min-width: 255px;
    min-height: 135px;
}

.imovel-gallery_image{
    display: flex;
    justify-content: end;
    align-items: flex-start;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    width: 255px;
    height: 135px;
    box-shadow: 0 0 4px 1px #d0d0d0;
    border-radius: 4px;
    cursor: move;
    border: 4px solid white;
}

.imovel-gallery_image span{
    width: 24px;
    visibility: hidden;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin: 10px;
    background-color: rgba(0,0,0,.54);
    display: flex;
}

.imovel-gallery_image span:hover{
    cursor: pointer;
    background-color: rgb(227, 77, 77);
    transition: background-color ease-in-out 0.25s;
}

.imovel-gallery_image span img{
    width: 18px;
}

.drag-over {
    border: dashed 1px var(--verdeEscuro);
}

.hide {
    display: none;
}

.imovel-gallery_form input{
    display: none;
}

.imovel-gallery_form label{
    aspect-ratio: 16/9;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    border: 2px dashed currentcolor;
    cursor: pointer;
    transition: color 300ms ease-in-out, background 300ms ease-in-out;
    overflow: hidden;
    width: 255px;
    height: 135px;
}

@media screen and (min-width: 576px){
    .imovel-gallery section{
        grid-template-columns: repeat(2,minmax(10px,1fr));
    }
}

@media screen and (min-width: 1024px){
    .imovel-gallery section{
        grid-template-columns: repeat(3,minmax(10px,1fr));
    }
}



