.index-page {
  --color-primary: #F83434;
  --color-secondary: #74E221;
  --white: #fff;
  --black: #1d1d1d;
  --font-family: "Poppins", sans-serif;
  --min-width: 1101px;
  --max-width: 1100px;
}

/* BANNER PRINCIPAL */
.main-banner {
  .swiper {
    overflow: visible;
  }
  .swiper-button-prev{
    left: 20px;
  }
  .swiper-button-next{
    right: 20px;
  }
}
.main-banner-desktop .swiper-slide{
  min-height: 400px;
}
@media (max-width: var(--max-width)) {
  .main-banner-desktop {
    display: none;
  }
}
@media (min-width: var(--min-width)) {
  .main-banner-mobile {
    display: none;
  }
  .main-banner .swiper-button {
    width: 80px;
    height: 80px;
  }
}

/* BANNER VANTAGENS */
.new-benefits-box {
  overflow-y: hidden;
  margin-top: 55px !important;
  a.item {
    max-width: fit-content;
    img {
      max-height: 63px;
    }
  }
  .swiper-wrapper {
    display: flex;
  }
}
@media (max-width: var(--max-width)) {
  .new-benefits-box {
    padding: 0;
  }
}
@media (min-width: var(--min-width)) {
  .new-benefits-box {
    margin-top: 70px !important;
  }
}

/* SEÇÃO DE PROMOÇÃO */
.bg-promotion {
  width: 100%;
  min-height: fit-content;
  padding-block: 10px;
  background-color: var(--color-primary);
  margin-top: 100px;
  .promotion-banner {
    margin-bottom: 15px;
    .promotion-banner__title {
      display: flex;
      font-size: 32px;
      text-transform: capitalize;
      justify-content: center;
      font-weight: 600;
      width: 100%;
      color: var(--white);
      margin: 0;
      margin-bottom: 32px;
      .promotion-banner__title__text {
        font-weight: 600;
        margin: 0;
        color: var(--white) !important;
        font-size: 32px !important;
        text-transform: capitalize !important;
      }
    }
  }
  .swiper-pagination-bullet {
    background-color: var(--white);
  }
  .swiper-pagination .swiper-pagination-bullet-active-main {
    background-color: var(--white);
  }
  .autoplay-progress {
    color: var(--white);
    svg {
      stroke: var(--white);
    }
  }
}
@media (max-width: var(--max-width)) {
  .bg-promotion {
    padding-block: 5px;
    background-size: cover;
  }
  .promotion-banner__title__text {
    font-weight: 500;
  }
}

/* SEÇÃO DE BANNER E SEÇÃO DE PRODUTO */
.section-banner-listProd {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 30px;
  margin-bottom: 100px;
  .banner-middle {
    position: relative;
    width: 100%;
    overflow: clip visible;
    .swiper {
      overflow: clip visible;
    }
    img {
      max-height: 720px;
      width: 100%;
      border-radius: 5px;
      max-width: 90vw;
    }
    a.item {
      max-width: 100%;
    }
  }
  .new-product-list2 {
    .new-product-list__header {
      display: none;
    }
    .carousel-default-swiper {
      overflow: clip visible;
      .new-product-inner {
        max-width: 250px;
      }
    }
  }
}
@media (max-width: 1130px) {
  .section-banner-listProd {
    grid-template-columns: 100%;
    grid-template-rows: minmax(0, max-content) 1fr;
    gap: 60px;
    margin-bottom: 60px;
    .banner-middle a.item img{
      height: 100%;
    }
  }
}

/* BLOG */
.blog-home {
  padding-bottom: 50px;
  .swiper {
    overflow: clip visible;
  }
  .autoplay-progress {
    top: 100%;
  }
  .blog-home--content .recent-blog-post__container {
      width: 100%;
  }
  .blog-home--title {
    color: var(--black);
    font-weight: 600;
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
  }
}

/* INSTAGRAM */
.instagram-section {
  margin-top: 50px;
  margin-bottom: 110px;
  padding: 0;
  .instagram {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .instagram-title {
    text-transform: capitalize;
    display: flex;
    margin: 0;
    margin-bottom: 20px;
    font-size: 32px;
    justify-content: center;
    font-weight: 600;
    width: 100%;
    color: var(--black);
  }
  .instagram-container a.instagram {
    video {
      width: 100%;
    }
    video, img {
      object-fit: cover;
      aspect-ratio: 1;
    }
  }
}
@media (max-width: var(--max-width)) {
  .instagram-section {
    margin-top: 30px;
}
}
@media (min-width: var(--min-width)) {
  .instagram-section .instagram {
    min-width: 380px;
  }
}
@media (min-width: 1700px) {
  .instagram-section .instagram {
    min-width: 430px;
  }
}