.section-information {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.article-promotion > .info {
  margin-top: 90px;
  width: 100%;
  padding-inline: 1rem;
  padding-block: 1rem 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.article-promotion > .info > h6 {
  font: normal 500 15px/1.2 'Poppins';
  color: #003c82;
  text-transform: uppercase;
  transform: translateX(-1.5rem);
  opacity: 0;
  animation: fadeIn ease-out 0.7s forwards;
}

.article-promotion .shape {
  position: relative;
  top: 2px;
  width: 25px;
  height: 1px;
  background: #003c82;
}

.article-promotion > h3 {
  padding-inline: 1rem;
  font: normal 500 28px/1.2 'Poppins';
  transform: translateX(-1.5rem);
  opacity: 0;
  animation: fadeIn ease-out 0.7s 0.2s forwards;
}

.article-promotion > .buttons-container {
  margin-top: 2rem;
  padding-inline: 1rem;
  display: flex;
  gap: 1rem;
}

.article-promotion > .buttons-container > .menu-list-item {
  background: var(--color-secundario);
  gap: 0.5rem;
}

/* .article-promotion > .buttons-container > .menu-list-item > span { */
/*    font-weight: 600; */
/* } */

@keyframes fadeIn {
  from {
    transform: translateX(-1.5rem);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

#slider-container {
  width: 100%;
  display: flex;
  margin-bottom: 6rem;
  overflow-x: auto;
}

#slider-container::-webkit-scrollbar {
  height: 0;
}

.slider-item {
  flex: 0 0 100%;
  width: 100%;
  padding: 1rem;
}

.slider-overlay {
  width: 100%;
  min-height: 400px;

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* .slider-item-price {
  max-width: 6rem;
  width: 100%;
  background-color: var(--color-primario);
  border-radius: 10px 0px 10px 0px;
  display: flex;
  align-items: flex-start;
  padding: 0.7rem 0.5rem;
} */

.slider-item-price > span {
  width: 100%;
  font: normal 600 18px/21px 'Poppins';
  color: #35363a;
  text-align: center;
}

.slider-item-label {
  color: var(--color-white);
  padding: 1rem 0.5rem;
  background: #35363a;
  border-radius: 10px 10px 0px 0px;
}

