/* ----------------- INTERNAL HERO ----------------- */

.internal-hero {

  position: relative;

  min-height: 82vh;

  display: flex;

  align-items: center;

  padding-top: 12rem;

  padding-bottom: 6rem;

  overflow: hidden;

}

/* ----------------- INTERNAL CONTENT ----------------- */

.internal-content {

  max-width: 860px;

}

.internal-content p {

  font-size: 1.05rem;

  line-height: 2;

}

/* ----------------- NARRATIVE SECTION ----------------- */

.narrative-section {

  max-width: 900px;

}

.narrative-section p {

  margin-bottom: 2.2rem;

  max-width: 820px;

  font-size: 1.06rem;

  line-height: 2.08;

  color: rgba(184,196,208,0.92);

}

/* ----------------- EMPHASIS ----------------- */

.narrative-section strong {

  color: var(--color-gold-light);

  font-weight: 600;

}

/* ----------------- LARGE SECTION SPACING ----------------- */

.editorial-section {

  padding-block: 4rem;
    /*clamp(7rem, 12vw, 11rem);*/

}

/* ----------------- FEATURE GRID ----------------- */

.feature-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 2.5rem;

  margin-top: 5rem;

}

/* ----------------- FEATURE CARD ----------------- */

.feature-card {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

}

/* ----------------- FEATURE TITLE ----------------- */

.feature-card h3 {

  font-size:
    clamp(1.8rem, 3vw, 2.4rem);

  line-height: 1.1;

}

/* ----------------- AUDIENCE LIST ----------------- */

.audience-list {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  margin-top: 4rem;

}

.audience-item {

  display: flex;

  gap: 1.5rem;

  align-items: flex-start;

}

.audience-item span {

  color: var(--color-gold);

  letter-spacing: 0.18em;

  font-size: 0.75rem;

}

/* ----------------- FINAL CTA ----------------- */

.final-cta {

  text-align: center;

  max-width: 920px;

  margin-inline: auto;

}

.final-cta p {

  margin-bottom: 3rem;

  font-size: 1.08rem;

}

.final-cta::after {

  display: none;

}

/* ----------------- INTERNAL PAGE ATMOSPHERE ----------------- */

.internal-hero::before {

  content: '';

  position: absolute;

  top: -20%;

  left: -10%;

  width: 900px;

  height: 900px;

  border-radius: 50%;

  background:

    radial-gradient(
      circle,
      rgba(201,168,76,0.05),
      transparent 72%
    );

  filter: blur(100px);

  pointer-events: none;

}

.internal-hero::after {

  content: '';

  position: absolute;

  bottom: -25%;

  right: -10%;

  width: 800px;

  height: 800px;

  border-radius: 50%;

  background:

    radial-gradient(
      circle,
      rgba(30,51,80,0.28),
      transparent 72%
    );

  filter: blur(120px);

  pointer-events: none;

}


/* ----------------- EDITORIAL QUOTE ----------------- */

.editorial-quote {

  position: relative;

  max-width: 980px;

  margin-inline: auto;

  padding:
    clamp(3rem, 5vw, 5rem);

  border:
    1px solid rgba(201,168,76,0.10);

  background:

    linear-gradient(
      180deg,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.015)
    );

  overflow: hidden;

}

.editorial-quote::before {

  content: '';

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:

    linear-gradient(
      90deg,
      transparent,
      rgba(201,168,76,0.25),
      transparent
    );

}

.editorial-quote blockquote {

  font-family: var(--font-heading);

  font-size:
    clamp(2.2rem, 4vw, 4rem);

  line-height: 1.08;

  letter-spacing: -0.03em;

  color: var(--color-white);

}

.editorial-quote cite {

  display: block;

  margin-top: 2rem;

  color: var(--color-gold);

  font-style: normal;

  font-size: 0.72rem;

  letter-spacing: 0.18em;

  text-transform: uppercase;

}


/* ----------------- SECTION DIVIDER ----------------- */

.editorial-section {

  position: relative;

}

.editorial-section::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: min(220px, 30vw);

  height: 1px;

  background:

    linear-gradient(
      90deg,
      transparent,
      rgba(201,168,76,0.12),
      transparent
    );

}


/* ----------------- FLOATING AMBIENT ----------------- */

.internal-hero::before,
.internal-hero::after {

  animation:
    ambientFloat 18s ease-in-out infinite;

}

.internal-hero::after {

  animation-delay: 4s;

}

@keyframes ambientFloat {

  0% {

    transform:
      translate3d(0,0,0)
      scale(1);

  }

  50% {

    transform:
      translate3d(0,-18px,0)
      scale(1.03);

  }

  100% {

    transform:
      translate3d(0,0,0)
      scale(1);

  }

}


/* ----------------- LONG READ RHYTHM ----------------- */

.editorial-section {

  scroll-margin-top: 160px;

}


/* ═══════════════════════════════
   PROCESS FLOW — fluxo de etapas
═══════════════════════════════ */
.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: var(--border-gold-soft);
  position: relative;
}

.process-step:last-child {
  border-bottom: none;
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.55;
}

.process-step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.process-step__content h3 em {
  color: var(--color-gold-light);
  font-style: italic;
}

.process-step__content p {
  color: var(--color-gray-light);
  font-family: var(--font-body);
  font-size: 0.975rem;
  line-height: 1.75;
  max-width: 640px;
}

.process-step__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    padding: 1.75rem 0;
  }

  .process-step__number {
    font-size: 2rem;
  }

  .process-step__content h3 {
    font-size: 1.25rem;
  }
}