.aviso_zoom{z-index: 3; left: 0;top: 0; position: fixed; width: 100%; height: 100vh; overflow-x: hidden; overflow-y: auto; text-align: center; background-color: rgba(0, 0, 0, .9); }
.aviso_zoom img{max-width: 95%; cursor: zoom-out;}

.comunicados{
display: flex;
width: 95%;
flex-wrap: wrap;
margin: 0 auto;
justify-content: center;
height: auto;
padding: 1em 0;
}
.comunicado{
width: 300px;
height: 400px;
border: 2px solid #e0e7ef;
border-radius: 12px;
margin: 2px 5px 12px 5px;
box-shadow: 2px 2px 3px rgba(0,0,0,.4);
display: flex;
flex-wrap: wrap;
justify-content: center;
}

.comunicado img{
max-width: 289px;
max-height: 296px;
width: auto;
height: auto;
}

.comunicado .titulo{font-weight: bold; color: var(--verde);}

@media (max-width: 767px){
.comunicado{width: 80%;}
.comunicado img{max-width: 100%;}
}