/* ============================================================
   ESTILOS DA PÁGINA "SOBRE NÓS" (sobre.html)
   ============================================================ */

.sobre-intro { padding: 50px 0 10px; max-width: 720px; }
.sobre-tag { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--cor-borda); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; color: var(--cor-venda); margin-bottom: 18px; }
.sobre-tag .ponto { width: 8px; height: 8px; border-radius: 50%; background: var(--cor-venda); }
.sobre-intro h1 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 16px; }
.sobre-intro h1 .azul { color: var(--cor-azul); }
.sobre-intro p { color: var(--cor-texto-suave); }

/* ---------------- Seção do fundador ---------------- */
.fundador-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  padding: 40px;
  margin: 50px 0;
}
.fundador-foto-wrap { position: relative; width: 100%; }
.fundador-foto-wrap::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 100%; height: 100%;
  background: var(--cor-destaque);
  border-radius: var(--raio);
  z-index: 0;
}
.fundador-foto {
  position: relative;
  z-index: 1;
  aspect-ratio: 217 / 524;
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  background: #f3ead6;
}
.fundador-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }

.fundador-texto h2 { font-size: 1.5rem; margin: 12px 0 16px; }
.fundador-texto p { color: var(--cor-texto); margin-bottom: 14px; line-height: 1.75; }
.fundador-assinatura { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--cor-borda); }
.fundador-assinatura strong { display: block; font-size: 1.05rem; }
.fundador-assinatura span { color: var(--cor-texto-suave); font-size: 0.88rem; }

@media (max-width: 860px) {
  .fundador-section { grid-template-columns: 1fr; padding: 26px; }
  .fundador-foto-wrap { max-width: 220px; margin: 0 auto; }
}

/* ---------------- Cards de valores ---------------- */
.valores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 10px 0 70px; }
.valor-card { background: #fff; border-radius: var(--raio); box-shadow: var(--sombra); padding: 28px; text-align: center; }
.valor-card .valor-icone { font-size: 2rem; display: block; margin-bottom: 12px; }
.valor-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.valor-card p { color: var(--cor-texto-suave); font-size: 0.9rem; }
@media (max-width: 760px) { .valores-grid { grid-template-columns: 1fr; } }
