.sec-hero {
  display: grid;
  grid-gap: 30px;
  padding: 20px 0;
  align-items: center;
}

/* Animación de entrada solo para la imagen */
.sec-hero__item-imagen {
  animation: slideInRight 0.8s ease-out 0.2s both;
}
.sec-hero__item-imagen {
text-align: center;
  
}
.sec-hero__item-imagen img {
  width: 90%;
  
}
.sec-hero__item-imagen img {
  transition: all 0.3s ease;
}

.sec-hero__item-imagen img:hover {
  transform: translateY(-10px) scale(1.02);
}
@media (min-width: 768px) {
  .sec-hero {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 0;
  }
}
.sec-hero__titulo {
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
.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-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 400;
}

.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: 5rem;
    text-align: left;
  }
  .sec-hero__sub-titulo {
    font-size: 2rem;
    text-align: left;
  }
  .sec-hero__parrafo {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
  }
  
  .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;
  }
}

/* Definición de keyframes para las animaciones */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación de hover mejorada para botones */
.sec-producto__acciones .boton {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.sec-producto__acciones .boton:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

