
* {
			  font-family: 'Roboto', sans-serif !important;
}



/* --- Desktop padrão --- */
.main-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.category {
  width: 250px;
  flex-shrink: 0;
}

.pdf-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pdf-list .card {
  width: 18rem;
}

.organge-bg-color {
	
  background-color: orange;
}



/* --- MOBILE: <= 768px --- */
@media (max-width: 768px) {
  .main-layout {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .category {
    width: 100% !important;
    margin-bottom: 1rem;
  }

  .pdf-list {
    width: 95% !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .pdf-list .card {
    width: 85% !important;
    max-width: 85%;
  }
}

/* --- JUSTIFICAR O TEXTO DA DEFINIÇAO DE CADA CATEGORIA JURIDICA --- */

.text-justify {
  text-align: justify;
}

