:root {
  --primary-color: #ff6600;
  --secondary-color: #00cc66;
  --tertiary-color: #0099ff;
  --dark-color: #333333;
  --light-color: #ffffff;
}

.oferta_in {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
}

.oferta_in span {
  grid-column: 1;
  align-self: center;
}

.oferta_in p {
  text-align: justify;
  text-justify: inter-word;
  align-self: center;
}

.oferta_in img {
  /* grid-column: 2; */
  margin-top: auto;
  margin-bottom: auto;
  max-width: 100%;
  height: auto;
}
.oferta__text__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: start; */
}

.oferta__img__container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 850px) {
  .oferta_in {
    grid-template-columns: repeat(1, 1fr);
  }
  .oferta_in img {
    margin-left: auto;
    margin-right: auto;
  }
}
