@charset "utf-8";

.cliqueobras{
	cursor:pointer;}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
	right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

.lightbox-content {
    position: relative; 
    display: inline-block;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox img {
    display: none;
    width: 100%;
    max-width: 1000px;
	max-height: 100vh;
    transition: opacity 2s ease-in-out;
    opacity: 0;
}
.lightbox img.active {
    display: block;
    opacity: 1;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
	border:0;
    background: #000;
    transform: translateY(-50%);
    transition:0.3s ease-in-out;
}
.prev {
    left: 10px;
    background: #000 url(imagens/icone/seta_Esq.svg) no-repeat center center;
}
.next {
    right: 10px;
    background: #000 url(imagens/icone/seta_Dir.svg) no-repeat center center;
}
.prev:hover, .next:hover {
    background-color: #FC0;
}

.close {
	width: 50px;
    height: 50px;
    position: absolute;
	top:95px;
	right:15px;
	z-index:999;
    background: #000 url(imagens/icone/bt_fechar.svg) no-repeat center center;
	border-radius:50px;
    cursor: pointer;
	transition:0.3s ease-in-out;
}

.close:hover {
	background: #FC0 url(imagens/icone/bt_fechar.svg) no-repeat center center;
}


