.descricao {
  width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
} 

.texto_descricao {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0rem 5rem;
}

.texto_descricao p {
  font-size: 20px;
  text-align: justify;
  text-justify: inter-word;
  font-family: var(--font-primary);
}

.texto_descricao a {
  word-wrap: break-word;
}

.descricao button {
  display: flex;
  border: 1px solid #000000;
  width: 200px;
  height: 40px;
  border-radius: 5px;
  background-color: #FEF9D9;
  font-family: var(--font-secondary);
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.modal_button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #FFE270;
  margin: 15% auto;
  padding: 20px;
  border-radius: 30px;
  width: 100%;  
}

.close {
  color: #000000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: end;
}

.close:hover,
.close:focus {
  color: #eee;
  text-decoration: none;
  cursor: pointer;
}

.modal_referencias,
.modal_obras {
  width: 100%;
}

.modal_top_content,
.modal_bottom_content {
  display: flex;
}

.modal_top_content ol,
.modal_bottom_content ul {
  font-weight: bold;
}

.modal_top_content {
  margin-bottom: 20px;
}

.modal_bottom_content {
  margin-bottom: 100px;
}

.modal_top_content a,
.modal_bottom_content a {
  text-decoration: none;
  font-family: var(--font-secondary);
  color: #0047D7;
}

.modal_top_content h2,
.modal_bottom_content h2,
.modal_descricao h2 {
  font-size: 20px;
  font-weight: bold;
}

.modal_descricao {
  margin-bottom: 30px;
}

@media (width <=1440px) {
  .descricao {
      width: 100%;
  }
}

@media (width <=768px) {
  .texto_descricao {
    padding: 1rem;
  }
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
  }

  body {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  header,
  footer {
    display: none;
  }

  .perfil_texto h1 {
    font-size: 18px;
    color: #eee;
  }

  .texto_descricao p {
    font-size: 12px;
  }

  li {
    font-size: 12px;
  }

}