/* Container principal do carrossel */
.banner-carousel-wrapper {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-carousel-container {
  position: relative;
  width: 100%;
  height: 268px;
  overflow: hidden;
}

.banner-carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease-in-out;
}

.banner-carousel-item {
  flex: 0 0 auto;
  height: 268px;
}

/* Setas de navegação */
.banner-carousel-arrow {
  background-color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  padding: 6px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-carousel-arrow:hover:not(:disabled) {
  transform: scale(1.2);
}

.banner-carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.banner-carousel-arrow:disabled i {
  color: #A0A0A0;
}

.banner-carousel-arrow-left {
  /* Posicionamento será feito no container dos indicadores */
}

.banner-carousel-arrow-right {
  /* Posicionamento será feito no container dos indicadores */
}

.banner-carousel-arrow i {
  font-size: 12px;
  color: #483F59;
  font-weight: bold;
}

/* Indicadores (dots) */
.banner-carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.banner-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #633292;
  opacity: 0.3;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.banner-carousel-dot:hover {
  opacity: 0.5;
  transform: scale(1.2);
}

.banner-carousel-dot-active {
  background-color: #633292;
  opacity: 1;
  width: 8px;
  height: 8px;
}

/* Banner Tipo 1 - Composto */
.banner-type1-container {
  width: 500px;
  height: 268px;
  padding: 32px 30px 30px 26px;
  border-radius: 7.36px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  background: linear-gradient(180deg, #633292 0%, #1E0F2C 100%);
}

.banner-type1-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
  height: 100%;
}

.banner-type1-text {
  flex: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}

.banner-type1-title {
  width: 263px;
  height: 154px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 107%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin: 0 0 12px 0;
  text-align: left;
  position: absolute;
  top: 32px;
  left: 26px;
  opacity: 1;
}

.banner-type1-description {
  width: 209px;
  height: 68px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 123%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  text-align: left;
  position: absolute;
  top: 118px;
  left: 26px;
  opacity: 1;
}

.banner-type1-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 212px;
  height: 34px;
  background-color: #21E3A3;
  color: #1A1A1A;
  text-decoration: none !important;
  border-radius: 68px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 19.92px;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  align-self: flex-start;
  position: absolute;
  bottom: 30px;
  left: 26px;
}

.banner-type1-button:hover {
  background-color: #1DD396;
  text-decoration: none !important;
  color: #1A1A1A;
}

.banner-type1-button:focus,
.banner-type1-button:active,
.banner-type1-button:visited {
  text-decoration: none !important;
  color: #1A1A1A;
}

.banner-type1-image {
  flex: 0 0 auto;
  position: relative;
  width: 220px;
  height: 180px;
}

.banner-type1-image img {
  position: absolute;
  display: block;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
  object-fit: contain;
}

.banner-image-top {
  width: 155px;
  height: 67px;
  top: 0;
  right: 0;
  z-index: 2;
}

.banner-image-bottom {
  width: 155px;
  height: 67px;
  top: 50px;
  right: 50px;
  z-index: 1;
}

.banner-image-single {
  background-color: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

/* Animação do foguete no banner type1 */
.rocket-animation-type1-container {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 176px;
  height: 200px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}

/* Banner Tipo 2 - Imagem simples */
.banner-type2-container {
  width: 500px;
  height: 268px;
  border-radius: 7.36px;
  overflow: hidden;
}

.banner-type2-link {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-type2-image {
  width: 500px;
  height: 268px;
  display: block;
  border-radius: 7.36px;
  object-fit: cover;
}

.banner-type2-link:hover .banner-type2-image {
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

/* Banner Reclame Aqui */
.banner-reclame-aqui-container {
  width: 395px;
  height: 268px;
  border-radius: 11px;
  overflow: hidden;
}

.banner-reclame-aqui-link {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-reclame-aqui-image {
  width: 395px;
  height: 268px;
  display: block;
  object-fit: cover;
}

/* Banner Upsell com animação de foguete */
.banner-upsell-container {
  width: 500px;
  height: 268px;
  border-radius: 7.36px;
  overflow: hidden;
  position: relative;
}

.banner-upsell-image {
  width: 500px;
  height: 268px;
  display: block;
  border-radius: 7.36px;
  object-fit: cover;
}

.rocket-animation-container {
  position: absolute;
  right: -5px;
  bottom: 10px;
  width: 176px;
  height: 220px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}

