.sessao-card {
    width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
}

.card-arquivo{
    width: 15%;
    border: 2px solid #dddddd;
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
	font-size: 25px;
}

@media (max-width: 1024px) {
  .card-arquivo {
   width: 30%;
   margin: 5px;
   font-size: 25px
  }
}


@media (max-width: 640px) {
  .card-arquivo {
   width: 45%;
   margin: 7px;
   font-size: 16px;
   height: 245px;
  }
}

.card-arquivo--image {
    width: 100%;
}

.card-arquivo--image img {
    width: 100%;
}

.card-arquivo--title {
    display: flex;
    width: 100%;
}

.card-arquivo--title p {
    font-size: 15px;
    flex-wrap: wrap;
    overflow: hidden;
    white-space: nowrap; /* Opcional: para evitar quebrar o texto */
    text-overflow: ellipsis;
}

.card-arquivo--btn{
    width: 100%;
    display: flex;
}

.btn-view, .btn-download {
    width: 50%;
    display: flex;
}

.btn-view {
    justify-content: flex-start;
}

.btn-download {
    justify-content: flex-end;
}

.btn-view img {
    width: 27px;
}

.btn-download img {
    width: 30px;
}