/* MODAL FOTOS GALERIA ______________________________________________________*/
.divOverlay {
  display: none;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

.imgOverlay {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-galeria {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  z-index: 1000;
}

.modal-galeria img {
  display: block;
  max-width: 100vw;
  max-height: 90vh;
  border-radius: 8px;
  transition: opacity .25s ease, transform .25s ease;

  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animación */
.modal-galeria img.fade {
  opacity: 0;
  transform: scale(.98);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0 10px;

  background: rgba(0, 0, 0, .25);
  padding: 12px 16px;
  z-index: 10000;
  border-radius: 6px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Hover */
.nav:hover {
  background: rgba(70, 152, 223, .6);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

/*________________________________________________________________________________*/

.detalles {

  width: 100%;
  margin: 1.25em 0 4em 0;
  display: flex;
  justify-content: space-around;
  /* gap: 1em; */

  /* NO FUNCIONA (seleccionar texto de la descripcion) */
  -webkit-user-select: text !important;
  /* Safari */
  -moz-user-select: text !important;
  /* Firefox */
  -ms-user-select: text !important;
  /* IE/Edge antiguos */
  user-select: text !important;

}

.producto {
  background-color: #fff;
  width: 60%;

  border-radius: 0.5em;

  display: none;
}

.producto .imgs {

  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0em;
}

/* TITULO _________________________________________ */

.producto .titulo {
  padding: 0.75em 1.5em 0.75em 1.5em;
  border-bottom: 1px solid #979797;
  margin: 0;
}

.title-producto {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.subtitle-producto {
  font-size: 1.15rem;
  color: #4d4d4d;
  margin-bottom: 0;
}

/* HEAD DETALLES Catalogo Navegacion Activa ____________________________________________ */
.detalles-head {
  width: 100%;
  background-color: #fff;
}

#detalles-heading {
  padding: 10px 10px 2px 15px;
  font-size: 1.25rem;
}

.breadcrumb {
  padding: 0.5em 1.5em 0 0;
}

.breadcrumb-ul {
  display: flex;
  gap: 1em;

  list-style: none;
  padding: 0;
}

.breadcrumb-li {
  position: relative;
  padding-left: 1.2em;
  /* espacio para el símbolo */
  font-size: 0.85rem;
}

.breadcrumb-li a {
  text-decoration: none;
  color: #757575;
  text-decoration: underline;
}

.breadcrumb-li a:hover {
  color: #dd03ff;
}

.breadcrumb-li.breadcrumb-active {
  font-weight: bold;
  color: #6a6a6a;
  text-decoration: none;

}

.breadcrumb-li::before {
  content: ">";
  position: absolute;
  top: -1px;
  left: 0;
  color: #693767;
  font-weight: bold;
}

/* VERSIONES _________________________________________________ */

.versiones {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.25em;

  padding: 0.4em 1.5em 0.3em 1.5em;
  margin: 0 0;
  border-bottom: 1px solid #afafaf;
}

.title-versiones {
  color: #7a7a7a;
  font-size: 1.1rem;
  margin: 0.5em 0;
}

.div-versiones {
  width: 100%;

  display: flex;
  justify-content: start;
  align-items: center;

  flex-wrap: wrap;
  row-gap: 0.3em;
  column-gap: 0.5em;

  padding: 0 2em;
}

.version {
  font-size: 0.9rem;
  padding: 5px 17px;
  border-radius: 15px;
  color: #000000;
  background-color: #dfdfdf;
  cursor: pointer;
  transition: 0.2s all;
}

.version:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.v-on {
  background-color: rgb(32, 32, 32);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  color: rgb(255, 216, 42);
}

.v-on:hover {
  background-color: rgb(32, 32, 32);
}

/* IMAGEN PRINCIPAL _____________________________ */

.imgs .img-1 {
  grid-column: span 5 / span 5;
  grid-row: span 5 / span 5;

  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0.5em;
  margin-bottom: 0;
  overflow: hidden;
  cursor: zoom-in;

  position: relative;
}

.img-1 img {
  align-self: center;
  /* width: 3.5em; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-1 .lupa {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
  right: 25px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;

  width: 50px;
  height: 50px;
  /* padding: 10px; */
  font-size: 0.75rem;
  border-radius: 99px;
  z-index: 10;
}

.imgs .img-1 img {
  height: 25em;
  transition: 0.2s all;
}

/* SUB IMAGENES _____________________________ */

.imgs .sub-img {
  margin: 0.5em 0.5em 0 0;

  padding: 0.25em;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);


  display: flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  transition: 0.2s all;

  width: 8em;
  height: 8em;
  overflow: hidden;

}


.imgs .sub-img:hover {
  opacity: 0.7;
}

/* TODAS las <img> de .sub-img */
.imgs .sub-img img {
  align-self: center;
  /* height: fit-content; */
  /* height: 5em; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.imgs .img-2 {
  grid-column-start: 6;
}

.imgs .img-3 {
  grid-column-start: 6;
  grid-row-start: 2;
}

.imgs .img-4 {
  grid-column-start: 6;
  grid-row-start: 3;
}

.imgs .img-5 {
  grid-column-start: 6;
  grid-row-start: 4;
}

/* COLORES del producto ________________________________ */

.colores {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1em;

  padding: 0.65em 0 0.5em 0;
  margin: 0 3em;
  border-bottom: 1px solid #979797;
}

.ad-color {
  color: #a1a1a1;
  font-size: 0.75em;
}

.title-colores {
  color: #4d4d4d;
  font-size: 1rem;
  margin: 0.5em 0;
}

.div-colores {
  width: fit-content;

  display: flex;
  gap: 0.35em;

  padding: 7px;
  border-radius: 25px;
  border: 1px solid #ccc;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5),
    /* sombra interna oscura */
    inset -0px -0px 5px rgba(255, 255, 255, 0.5);
  /* sombra interna clara */
}

.color {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid rgb(54, 54, 54);
}

/* DESCRIPCION DEL PRODUCTO ________________________________ */
.producto .descripcion {
  padding: 0.6em 3em 1em 3em;

  /* extension para ver completa */
  position: relative;
}

.description-producto {
  font-size: 1rem;
  color: #707070;
  margin-bottom: 1.5em;

  /* border-top: 1px solid #929292; */
  padding-top: 0.75em;

  /* extension para ver completa */
  display: -webkit-box;
  -webkit-line-clamp: 13;
  /* límite de filas (ej: 5) */
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

/* extension para ver completa ____________________________________________*/
.descripcion.expandida .description-producto {
  -webkit-line-clamp: unset;
  /* quitar límite */
  overflow: visible;
}

.descripcion::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.5em;
  /* altura del gradiente */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 65%);
  pointer-events: none;

  border-radius: 1em;
}

.descripcion.expandida::after {
  display: none;
  /* quitar gradiente al expandir */
}

.toggle-descripcion {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: #2894ff;
  /* font-weight: bold; */
  letter-spacing: 1px;
  display: inline-block;
  /* margin-top: 5px; */
  z-index: 1;
  position: absolute;
  bottom: 1.3em;
}

/* PAGOS - COMPRAR ________________________________ */

.pagos {
  height: fit-content;

  background-color: #fff;
  width: 33%;
  padding: 1.5em;
  border-radius: 0.5em;
}

.tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding: 0 0 1em 0;
  font-size: 0.75rem;
  font-weight: bolder;
}

.tag {
  border-radius: 4px;
  padding: 6px 16px;
}

.t-stock {
  background-color: #75b5ff;
  color: #073972;
}

.t-color {
  background-color: #97ff94;
  color: #0c3b06;
}

.title-entrega {
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 0.35em;
}

.title-pagos {
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 0.35em;
}

.pagos-1 {
  padding: 1em;
  border-top: 1px solid #979797;
  /* border-bottom: 1px solid #979797; */

}

.pagos-1 .pagos-item {
  display: flex;
  gap: 1rem;
  color: #444444;

}

.pagos-1 .pagos-item .item-icon {
  font-size: 1.5rem;
  margin: 0 0.25rem;
}

.pagos-1 .pagos-item .item-text {
  font-size: 0.75rem;
  align-self: center;
}

.pagos-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  justify-content: center;

  padding: 1.4em 1.5em;
  border-top: 1px solid #979797;

}

.pagos-2 .pagos-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #4d4d4d;
  border-radius: 5px;
  padding: 2px 5px;
}

.pagos-2 .pagos-item .item-img {
  width: 3.75em;
}

/* COMPRAR _________________________________________ */

.comprar {
  padding: 1em 0 0 0;
  border-top: 1px solid #979797;
}

#btn-comprar {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;

  background-color: #5aa7ff;
  color: #fff;
  border-radius: 7px;
  border: none;
  font-size: 1.1rem;
  padding: 15px;

  transition: 0.1s all;
}

#btn-comprar:hover {
  cursor: pointer;
  background-color: #7fbbff;
}

#btn-comprar i {
  font-size: 1.5rem;
}

.info-comprar {
  color: #4d4d4d;
  text-align: center;
  font-size: 0.65rem;
  margin-top: 0.5em;
}

/* PRODUCTOS RELACIONADOS ________________________________ */

.productos {
  padding: 40px 40px 60px 40px;
  background-color: rgba(0, 0, 0, 0.55);
  margin: 0 0 5em 0;
}

.productos h2 {
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
  margin-bottom: 30px;
  font-weight: lighter;
}

.productos-grid {
  padding: 0 1em;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 1.75em;
}

.producto-card {
  background-color: white;
  padding: 10px 15px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: 0.1s all;

  position: relative;
}

.producto-card:hover {
  transform: scale(1.02);
  /* se agranda un 5% */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
}

.producto-nuevo {
  position: absolute;
  top: 40px;
  right: 5px;
  /* background-color: rgb(235, 77, 77); */
  background-color: rgb(255, 75, 75);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid white;
  color: rgb(255, 255, 255);
  padding: 3px 11px;
  font-size: 11px;
  border-radius: 99px;
  z-index: 10;
}

.producto-versiones {
  position: absolute;
  top: 10px;
  right: 5px;
  /* background-color: rgb(235, 77, 77); */
  background-color: rgb(32, 32, 32);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  border: 2px solid white;
  color: rgb(255, 208, 0);
  padding: 3px 11px;
  font-size: 11px;
  border-radius: 99px;
  z-index: 10;
}

.img-card {
  width: 100%;
  height: 7rem;
  /* background-color: #ddd; */
  border-radius: 4px;
  margin-bottom: 10px;
  object-fit: contain;
}

.title-card {
  text-align: start;
  font-weight: lighter;
  font-size: 0.7rem;
  margin-top: 0.25em;
}

.subtitle-card {
  font-size: 0.6rem;
  text-align: start;
  margin-bottom: 0.25em;
}

.btn-card {
  display: flex;
  justify-self: end;
  padding: 5px 20px;
  border-radius: 15px;
  border: none;
  background-color: #dcc3e0;
  cursor: pointer;
  font-size: 0.6rem;
  margin-top: 0.65em;
}

.btn-card:hover {
  background-color: #cd7fec;
  color: #fff;
  transition: 0.2s ease;
}

/* RESPONSIVE CSS*/
/*-------------------------------------------------------------------------------------------------------------------- */
@media (max-width: 575px) {

  /* MODAL FOTOS GALERIA ______________________________________________________*/
  .modal-galeria {
    height: auto;
  }

  /* ________________________________ */

  .detalles {
    margin: 1.25em 0 4em 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* gap: 1em; */
  }

  /* PRODUCTO ________________________________ */

  .producto {
    width: 100%;
    border-radius: 0;
  }

  /* TITULO _________________________________________ */

  .producto .titulo {
    padding: 0.75em 1em 0.75em 1em;
    border-bottom: 1px solid #979797;
    margin: 0;
  }

  .title-producto {
    font-size: 1.1rem;
    margin-bottom: 0.1em;
  }

  .subtitle-producto {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  /* HEAD DETALLES Catalogo Navegacion Activa ____________________________________________ */
  .breadcrumb {
    padding: 0.25em 1.5em 0 0;
  }

  .breadcrumb-li {
    font-size: 0.6rem;
  }

  /* VERSIONES _________________________________________________ */

  .versiones {
    gap: 1em;

    padding: 0.25em 1.5em;
    margin: 0;
  }

  .title-versiones {
    font-size: 0.8rem;
    margin: 0.5em 0;
  }

  .div-versiones {
    width: 100%;

    padding: 7px;

    row-gap: 0.3em;
    column-gap: 0.3em;
  }

  .version {
    font-size: 0.6rem;
    padding: 5px 13px;
  }

  /* IMAGEN PRINCIPAL _____________________________ */
  .producto .imgs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0em;
  }

  .imgs .img-1 {
    grid-column: span 4 / span 4;
    grid-row: span 4 / span 4;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0.5em;
    margin-bottom: 0;
    overflow: hidden;
    cursor: zoom-in;

    /* width: 8em; */
    /* height: 8em; */
    overflow: hidden;
  }

  /* SUB IMAGENES _____________________________ */

  /* TODAS las <img> de .sub-img */
  .imgs .sub-img {
    width: 4.75rem;
    height: 4.75rem;
    margin: 10px auto;
    padding: 0.1em;
  }

  .imgs .sub-img img {
    align-self: center;
    /* width: 3.5em; */
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .imgs .img-2 {
    grid-row-start: 5;
    grid-column-start: 1;
  }

  .imgs .img-3 {
    grid-row-start: 5;
    grid-column-start: 2;
  }

  .imgs .img-4 {
    grid-row-start: 5;
    grid-column-start: 3;
  }

  .imgs .img-5 {
    grid-row-start: 5;
    grid-column-start: 4;
  }

  /* COLORES del producto ________________________________ */
  .colores {
    padding: 0.75em 0;
    margin: 0 1.5em;
    border-bottom: 1px solid #979797;
  }

  .ad-color {
    font-size: 0.55em;
  }

  .title-colores {
    color: #4d4d4d;
    font-size: 0.75rem;
    margin: 0.5em 0;
  }

  .color {
    width: 20px;
    height: 20px;
  }

  /* DESCRIPCION DEL PRODUCTO ________________________________ */
  .producto .descripcion {
    padding: 0.75em 1.5em 1.75em 1.5em;
  }

  .description-producto {
    font-size: 0.75rem;
    margin-bottom: 1.5em;
  }

  /* PAGOS ________________________________ */

  .pagos {
    width: 100%;
    padding: 0 1.5em 1.5em 1.5em;
    border-radius: 0;
  }

  .title-pagos {
    font-size: 1.25rem;
    font-weight: 200;
    margin-bottom: 0.35em;
  }

  .pagos-1 {
    padding: 0.75em;
  }

  .pagos-1 .pagos-item .item-icon {
    font-size: 1.55rem;
    margin: 0 0.25rem;
  }

  .pagos-1 .pagos-item .item-text {
    font-size: 0.75rem;
  }

  /* PRODUCTOS RELACIONADOS ________________________________ */

  .productos-grid {
    padding: 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 1.25em;
  }

  .img-card {
    height: 7rem;
  }

  .title-card {
    margin-top: 1em;
    font-size: 0.6rem;
  }

  .subtitle-card {
    text-align: start;
    margin-bottom: 1.5em;
    font-size: 0.4rem;
  }

  .btn-card {
    padding: 5px 20px;
    font-size: 0.6rem;
    margin-top: 0.65em;
  }

}

/*-------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 576px) and (max-width: 767px) {

  /* MODAL FOTOS GALERIA ______________________________________________________*/
  .modal-galeria {
    height: auto;
  }

  /* ________________________________ */

  .detalles {
    margin: 1.25em 0 4em 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* gap: 1em; */
  }

  /* PRODUCTO ________________________________ */

  .producto {
    width: 100%;
    border-radius: 0;
  }

  /* TITULO _________________________________________ */

  .producto .titulo {
    padding: 0.75em 1.5em 0.75em 1.5em;
    border-bottom: 1px solid #979797;
    margin: 0;
  }

  .title-producto {
    font-size: 1.2rem;
    margin-bottom: 0.1em;
  }

  .subtitle-producto {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0;
  }

  .breadcrumb-li {
    font-size: 0.7rem;
  }

  /* VERSIONES _________________________________________________ */

  .versiones {
    gap: 1em;

    padding: 0.25em 1.5em;
    margin: 0;
  }

  .title-versiones {
    font-size: 1rem;
    margin: 0.5em 0;
  }

  .div-versiones {
    width: 100%;

    padding: 7px;

    row-gap: 0.3em;
    column-gap: 0.4em;
  }

  .version {
    font-size: 0.75rem;
    padding: 5px 17px;
  }

  /* COLORES del producto ________________________________ */
  .colores {
    padding: 0.75em 0 0.75em 0;
    margin: 0 1.5em;
    border-bottom: 1px solid #979797;
  }

  .ad-color {
    font-size: 0.6em;
  }

  .title-colores {
    color: #4d4d4d;
    font-size: 0.9rem;
    margin: 0.5em 0;
  }

  /* DESCRIPCION DEL PRODUCTO ________________________________ */
  .producto .descripcion {
    padding: 0.8em 1.5em 1.75em 1.5em;
  }

  .description-producto {
    font-size: 0.75rem;
    margin-bottom: 1.5em;
  }

  /* PAGOS ________________________________ */

  .pagos {
    width: 100%;
    padding: 0 1.5em 1.5em 1.5em;
    border-radius: 0;
  }

  .title-pagos {
    font-size: 1.25rem;
    font-weight: 200;
    margin-bottom: 0.35em;
  }

  .pagos-1 {
    padding: 0.75em;
  }

  .pagos-1 .pagos-item .item-icon {
    font-size: 1.55rem;
    margin: 0 0.25rem;
  }

  .pagos-1 .pagos-item .item-text {
    font-size: 0.75rem;
  }

  /* PRODUCTOS RELACIONADOS ________________________________ */

  .productos-grid {
    padding: 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 1.25em;
  }

  .img-card {
    height: 7rem;
  }

  .title-card {
    margin-top: 1em;
    font-size: 0.55rem;
  }

  .subtitle-card {
    text-align: start;
    margin-bottom: 1.5em;
    font-size: 0.4rem;
  }

  .btn-card {
    padding: 5px 20px;
    font-size: 0.6rem;
    margin-top: 0.65em;
  }

}

/*-------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 991px) {


  .modal-galeria {
    height: auto;
  }

  /*___________________________*/

  .detalles {
    margin: 1.25em 0 4em 0;
    display: flex;
    justify-content: space-between;
    /* gap: 1em; */
  }

  /* PRODUCTO ________________________________ */

  .producto {
    width: 60%;
    border-radius: 0 0.35em 0.35em 0;
  }

  /* TITULO _________________________________________ */
  .producto .titulo {
    padding: 0.75em 1.5em 0.75em 1em;
    border-bottom: 1px solid #979797;
    margin: 0;
  }

  .title-producto {
    font-size: 1.2rem;
    margin-bottom: 0.1em;
  }

  .subtitle-producto {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0;
  }

  .breadcrumb-li {
    font-size: 0.7rem;
  }


  /* VERSIONES _________________________________________________ */

  .versiones {
    padding: 0 1.5em;
    margin: 0;
  }

  .title-versiones {
    font-size: 0.9rem;
    margin: 0.5em 0;
  }

  .div-versiones {
    width: 100%;

    padding: 7px;

    row-gap: 0.4em;
    column-gap: 0.4em;
  }

  .version {
    font-size: 0.6rem;
    padding: 5px 17px;
  }

  /* COLORES del producto ________________________________ */

  .colores {
    padding: 0.75em 0 0.75em 0;
    margin: 0 2em;
    border-bottom: 1px solid #979797;
  }

  .ad-color {
    font-size: 0.6em;
  }

  .title-colores {
    color: #4d4d4d;
    font-size: 0.7rem;
    margin: 0.5em 0;
  }

  /* DESCRIPCION DEL PRODUCTO ________________________________ */

  .producto .descripcion {
    padding: 0.5em 2em 1.75em 2em;
  }

  .description-producto {
    font-size: 0.75rem;
    margin-bottom: 1.5em;
  }



  /* PAGOS ________________________________ */

  .pagos {
    width: 37.5%;
    padding: 0.75em;
    border-radius: 0.35em 0 0 0.35em;
  }

  .title-pagos {
    font-size: 1.25rem;
    font-weight: 200;
    margin-bottom: 0.35em;
  }

  .pagos-1 {
    padding: 0.75em;
  }

  .pagos-1 .pagos-item .item-icon {
    font-size: 1.55rem;
    margin: 0 0.25rem;
  }

  .pagos-1 .pagos-item .item-text {
    font-size: 0.75rem;
  }

  /* PRODUCTOS RELACIONADOS ________________________________ */

  .productos-grid {
    padding: 0 1em;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 1.25em;
  }

  .img-card {
    height: 7rem;
  }

  .title-card {
    margin-top: 1em;
    font-size: 0.6rem;
  }

  .subtitle-card {
    text-align: start;
    margin-bottom: 1.5em;
    font-size: 0.5rem;
  }

  .btn-card {
    padding: 5px 20px;
    font-size: 0.6rem;
    margin-top: 0.65em;
  }

}

/*-------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 992px) {}