/* modal - popup promocoes */
.wrap {
    padding: 40px;
    text-align: center;
}

.modalp:target:before {
    display: none;
}
.modalp:before {
    content:"";
    display: block;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}
.modalp .modalp-dialog {
    background: #fefefe;
    border: #333333 solid 1px;
    border-radius: 5px;
/*    margin-left: -25%; */
    position: fixed;
 /*   left: 50%; */
    z-index: 11000;
    width: 95%;
	max-width: 600px;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    top: 2%;
}
.modalp:target .modalp-dialog {
    top: -100%;
    -webkit-transform: translate(0, -500%);
    -ms-transform: translate(0, -500%);
    transform: translate(0, -500%);
}
.modalp-body {
    padding: 20px; 
}
.modalp-header, .modalp-footer {
    padding: 10px 20px;
}
.modalp-header {
    border-bottom: #eeeeee solid 1px;
	min-height:70px;
}
.modalp-header h2 {
    font-size: 20px;
}
.modalp-footer {
    border-top: #eeeeee solid 1px;
    text-align: right;
}

/* chatbot */
#chat2 .form-control {
border-color: transparent;
}

#chat2 .form-control:focus {
border-color: transparent;
box-shadow: inset 0px 0px 0px 1px transparent;
}

/* WHATSAPP FIXO */
.whatsapp {position: fixed;top: 90%;right: 1%;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;
	}
}

/* Custom CSS for Modal */
.custom-modal-size {
    max-width: 1200px; /* Largura máxima do modal */
    max-height: 90vh; /* Altura máxima do modal */
    width: auto; /* Ajusta automaticamente a largura */
}

#modalImage {
    max-height: 85vh; /* Altura máxima da imagem */
    width: auto; /* Ajusta automaticamente a largura */
}

/* Margem entre imagens de produtos */
#produtos img {
    margin-bottom: 15px;
}

/* Borda ao redor das imagens dos produtos */
#produtos img.border {
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: transform 0.3s;
}

/* Efeito hover para imagens de produtos */
#produtos img.border:hover {
    transform: scale(1.05);
    border-color: #007bff;
}
