.h1-importante {
  background-color: rgb(17 17 37);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
  border-top: 2px solid #cbcbcb;
}

.h1-importante h1 {
  margin: 0;
  font-size: 1.5em;
  color: #dad3d3;
  text-align: center;
  padding: 10px;
}

.nuestros-cursos {
  display: flex;
  flex-wrap: wrap;
  background: rgb(17 17 37);
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.nuestros-cursos > .contenedor-producto-curso {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 600px;
  border: 2px solid #cea135;
  border-radius: 10px;
  background-color: rgb(27 27 57);
  color: #cbcbcb;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.nuestros-cursos > .contenedor-producto-curso:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgb(0 0 0 / 50%);
}

.precio {
  font-size: 1.5em;
  color: #cea135;
}

.anterior {
  text-decoration: line-through;
  color: #cbcbcb;
}

.boton-compra {
  background-color: #cea135;
  color: rgb(17 17 37);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
}

a {
  text-decoration: none;
}

.boton-compra:hover {
  background-color: #e6c28a;
}

img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.descripcion {
  font-size: 1em;
  color: #cbcbcb;
  text-align: center;
  margin: 10px 0;
}
