/* ── HERO SOBRE ── */
.sobre-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 4rem 6rem;
  background: linear-gradient(160deg, var(--lilas-soft) 0%, var(--branco) 60%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sobre-hero::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--pessego-soft) 0%, transparent 70%);
  border-radius: 50%;
}
.sobre-hero-inner { max-width: 700px; position: relative; z-index: var(--z-base); }
.sobre-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.2; margin: 1rem 0 1.5rem;
}
.sobre-title em { font-style: italic; color: var(--lilas-deep); }
.sobre-sub {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--texto-suave); max-width: 560px;
  margin: 0 auto;
}

/* ── HISTÓRIA ── */
.historia { padding: 6rem 4rem; }
.historia-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.historia-p {
  font-size: 1rem; line-height: 1.8;
  color: var(--texto-suave); margin-bottom: 1.2rem;
}
.historia-p strong { color: var(--texto); }
.citacao-card {
  background: var(--lilas-soft);
  border-radius: 28px; padding: 3rem;
  position: relative;
}
.citacao-icon { font-size: 2rem; margin-bottom: 1rem; }
.citacao-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic;
  line-height: 1.6; color: var(--texto);
  margin-bottom: 1.5rem;
}
.citacao-autor {
  font-size: 0.85rem; font-weight: 700;
  color: var(--lilas-deep);
}

/* ── VALORES ── */
.valores-section {
  background: var(--pessego-soft);
  padding: 6rem 4rem;
}
.valores-inner { max-width: 1100px; margin: 0 auto; }
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.valor-card {
  background: white; border-radius: 24px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.valor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.valor-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.valor-card h3 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 0.6rem; color: var(--texto);
}
.valor-card p {
  font-size: 0.88rem; color: var(--texto-suave);
  line-height: 1.6;
}

/* ── CTA SUAVE ── */
.sobre-cta {
  padding: 7rem 4rem;
  text-align: center;
}
.sobre-cta-inner { max-width: 600px; margin: 0 auto; }
.lumi-avatar-sobre {
  font-size: 4rem; margin-bottom: 1.5rem;
  display: block;
  animation: float 4s ease-in-out infinite;
}
.lumi-avatar-sobre img { width: 120px; height: 120px; object-fit: contain; }
.sobre-cta .section-title { margin-bottom: 1rem; }
.sobre-cta .section-sub   { margin: 0 auto 2.5rem; }
.cta-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .sobre-hero { padding: 8rem 1.5rem 4rem; }
  .historia { padding: 4rem 1.5rem; }
  .historia-inner { grid-template-columns: 1fr; gap: 2rem; }
  .valores-section { padding: 4rem 1.5rem; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-cta { padding: 4rem 1.5rem; }
}
@media (max-width: 600px) {
  .valores-grid { grid-template-columns: 1fr; }
}