.c-plng {
  position: relative;
  min-height: 500px;
  background-color: var(--blue);
  background-image: url('https://aprodmovistarcomsa.z13.web.core.windows.net/persons/oferta-asistida-mov-total/content-page-n/bg-fibra-mp.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem 1rem 3rem;
}

.c-plng__destaca {
  display: none;
  position: absolute;
  top: 2rem;
  left: 0;
  font-size: 1.2rem;
  line-height: normal;
  padding: 8px 1.2rem 8px 8px;
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
}

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

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

.iteminfo__green {
  display: block;
  padding: 1rem;
  border: 1px solid var(--white);
  border-radius: 8px;
  font-size: 1.5rem;
  line-height: normal;
  width: 100%;
}

.iteminfo__border {
  padding: .5rem;
  border: 1px solid var(--white);
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: normal;
}

.c-plng__itemoffert {
  grid-area: offert;
}

.itemoffert__plan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  line-height: normal;
  margin: 2rem 0 1rem;
}

.itemoffert__plan i {
  position: relative;
}

.itemoffert__plan i::before {
  position: relative;
  z-index: 3;
}

.itemoffert__plan i::after {
  content: ' ';
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.itemoffert__box {
  border-radius: 12px;
  border: 1px solid var(--white);
  overflow: hidden;
  margin-bottom: 1rem;
}

.itemoffert__dto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1rem;
}

.itemoffert__dto p:first-child {
  font-size: 4.8rem;
  line-height: 4rem;
}

.itemoffert__dto p:last-child {
  font-size: 1.7rem;
  line-height: normal;
}

.itemoffert__price {
  padding: 1.7rem 1rem;
}

.itemoffert__price p:first-child {
  font-size: 3.3rem;
  line-height: 3rem;
  margin-bottom: 8px;
}

.itemoffert__price p:last-child {
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 300;
}


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


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

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

  .c-plng__destaca {
    display: block;
  }

  .c-plng__box {
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    grid-template-areas: "info offert call";
  }

  .iteminfo__border,
  .iteminfo__green {
    width: 100%;
    max-width: 310px;
  }

  .iteminfo__green {
    font-size: 1.9rem;
  }

  .itemoffert__plan {
    font-size: 1.9rem;
    margin: 0 0 1rem;
  }

}