/* ============================================================
   3.5 Paralax section — short full-bleed breather between
   Problema and Solução. Reuses hero-background.webp with a
   darker scrim + centered quote, same parallax pattern as
   Hero (§1) / CTA final (§13).
   ============================================================ */

.paralax-section {
  position: relative;
  min-height: 20svh;
  padding-block: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--color-bg-inverted);
}

.paralax-section__media {
  position: absolute;
  inset: 0;
  z-index: var(--z-hero-media);
  will-change: transform;
}

.paralax-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
}

.paralax-section__scrim {
  position: absolute;
  inset: 0;  
  z-index: var(--z-hero-scrim);
  background: linear-gradient(180deg, rgba(15, 41, 66, 0.72) 0%, rgba(15, 41, 66, 0.6) 50%, rgba(15, 41, 66, 0.72) 100%);
}

.paralax-section__content {
  position: relative;
  z-index: var(--z-hero-content);
  text-align: center;
}

.paralax-section__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1rem, 1.3rem + 2.2vw,2rem);
  line-height: var(--leading-snug);
  color: var(--color-white);
  max-width: 70%;
  margin-inline: auto;
}

.paralax-section__quote .highlight{
  color: var(--color-accent-secondary);
  font-weight: 700;
}

.paralax-section__quote .highlight:last-child{
  color: var(--color-accent-primary);
  
}

.paralax-section__quote::before,
.paralax-section__quote::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-inline: auto;
  background: var(--color-accent-secondary);
  border-radius: var(--radius-pill);
}

.paralax-section__quote::before {
  margin-bottom: var(--space-6);
}

.paralax-section__quote::after {
  margin-top: var(--space-6);
}

@media (max-width: 639px) {
  .paralax-section {
    min-height: 0;
    padding-block: var(--space-7);
  }

  .paralax-section__quote {
    max-width: 26ch;
    font-size: clamp(0.95rem, 0.8rem + 2vw, 1.3rem);
  }
}
