.banner-inner {
  width: 100%;
  background-color: #f0f0f0;
  padding: 80px 0;
}

.banner-inner-header {
  border-bottom: 1px solid #ccc;
}

.icon-box {
  width: 40px;
  height: 40px;
  background-color: #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.2rem;
}

.title-main {
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0;
}

.title-sub {
  font-family: 'Roboto Slab', serif;
  font-weight: 200;
  font-size: 1.2rem;
  margin: 0;
}

.btn-products {
  background-color: #900;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.banner-inner-slider {
  position: relative;
  overflow: hidden;
}

.inner-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.inner-slide {
  min-width: 100%;
  display: none;
}

.inner-slide.active {
  display: block;
}

.inner-slide-content {
  display: flex;
  gap: 20px;
  padding: 30px 0;
}


/* Estado inicial */
.slide-image,
.slide-aside {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.8s ease-out;
}



.slide-image img {
  width: 730px;
  height: 476px;
  object-fit: cover;
}

.slide-image {
  transform: translateX(-80px);
}


.slide-aside {
  transform: translateX(80px);
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 476px;
  max-height: 476px;
  overflow: hidden;
}

/* Animações ativadas */
.animate-slide-left {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 1;
  transform: translateX(0);
}



.aside-item {
  flex: 1;
  height: calc(381px / 4); /* divide os 4 itens igualmente */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #ccc;
  transition: background-color 0.3s ease;
  cursor: pointer;
}


.aside-item:hover {
  background-color: #eaeaea;
}


.aside-title {
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.aside-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  margin: 0;
  color: #555;
}

.aside-button {
  height: 95px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ccc;
}


.btn-details {
  width: 100%;
  height: 100%;
  background-color: #900;
  color: #fff;
  border: none;
  font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex; /* ou flex se for block */
  align-items: center;  /* centraliza verticalmente */
  justify-content: center; /* centraliza horizontalmente */
  text-decoration:none;
}

  .btn-details i{ margin-left: 14px; }

.btn-details:hover {
  background-color: #b00;
}


.inner-prev, .inner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.inner-prev { left: 10px; }
.inner-next { right: 10px; }