.c-plng {
  position: relative;
  min-height: 600px;
  background-color: var(--blue);
  background-image: url('https://aprodmovistarcomsa.z13.web.core.windows.net/persons/ofertas/porta-equipo/bg-portaequipos.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem 1rem 3rem;
}

.c-plng__box {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "info"
    "call"
}

.c-plng__iteminfo {
  grid-area: info;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem auto 0;
  width: 100%;
}

.c-plng__itemcall {
  grid-area: call;
}

.itemcall__title {
  font-size: clamp(1.7rem, 3vw, 2rem);
  line-height: normal;
  margin-bottom: .5rem;
}

.itemcall__subtitle {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: normal;
}

.itemcall__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem auto;
}

@media screen and (min-width:768px) {

  .c-plng {
    padding: 3rem 1rem 0;
  }

  .c-plng__box {
    grid-template-columns: 420px minmax(0, 650px);
    place-items: center;
    justify-content: center;
    grid-template-areas: "info call";
    gap: 5%;
  }

  .c-plng__iteminfo {
    display: flex;
  }

  .c-plng_imgoffer {
    max-width: 210px;
  }

  .itemcall__title {
    margin-bottom: 1.3rem;
  }

  .itemcall__box {
    flex-direction: row-reverse;
    gap: 1rem;
  }

}