#hero-section {
  width: 100%;
  height: 740px;
  position: relative;
  overflow: hidden;
  background: #f7f5f3;
}

.hero-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.7s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.hero-slide-flex-Start {
  justify-content: flex-start;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide-um {
  background: url('../img/Hero_section_Sacolas.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-slide-um h1 {
  font-size: 64px;
  line-height: 64px;
  margin-bottom: 10px;
}

.hero-slide-dois {
  background: url('../img/Hero_section_frete_500.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide-tres {
  background: url('../img/Hero_section_1000.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 420px;
  margin-right: 10vw;
  display: flex;
  flex-direction: column;
}

.hero-slide-flex-Start .hero-content {
  margin: inherit;
  margin-left: 10vw;
}


.hero-label {
  color: var(--cor-blue-light);
  font-size: 16px;
  font-weight: var(--medium);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-content h2 {
  color: var(--cor-blue);
  font-size: var(--font-Title-hero);
  font-weight: var(--bold);
  line-height: 1.1;
}

.hero-content p {
  color: var(--cor-grey);
  font-size: var(--font-normal);
  font-weight: var(--regular);
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  padding: 10px 0;
  border: 2px solid var(--cor-blue-light);
  color: var(--cor-blue-light);
  background: transparent;
  border-radius: 32px;
  font-size: 18px;
  font-weight: var(--semi-bold);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
  text-align: center;
  max-width: 250px;
}

.hero-btn:hover {
  background: var(--cor-blue-light);
  color: #fff;
}

.hero-btn-dois {
  display: inline-block;
  background-color: #068b5b;
  padding: 14px 38px;
  max-width: 300px;
  width: max-content;
  color: white;
  border-radius: 32px;
  font-size: 18px;
  font-weight: var(--semi-bold);
  letter-spacing: 1px;
  transition: 0.2s;
  text-align: center;
}

.hero-btn-dois:hover {
  transform: scale(1.1);
}

.hero-btn-tres {
  background-color: #C16A2C;
  color: white;
}

.hero-btn-banner:hover {
  background: #d41b50;
  color: #fff;
}

.hero-btn-papelaria {
  display: inline-block;
  padding: 14px 38px;
  border: 2px solid white;
  color: white;
  background: transparent;
  border-radius: 32px;
  font-size: 18px;
  font-weight: var(--semi-bold);
  letter-spacing: 1px;
  transition: background 0.2s, color 0.2s;
  margin-top: 12px;
  text-align: center;
}

.hero-btn-papelaria:hover {
  background: white;
  color: #2E2B95;
}

.hero-slide-dois .hero-content {
  max-width: 540px;
}

.hero-slide-dois .hero-content h2 {
  font-size: 52px;
  color: black;
}

.hero-slide-dois .hero-content p {
  font-weight: 600;
  max-width: 450px;
  margin-bottom: 10px;
  color: #4014BE;
  font-size: 19px;
  line-height: 25px;
}

.hero-section-consulte-sua-cidade-frete-gratis {
  font-weight: 400 !important;
  color: rgb(77, 77, 77) !important;
  font-size: 12px !important;
  max-width: 240px !important;
  display: inline-block !important;
  text-align: center;
  margin-left: 15px;
  line-height: 18px !important;
}

.hero-dados-promocionais {
  margin-bottom: 20px;
  font-size: 16px;
}

.hero-section-btn-com-imagem {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-section-btn-com-imagem img {
  width: 60px;
  height: auto;
}

.hero-slide-tres .hero-content {
  max-width: 440px;
}

.hero-slide-tres .hero-content h2 {
  font-size: 50px;
  color: #C16A2C;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.hero-slide-tres .hero-content p {
  color: #000;
}


.hero-slide-papelaria .hero-content .hero-label,
.hero-slide-papelaria .hero-content h2,
.hero-slide-papelaria .hero-content p {
  color: white;
}



.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 32px;
  color: var(--cor-blue-light);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--cor-blue-light);
  color: #fff;
}

.hero-prev {
  left: 32px;
}

.hero-next {
  right: 32px;
}

.hero-indicators {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.hero-indicators span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: background 0.2s;
}

.hero-indicators span.active {
  background: var(--cor-blue-light);
}

.hero-slide-um .hero-content h1 {
  font-size: 3.4rem;
  line-height: 55px;
}
.hero-content h1 strong{
  font-size: 6.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100px;
 /* Gradiente no texto */
 background: linear-gradient(0deg, #ee943d, #ed744e);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 color: transparent;
}

.hero-detalhes-slide-um {
  color: black !important;
  line-height: 20px !important;
  font-size: 0.9rem !important;
  
}
.hero-detalhes-slide-um  b {
  color: var(--cor-blue);
  text-transform: uppercase;
}

.hero-btn-aparencia-zap {
  background-color: #b5e247;
  color: black;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  padding: 20px 0;
  transition: transform 0.3s;
  max-width: 340px;
  width: 90vw;
  margin: 0 auto;
}

.hero-btn-aparencia-zap:hover {
  transform: scale(1.1);
}

@media (max-width: 1340px) {
  .hero-slide-tres {
    background: url('../img/Hero_section_1000_1340px.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

}

@media (max-width: 1265px) {
  
  .hero-slide-um .hero-content h1 {
    font-size: 3rem;
  }
  .hero-slide-um .hero-content h1 strong {
    font-size: 6rem;
  }
}

@media (max-width: 1200px) {
  #hero-section {
    height: 700px;
  }

  .hero-content {
    margin-right: 7vw;
  }
  .hero-slide-um {
    background: url('../img/Hero_section_Sacolas_950px.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    margin-right: 3vw;
  }

  .hero-slide-tres {
    background: url('../img/Hero_section_1000_1024px.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

}


@media (max-width: 900px) {

  .hero-prev,
  .hero-next {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .hero-indicators {
    bottom: 16px;
    gap: 8px;
  }

  .hero-indicators span {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin: inherit;
    text-align: center;
    width: 80vw;
  }

  .hero-slide-dois .hero-content {
    margin: inherit;
    max-width: 430px;
    text-align: left;
  }

  .hero-slide-dois .hero-content h2 {
    font-size: 48px;
  }

  .hero-slide-dois .hero-content p {
    font-size: 17px;
  }

  .hero-slide-tres .hero-content {
    margin: inherit;
    text-align: left;
  }

  .hero-section-btn-com-imagem {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .hero-section-consulte-sua-cidade-frete-gratis {
    margin: 0 auto;
    max-width: max-content !important;
  }

  .hero-slide {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero-btn {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 320px;
    width: 80%;
    margin-top: 40px;
  }

  #hero-section {
    height: 990px;
  }

  .hero-slide-tres {
    background: url('../img/Hero_section_1000_tablet.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-slide-um {
    background: url('../img/Hero_section_Sacolas_tablet.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-slide-dois {
    background: url('../img/Hero_section_frete_500_tablet.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-slide-um .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 40px;
  }
  .hero-slide-um .hero-content h1 strong {
    justify-content: center;
  }
  .hero-detalhes-slide-um  {
    text-align: left;
  }
}

@media (max-width: 600px) {
  #hero-section {
    height: 930px;
  }

  .hero-slide-tres {
    background: url(../img/Hero_section_1000_tablet_600.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-slide-um .hero-content h1 {
    font-size: 2.2rem !important;
    max-width: 380px;
    margin: 0 auto;
    
  }
  .hero-slide-um .hero-content h1 strong {
    justify-content: center;
    font-size: 5rem;
  }

}

@media (max-width: 560px) {
  .hero-content {
    max-width: 375px;
  }

  .hero-btn {
    font-size: 16px;
  }

  .hero-prev,
  .hero-next {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .hero-prev {
    left: 9px;
  }

  .hero-next {
    right: 9px;
  }

  .hero-slide-dois .hero-content h2 {
    font-size: 42px;
  }

  .hero-dados-promocionais {
    font-size: 15px;
  }

}

@media (max-width: 530px) {
  .hero-slide-dois .hero-content h2 {
    font-size: 34px;
  }

  .hero-slide-tres {
    background: url(../img/Hero_section_1000_tablet_500.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-slide-dois .hero-content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .hero-dados-promocionais {
    font-size: 14px;
  }

  .hero-btn-dois {
    padding: 14px 20px;
  }

  .hero-slide-tres .hero-content h2 {
    font-size: 47px;
  }

  .hero-slide-um .hero-content h1 {
    font-size: 1.5rem !important;
    max-width: 300px;
    margin: 0 auto;
    line-height: 25px;

    
  }
  .hero-slide-um .hero-content h1 strong {
    justify-content: center;
    font-size: 4.6rem !important;
    height: 65px;
  }
  .hero-detalhes-slide-um {
    padding-top: 5px;
    text-align: center;
  }
  .hero-btn-aparencia-zap {
    width: 100%;
    font-size: 1.1rem;
  }
  .hero-slide-um {
    height: 800px;
  }
}

@media (max-width: 450px) {
  .hero-slide-dois {
    background: url('../img/Hero_section_frete_500_tablet_450.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 430px) {
  .hero-section-btn-com-imagem img {
    display: none;
  }

  .hero-section-consulte-sua-cidade-frete-gratis {
    max-width: 280px !important;
  }

  .hero-slide-tres .hero-content h2 {
    font-size: 39px;
  }

  #hero-section {
    height: 830px;
  }
}
@media (max-width: 414px) {
  .hero-slide-tres .hero-content h2 {
    font-size: 34px;
  }
  .hero-slide-um {
    height: 740px;
  }
}
@media (max-width: 410px) {
  .hero-slide-um {
    background: url('../img/Hero_section_Sacolas_tablet_400.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@media (max-width: 375px) {
  .hero-slide-tres {
    background: url(../img/Hero_section_1000_tablet_375.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }


  .hero-slide-tres .hero-content h2 {
    font-size: 35px;
  }

  #hero-section {
    height: 890px;
  }
  .hero-slide-um .hero-content h1 strong {
    font-size: 4.1rem !important;
  }
  .hero-detalhes-slide-um {
    font-size: 0.75rem !important;

  }
}

@media (max-width: 320px) {
  .hero-slide-tres .hero-content h2 {
    font-size: 30px;
  }

  #hero-section {
    height: 880px;
  }

  .hero-slide-dois .hero-content h2 {
    font-size: 34px;
  }
}


