/* =========================
   RESULTS (home + single service)
   ========================= */
.results-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: #b1322c; /* base */
}

/* imagem (multiply) */
.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(
    --results-img,
    url("/wp-content/uploads/2026/01/home-bnn-red.jpg")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* overlay escuro 30% */
.results-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* conteúdo acima */
.results-section .container-fluid {
  position: relative;
  z-index: 3;
  max-width: 1400px;
}

.results-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap:24px; */
}

.results-center {
  width: min(560px, 100%);
  text-align: center;
}

.results-pill {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  margin-bottom: 20px;
  color: #b1322c;
  text-align: center;
  font-family: var(--font-family-Font-3, Poppins);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 5.6px;
  text-transform: uppercase;
}

.results-amount {
  font-size: clamp(40px, 5.6vw, 70px);
  margin: 6px 0 6px;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.25);
  color: #fff;
  text-align: center;
  font-family: var(--font-family-Font-4, Cinzel);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.results-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  /* line-height:1.3em; */
  letter-spacing: 1px;
}

/* slider (no plugin): crossfade; active slide keeps the container height */
.results-slick {
  position: relative;
}
.results-slick .results-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.results-slick .results-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .results-slick .results-slide {
    transition: none;
  }
}

/* setas */
.results-arrow {
  appearance: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 10px 12px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.results-arrow:hover,
.results-arrow:focus {
  opacity: 1;
}

/* dots */
.results-dots {
  margin-top: 10px;
  text-align: center;
  line-height: 0;
}
.results-dot {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.results-dot:hover,
.results-dot:focus-visible {
  opacity: 0.85;
}
.results-dot.is-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .results-section {
    padding: 26px 0 20px;
  }
  .results-inner {
    gap: 10px;
  }
  .results-arrow {
    font-size: 22px;
    padding: 8px 8px;
  }
  .results-desc {
    font-size: 12px;
  }
}

/* single service: banda mais curta entre a CTA bar e o FAQ */
.results-section--service {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .results-section--service {
    padding: 26px 0 20px;
  }
}
