@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&display=swap');


:root {
  --custom-primary: #e32c2b;
  --font-family: 'Jost', var(--bs-font-sans-serif);
}

html, body {
  font-family: var(--font-family);
  font-weight: 300; 
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
}

p, li {
  font-weight: 300;
}


.btn-custom-primary {
  background-color: var(--custom-primary);
  border-color: var(--custom-primary);
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}


.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner .hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-banner .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.hero-banner {
  margin-bottom: 0; 
}


.section-diferenciais {
  background-color: #f6f6f6;
  padding-bottom: 100px; 
  margin-bottom: 80px;   
}


.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

/* Track que anda infinitamente */
.carousel-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 55s linear infinite;
}

.diferencial-item {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
}

.diferencial-item img {
  width: 80px;
  margin-bottom: 12px;
}

.diferencial-item span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

@media (min-width: 992px) {
  .diferencial-item {
    width: 22vw; /* 4 por tela */
  }
}


@media (max-width: 991px) {
  .diferencial-item {
    width: 80vw; 
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-publico {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}


.publico-item {
  flex: 0 0 auto;
  width: 260px; 
  text-align: center;
}


.publico-item img {
  width: 100%;
  max-width: 220px; 
  height: auto;
  margin-bottom: 18px;
}


.publico-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

@media (min-width: 992px) {
  .publico-item {
    width: 22vw;
  }

  .publico-item img {
    max-width: 260px; 
  }
}


@media (max-width: 991px) {
  .publico-item {
    width: 80vw;
  }

  .publico-item img {
    max-width: 300px; 
  }
}

.section-beneficios {
  background-color: #f6f6f6;
  padding-top: 80px;
  padding-bottom: 80px;
}

.beneficios-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beneficios-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.beneficios-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e32c2b;
  font-weight: 700;
  font-size: 18px;
}

.section-ajuda {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.lista-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-checks li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 18px;
}

.lista-checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e32c2b;
  font-weight: 700;
}

.btn-atacado {
  background-color: #e32c2b;
  border: 2px solid #e32c2b;
  color: #fff;
  font-weight: 500;
  padding: 14px 28px;
  transition: all 0.25s ease;
}

.btn-atacado:hover,
.btn-atacado:focus {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.section-cta {
  position: relative;
  padding: 120px 0;
  color: #fff;
  text-align: center;
  overflow: hidden; /* garante que a imagem não “vaze” */
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* overlay escuro */
  z-index: 1;
}

.section-cta .cta-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* fica atrás do overlay e do conteúdo */
}

.section-cta .cta-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-cta .container {
  position: relative;
  z-index: 2; /* garante que o conteúdo fique acima da imagem e overlay */
}

.section-cta h2 {
  font-weight: 600;
}

.section-cta p {
  max-width: 820px;
  margin: 0 auto;
}

.btn-cta {
  background-color: #e32c2b;
  border-color: #e32c2b;
  color: #fff;
  padding: 14px 36px;
  transition: all 0.2s ease-in-out;
}

.btn-cta:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}


.footer-zaff {
  background-color: #f0f0f0;
  padding: 30px 0 24px; 
}

.footer-logo {
  height: 40px; 
  margin-bottom: 14px;
}

.footer-links {
  gap: 20px;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 13px;
}


.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #e32c2b;
}

.footer-copy {
  font-size: 14px;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {

  
  .footer-zaff {
    padding: 20px 0 18px;
  }

  .footer-logo {
    height: 34px;
    margin-bottom: 10px;
  }

  .footer-links {
    gap: 14px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-copy {
    font-size: 12px;
    line-height: 1.4;
  }

}

@media (max-width: 768px) {

  
  .section-beneficios .row {
    flex-direction: column;
  }

  
  .section-beneficios .col-lg-6:last-child {
    order: -1;
    margin-bottom: 24px;
  }

  .section-beneficios .col-lg-6:first-child {
    order: 1;
    text-align: left;
  }

}

@media (max-width: 768px) {

  .section-porque-zafferano .row {
    flex-direction: column;
  }

  .section-porque-zafferano .col-lg-6:last-child {
    order: -1;
    margin-bottom: 24px;
  }

  .section-porque-zafferano .col-lg-6:first-child {
    order: 1;
  }

}

/* ================= DEPOIMENTOS ================= */

.section-depoimentos {
  background-color: #f6f6f6;
  text-align: center;
}

.section-depoimentos h2 {
  font-weight: 500;
}

.section-depoimentos p {
  color: #555;
}

.depoimentos-swiper {
  padding-bottom: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.depoimento-card {
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 14px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.depoimento-card p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #000;
}

.depoimento-card strong {
  display: block;
  font-weight: 500;
  color: #000;
}

.depoimento-card span {
  font-size: 14px;
  color: #777;
}

/* Paginação */
.depoimentos-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
  background: #e32c2b;
}
