body {
  animation: fadeIn 1s ease-in-out forwards;
}

.post-apresentacao {
  display: grid;
  padding: 3.6rem;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  gap: 2rem;
}

.post-apresentacao img {
  width: 100%;
  grid-column: 1 / 1;
  grid-row: 1 / 4;
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.post-apresentacao h2 {
  grid-column: 2 / 2;
  grid-row: 1 / 2;
  border-bottom: 3px solid var(--highlight-color);
  border-image: linear-gradient(
      90deg,
      var(--highlight-color),
      var(--background-color)
    )
    1;
  padding-bottom: 0.4rem;
}

.post-apresentacao ul {
  grid-column: 2/ 2;
  grid-row: 2 / 2;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-apresentacao p {
  grid-column: 2 / 2;
  grid-row: 3 / 3;
  font-size: 1.2rem;
  align-self: self-end;
  font-weight: 400;
}

.conteudo {
  margin: 1rem 5rem;
}

.conteudo p {
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.conteudo h3 {
  margin-bottom: 1.6rem;
  padding-bottom: 0.6rem;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--highlight-color);
  border-image: linear-gradient(
      90deg,
      var(--highlight-color),
      var(--background-color)
    )
    1;
}

.conteudo ul {
  list-style: none;
  margin-bottom: 2rem;
}

.conteudo ul li {
  margin-bottom: 0.8rem;
}

.conteudo h4 {
  margin-bottom: 1.6rem;
  opacity: 0.8;
  font-size: 1.2rem;
}

.conteudo h5 {
  margin-bottom: 1.6rem;
  font-size: 1rem;
  opacity: 0.6;
}

.conteudo table {
  border: 1px solid var(--text-color);
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  padding: 0.6rem;
  margin: 2rem 0;
}

.conteudo table th,
td {
  padding: 0.6rem;
  border: 1px solid var(--text-color);
}

.conteudo table th {
  background-color: var(--secondary-color);
}
