/* =====================================================================
   SOBRE — réplica exata do layout do Figma (conteúdo | imagem)
   Container: flex · gap 64px · align center
   ===================================================================== */
.about { background: linear-gradient(var(--black), var(--black-soft)); }

/* título maior apenas na Sobre (sem afetar as demais sections) */
.about .section-title { font-size: clamp(2.6rem, 6vw, 4.6rem); }

.about-inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 4.5vw, 64px);
}

/* ---- Coluna esquerda: conteúdo (flex column, gap 22px) ---- */
.about-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  text-align: left;
}

/* zera margens herdadas — o espaçamento vem do gap do flex */
.about-content .section-desc {
  margin: 0;
  font-size: 21px;
  line-height: 1.55;
  max-width: 600px;
}
.about-text {
  margin: 0;
  color: var(--gray);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
}

/* ---- Highlights: linha horizontal (3 colunas de 150px) ---- */
.about-highlights {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0;
  padding-block: 8px;
}
.about-highlights li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 168px;
  padding-left: 0;
  border-left: none;
}
.about-highlights strong {
  font-family: var(--font);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--gold-bright);
  white-space: nowrap;
}
.about-highlights span {
  color: var(--gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

/* ---- Coluna direita: imagem em retrato (círculo vermelho já no PNG) ---- */
.about-image {
  flex: 0 0 auto;
  position: relative;
  width: clamp(400px, 44vw, 560px);
  height: clamp(540px, 66vh, 680px);
  overflow: hidden;
}
.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .about-inner { flex-direction: column; align-items: stretch; }
  .about-content { align-items: flex-start; }
  .about-highlights { justify-content: flex-start; }
  .about-image {
    width: 100%;
    max-width: 520px;
    height: clamp(460px, 78vw, 620px);
    align-self: center;
  }
}
