/* Containers */
.main-container {
  width: 100%;
  max-width: 1534px;
}

.secondary-container {
  width: 100%;
  max-width: 1276px;
}

/* Bullets do Swiper  */
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: #602689 !important;
  opacity: 100 !important;
}

.swiper-pagination-bullet-active {
  background-color: #9f5ecd !important;
}

/* gradiente componente infra */
.gradient-infra {
  background: linear-gradient(
    180deg,
    rgba(135, 54, 193, 0) 80.77%,
    #2f3538 100%
  );
}

/* gradiente diferenciais */
.img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(135, 54, 193, 0.3) 0%,
      rgba(135, 54, 193, 0.3) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-wrapper:hover::after {
  opacity: 1;
}

/* classes publicador - ocultar conteúdo */
.mercado .box-container,
.mercado h2,
.mercado p em{
  display: none;
}

.mercado h2.title-mercado{
  display: block !important;
}

/* Setas swiper pagination */
.swiper-button-next::after, 
.swiper-button-prev::after {
  display: none;
}

.swiper-button-disabled {
  opacity: 100 !important;
  background-color: #D7D5DA;
}

.swiper-button-disabled svg {
  color: #7D7887;
}

@media (max-width: 45rem) {
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
  }
}