.c-cel__slide {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 8px !important;
}

.c-cel__slide.active {
  display: flex;
}

.c-plan-cel {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-areas:
    "celdestaca celdestaca"
    "celimg celtitle"
    "celimg celinfo"
    "box-btns box-btns";
  place-items: center;
  row-gap: 8px;
  column-gap: 12px;
  border-radius: 8px;
  box-shadow: 0px 2px 4px 0px rgba(11, 39, 57, 0.05);
  background: #fff;
  padding: 30px 20px 20px 8px;
  width: 100%;
  max-width: 400px;
  margin: 12px 2px;
  text-align: left;
}

.c-plan-cel p,
.c-plan-cel span {
  line-height: normal;
  font-style: normal;
}

.c-plan-cel__destaca {
  width: max-content;
  padding: 2px 10px;
  border-radius: 20px;
  justify-self: flex-start;
  position: absolute;
  top: 5%;
  left: 8%;
  transform: translatey(-50%, -50%);
  color: var(--blue);
  background-color: #e1efff;
  font-size: 12px;
  font-weight: 600;
  min-width: 108px;
  -webkit-transform: translatey(-50%, -50%);
  -moz-transform: translatey(-50%, -50%);
  -ms-transform: translatey(-50%, -50%);
  -o-transform: translatey(-50%, -50%);
}

.c-plan-cel__imgs {
  grid-area: celimg;
  position: relative;
  display: flex;
  justify-content: center;
  max-height: 141px;
}

.c-plan-cel__imgs img {
  object-fit: contain;
  transition: all 0.2s ease;
}

.c-plan-cel__imgs img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.4s ease;
}

.c-plan-cel__info {
  grid-area: celinfo;
  justify-self: flex-start;
  text-align: left;
}

.box-btns {
  grid-area: box-btns;
  width: 95%;
}

.c-plan-cel__title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  height: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
  grid-area: celtitle;
  justify-self: flex-start;
}

.c-plan-cel__marca {
  display: none;
}

.c-plan-cel__flex {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-plan-cel__price {
  color: #e63780;
  font-size: 14px;
  font-weight: 400;
  text-decoration: line-through;
}

.c-plan-cel__dto {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background-color: #e1efff;
  border-radius: 20px;
}

.c-plan-cel__txt {
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  min-height: 18px;
}

.c-plan-cel__normalprice {
  color: #313235;
  font-size: 32px;
  font-weight: 700;
}

.c-plan-cel__send {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: clamp(11px, 1vw, 13px);
}
.c-plan-cel__send i{
  font-size: 18px;
  line-height: normal;
}

.button-compra {
  display: none !important;
  margin: 15px auto 0;
  width: 90%;
  max-width: 144px;
  height: 28px;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  background-color: var(--darkBlue);
  color: var(--white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.button-compra:hover,
.button-compra:active {
  transition: all 0.3s ease;
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .--normalMobile .c-plan-cel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "celimg"
      "celinfo";
    padding: 20px 23px 28px;
    place-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .c-plan-cel__marca {
    font-size: 14px;
    text-align: center;
    color: #313235;
    display: -webkit-box;
    font-weight: 400;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    max-height: 42px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
    grid-area: txmarca;
    justify-self: center;
  }

  .c-cel__slide.active {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    column-gap: 28px;
  }

  .c-cel__slide {
    flex-direction: row;
  }

  .c-plan-cel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "celtitle"
      "txmarca"
      "celimg"
      "celinfo"
      "box-btns";
    align-content: space-between;
    max-width: 264px;
    min-height: 496px;
    padding: 35px 23px 23px;
  }

  .c-plan-cel__info {
    justify-self: center;
    text-align: center;
  }

  .c-plan-cel__destaca {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    font-size: clamp(13px, 0.8em, 14px);
  }

  .--hoverimgs:hover img:nth-child(1) {
    opacity: 0;
  }

  .--hoverimgs:hover img:nth-child(2) {
    opacity: 1;
  }

  .c-plan-cel__title {
    justify-self: center;
    font-weight: bold;
    text-align: center;
  }

  .c-plan-cel__flex {
    margin-bottom: 4px;
    justify-content: center;
    min-height: 23px;
  }

  .c-plan-cel__price {
    font-size: 15px;
  }
  .button-compra {
    display: block !important;
  }

  .c-plan-cel__imgs {
    max-height: 236px;
  }

  .c-plan-cel__imgs img {
    height: 236px;
  }
}

@media screen and (min-width: 1000px) {
  .c-cel__slide.active {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    column-gap: 8px;
  }

  .c-plan-cel__title {
    font-size: clamp(16px, 1.5vw, 18px);
  }
}

.c-plan-cel .content_btns {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-around;
}

.c-plan-cel .c-phone__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  border-radius: 40px;
  margin: 5px 0;
  font-size: 14px;
  height: 40px;
  width: 80%;
  gap: 8px;
}

.c-plan-cel .c-phone__btn.border {
  border: 1px solid var(--darkBlue);
}

.c-plan-cel .c-phone__btn i {
  font-size: 20px;
}

.c-plan-cel .btn_call {
  border: 1px solid var(--blue);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.c-plan-cel .c-phone__stikers {
  position: absolute;
  right: 0;
  width: 56px;
}

.c-plan-cel .c-phone__stikers2.preventa {
  width: 100%;
  max-width: 230px;
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
}

.c-plan-cel .c-phone__stikers.ecorating {
  padding: 4px;
  border-radius: 4px;
  width: 80px;
  line-height: normal;
  left: 0;
  top: 12px;
}

.c-plan-cel .c-phone__stikers.ecorating > p {
  font-weight: bold;
  font-size: 2.6vw;
  text-align: center;
}
