/* aniversario css */

.main-section-base-banner{
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-section-aniversario{
  background-image: url(../images/banner-black-friday.png);
}

.NatalBanner{
  background-image: url(../images/special-banners/natal-banner-desktop.webp);
}

.AnoNovoBanner{
  background-image: url(../images/special-banners/anonovo-desktop-main.webp);
}

.main-section-container{
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}

.main-section-content{
  max-width: 650px;
}

.main-section-title{
  color: #FFF;
  font-family: 'Ubuntu';
  font-size: 48px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

.main-section-paragraph{
  color: #FFF;
  font-family: 'Ubuntu';
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 32px;
}

.primary-main-button{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #0F6E14;
  fill: #0F6E14;
  width: 280px;
  height: 60px;
  border-radius: 8px;
  font-family: 'Ubuntu';
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

.primary-main-button:hover {
  transform: scale(0.97);
  box-shadow: 4px 8px 8px #1b1b1b3a;
}

.linha-divisoria {
  background-image: url(../images/borda-slider.png);
  background-size: cover;
  height: 20px;
  width: 100%;
}


.main-section-special-banner{
  background-image: url(../images/special-banners/bf-deskop-main.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  height: 70vh;
  max-height: 732px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.full-bg-link{
  height: 100%;
  width: 100%;
}


@media only screen and (max-width: 768px) {
  .main-section-container{
    width: 90%;
  }

  .main-section-title{
    font-size: 36px;
  }

  .main-section-paragraph{
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 744px) {
  .main-section-base-banner{
    height: 80vh;
  }

  .NatalBanner{
    background-image: url(../images/special-banners/natal-tablet-main.webp);
  }
  .AnoNovoBanner{
    background-image: url(../images/special-banners/anonovo-tablet-main.webp);
  }

}

@media only screen and (max-width: 469px) {
  .NatalBanner{
    background-image: url(../images/special-banners/natal-mobile-main.webp);
  }
  .AnoNovoBanner{
    background-image: url(../images/special-banners/anonovo-mobile-main.webp);
  }
}