.informacoes {
  background-color: #f7f7f7;
}

.informacoes-header {
  padding: 5rem 0;
}

.informacoes-header .container {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.09);

  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.informacoes-header__content {
  padding: 40px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
}

.informacoes-header__content p {
  color: #4a5565;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 32px;
}

.informacoes-header__content span {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.informacoes-header__image {
  width: 100%;
  height: 100%;
}

.informacoes-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.informacoes-article {
  background-color: #fff;
  padding: 5rem 0;
}

.informacoes-article .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.informacoes-article article,
.informacoes-article aside {
  width: 100%;
}

.informacoes-article h2 {
  color: #121212;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 24px 0 16px;
}

.informacoes-article h3 {
  color: #121212;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 24px 0 16px;
}

.informacoes-article h4 {
  color: #121212;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 24px 0 16px;
}

.informacoes-article p {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 8px 0 16px;
}

.informacoes-article ul,
.informacoes-article ol {
  padding-left: 24px;
}

.informacoes-article li {
  color: #424242;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 8px 0 16px;
}

.informacoes-article article > *:first-child {
  margin-top: 0;
}

.more > a {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}

.more > a svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.more > a:hover svg {
  transform: translateX(8px);
}

.more-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.informacoes-informacao {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.informacoes-informacao img {
  width: 122px;
  height: 122px;
  object-fit: cover;
}

.informacoes-informacao__content h3 {
  color: #121212;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 0 0 12px 0;
}

.informacoes-informacao__content span {
  color: var(--primary-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (min-width: 768px) {
  .informacoes-article h2 {
    font-size: 1.5rem;
  }
  .informacoes-article h3 {
    font-size: 1.25rem;
  }
  .informacoes-article h4 {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .informacoes-header .container {
    grid-template-columns: 1.5fr 1fr;
  }
  .informacoes-header__content {
    border-radius: 20px 0 0 20px;
  }
  .informacoes-header__image img {
    border-radius: 0 20px 20px 0;
  }
  .informacoes-article .container {
    grid-template-columns: 1.25fr 1fr;
    gap: 64px;
  }
}

@media screen and (min-width: 1024px) {
  .informacoes-article .container {
    gap: 96px;
  }
}
