/* ─── LAYOUT BASE DE SEÇÕES ─── */
section {
  padding: 100px 40px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── LABEL DE SEÇÃO ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-bright);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
}

/* ─── TÍTULO DE SEÇÃO ─── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-wrap: balance;
}

/* ─── SUBTÍTULO DE SEÇÃO ─── */
.section-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 580px;
  line-height: 1.7;
}
