/* =========================================================
   Layout — estruturas de página reaproveitadas entre seções.
   ========================================================= */
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 94px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.section-head p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

/* Faixa de posicionamento entre o hero e os serviços. */
.philosophy {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
}

.philosophy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
}

.philosophy strong {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: .04em;
}

.philosophy strong span {
  color: var(--gold-2);
}

.philosophy p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
}

@media (max-width: 920px) {
  .section-head,
  .philosophy-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }
}
