.cursoCont {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.imgCurso {
  position: relative;
  width: 50%;
}

.imgCurso img {
  max-height: 100%;
  height: 100%;
  max-width: unset;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.titulo {
  display: block;
  text-align: center;
}

.precioRel {
  outline: 1px solid var(--clr-bright);
  background: var(--clr-card);
  position: relative;
  padding: 2rem;
}

#inscripcion {
  background: 
  linear-gradient(#10002095, #10002099),
  url('./img/curso.jpg');
  background-size: cover;
}

#inscripcion p {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

@media (max-width: 1080px) {
  .titulo.desk {
    display: none;
  }
  .titulo.mob {
    display: block;
    text-align: center;
  }
  .imgCurso {
    height: 68vw;
    width: 100%;
  }
  .imgCurso img {
    max-height: unset;
    max-width: 100%;
    height: auto;
  }
  .cursoCont {
    display: block;
  }
  .cursoCont > * {
    margin-bottom: 2rem;
  }
}

.incluye {
  margin-top: 1rem;
}

.cursoCont .btnCont {
  margin-top: 1.5rem;
}

#introCurso .liner {
  margin: 2rem 0;
}

.incluyeList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.incluyeList div div {
  padding: 0rem 2rem 2rem 2rem;
  width: 60%;
  min-width: 80px;
  margin: 0 auto;
}

.incluyeList p {
  text-align: center;
}

.valor {
  cursor: pointer;
  display: flex;
  /* justify-content: center; */
  gap: 2rem;
  align-items: center;
  font-family: var(--ff-phi);
}

.valor span {
  font-weight: 600;
}

.cambioPr {
  position: absolute !important;
  top: 0;
  right: 0;
  color: white;
  background: var(--clr-acc);
  /* font-size: clamp(.8rem, 1.5vw, 1rem); */
  transition: box-shadow 150ms ease-out, background 150ms ease-out;
  padding: .41rem;
  cursor: pointer;
  border-radius: 0 0 8px 8px;
}

.cambioPr:hover {
  box-shadow: 0 0 24px var(--clr-acc-h);
  background: var(--clr-acc-h);
}


@media (max-width: 560px) {
  .valor {
    gap: 1rem;
  }
  .incluyeList {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 0;
  }
}

