.ficha-contexto {
  background: var(--ficha-contexto-bg, var(--jav-color-surface-azul-claro));
  padding: 32px 102px 32px 92px;
  color: var(--jav-azul-4);
  text-align: center;
}
.ficha-contexto__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--jav-space-4);
}
.ficha-contexto__icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ficha-contexto__icon img,
.ficha-contexto__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.ficha-contexto__title {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-h2);
  font-weight: var(--jav-font-bold);
  color: inherit;
  line-height: var(--jav-line-height);
}
.ficha-contexto__content {
  margin-top: var(--jav-space-8);
}
.ficha-contexto__body {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-sm);
  font-weight: var(--jav-font-regular);
  color: inherit;
  line-height: 1.5;
}
.ficha-contexto__body p,
.ficha-contexto__body ul,
.ficha-contexto__body ol {
  color: inherit;
  margin: 0 0 10px;
}
.ficha-contexto__body p:last-child,
.ficha-contexto__body ul:last-child,
.ficha-contexto__body ol:last-child {
  margin-bottom: 0;
}
.ficha-contexto__body ul,
.ficha-contexto__body ol {
  padding-left: 20px;
}
.ficha-contexto__body ul {
  list-style: disc;
}
.ficha-contexto__body ol {
  list-style: decimal;
}
.ficha-contexto__body li {
  margin-bottom: var(--jav-space-4);
}
.ficha-contexto__body li:last-child {
  margin-bottom: 0;
}
.ficha-contexto__body li p {
  margin: 0;
}
@media (max-width: 991px) {
  .ficha-contexto {
    padding: 28px 56px;
  }
}
@media (max-width: 575px) {
  .ficha-contexto {
    padding: 24px var(--jav-space-6);
  }
  .ficha-contexto__header {
    gap: var(--jav-space-4);
  }
  .ficha-contexto__icon {
    width: 48px;
    height: 48px;
  }
  .ficha-contexto__icon img, .ficha-contexto__icon svg {
    width: 24px;
    height: 24px;
  }
}

.ficha-contexto__media {
  width: 100%;
  overflow: hidden;
}
.ficha-contexto__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
