.sec-hero {
  display: grid;
  grid-gap: 30px;
  padding: 20px 0;
  align-items: center;
}
.sec-hero__item-imagen {
text-align: center;
  
}
.sec-hero__item-imagen img {
  width: 90%;
  
}
.sec-hero__item-imagen img:hover {
  transform: translateY(-10px);
  transition: all ease-in-out 0.3s;
}
@media (min-width: 768px) {
  .sec-hero {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 0;
  }
}
.sec-hero__titulo {
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}
.sec-hero__sub-titulo {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 5px;
  text-align: center;
}
.sec-hero__parrafo {
  text-align: center;
  margin-bottom: 20px;
}

.sec-hero__titulo .sec-hero__titulo--enfasis {
  font-size: 3rem;
  color: var(--color-amarillo);
}
.sec-hero__titulo .sec-hero__titulo--enfasis.bloque {
  display: block;
}
@media (min-width: 768px) {
  .sec-hero__titulo {
    font-size: 4rem;
    text-align: left;
  }
  .sec-hero__sub-titulo {
    font-size: 2rem;
    text-align: left;
  }
  .sec-hero__parrafo {
    text-align: left;
    margin-bottom: 30px;
  }
  
  .sec-hero__titulo .sec-hero__titulo--enfasis {
    font-size: 4rem;
  }
  .sec-hero__titulo .sec-hero__titulo--enfasis.bloque {
    display: block;
  }
}
/* SECCION ACIONES**/
.sec-producto__acciones {
  display: grid;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (min-width: 310px) {
  .sec-producto__acciones {
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 768px) {
  .sec-producto__acciones {
    grid-template-columns: repeat(2, auto);
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .sec-producto__item-imagen.order {
    order: -1;
  }
}
