/* ========================================
   COMPONENTES DE SEÇÃO (compartilhado)
   ======================================== */

.section-head {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head.is-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head.is-center .eyebrow {
  justify-content: center;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: #5a5a5a;
  margin: 0;
}

/* Variações de fundo para alternância de seções */
.bg-light {
  background: linear-gradient(180deg, #faf8f6 0%, #f6f1ec 100%);
}

.bg-white {
  background: #fff;
}

/* Animações de reveal (refinadas) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger para grupos (cards, infos) */
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
