/* WHATSAPP FIXO */
.whatsapp {position: fixed;top: 90%;right: 2%;padding: 0px;z-index: 9000000; }


/* aviso cookies LGPD*/
.aviso-lgpd {position: fixed;bottom:0 ;padding: 0px;z-index: 10000000;}


/* mobile */
@media only screen and (max-width: 767px) {

	.desktop{
		display:none;
	}

}

/* desktop */
@media only screen and (min-width: 768px) {

	.mobile{
		display:none;
	}
}

/* lgpd */
/* Bootstrap Vars */
.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
	--bs-offcanvas-zindex: 10000;
}

.galeria-foto {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.galeria-foto:hover {
    transform: scale(1.05);
	cursor: zoom-in;
}

.col-6.col-md-4.col-lg-3 a {
    position: relative;
    display: block;
    overflow: hidden;
}

.col-6.col-md-4.col-lg-3 a::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 14px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.col-6.col-md-4.col-lg-3 a:hover::after {
    opacity: 1;
}