.tile-denuncia {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.img-denuncia {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.texto-denuncia {
    font-size: 14px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 13; /* Limita a 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.coluna-denuncia {
    width: 100%; /* Ou o tamanho desejado */
    flex-direction: column; /* Garante que o título ficará acima e o texto abaixo */
}

.titulo-denuncia {
    color: rgb(42, 13, 122); 
    font-weight: bold; 
    font-size: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* Limita a 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.avatar-denuncia {
    color: rgb(42, 13, 122); 
    font-weight: bold; 
    font-size: 20px;
    text-align: center;
}

.governo-denuncia {
    color: rgb(42, 13, 122); 
    font-weight: bold; 
    font-size: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6; /* Limita a 3 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.tile-atendimento{
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}