/* ═══════════════════════════════════════════════
   SECTIONS  ·  Layout compartilhado entre seções
   Portal da Conexão
   ═══════════════════════════════════════════════ */

section {
  position: relative;
  overflow-x: hidden; /* clipa overflow horizontal sem afetar position:sticky do header */
}

/* ─── Padding padrão de seção ─── */
.section-pad { padding: 100px 0; }

@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 52px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 36px); }
  .section-head .lead { font-size: 15px; }
}

/* ─── Cabeçalho de seção centralizado ─── */
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.015em;
  margin-top: 16px;
}

.section-head h2 em {
  font-style: normal;
  color: var(--terra);
  font-weight: 700;
}

.section-head .lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ─── Divisor decorativo com folha ─── */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--sage-deep);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.divider-leaf hr {
  flex: 1;
  border: none;
  border-top: 1px solid var(--line);
}

.divider-leaf--mb {
  margin-bottom: 60px;
}
