/* ============================================================
   Little Lady — Página "Sobre"
   ============================================================ */

.sobre-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  flex-wrap: wrap;
}
.sobre-header .logo-img { height: 110px; }
.sobre-nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.sobre-main {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  padding: 10px 18px 90px;
}

/* ---------------- Hero ---------------- */
.sobre-hero { text-align: center; padding: 26px 0 10px; }
.sobre-hero .hero-kicker {
  display: inline-block;
  background: var(--yellow);
  color: #5a4300;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.sobre-hero h1 {
  margin: 0;
  font-size: clamp(30px, 7vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--purple-dark);
}
.sobre-hero h1 span { color: var(--pink); }
.sobre-hero p {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

/* ---------------- Seções ---------------- */
.sobre-section { margin-top: 52px; }
.sobre-section > h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 900;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sobre-section > h2 .sec-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, #ffd7ec, #e6d9f8);
  box-shadow: 0 4px 10px rgba(79, 78, 195, 0.12);
}

/* ---------------- Vídeo ---------------- */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------- História ---------------- */
.story-card {
  background: #fff;
  border: 3px solid #eee2fb;
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
}
.story-card p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
}
.story-card p:last-child { margin-bottom: 0; }
.story-card .story-highlight {
  color: var(--purple-dark);
  font-weight: 800;
}
.story-emoji-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
  font-size: 30px;
}

/* ---------------- Criadora ---------------- */
.about-card {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 3px solid #eee2fb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.about-avatar {
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd7ec, #d0bcf0);
  display: grid;
  place-items: center;
  font-size: 56px;
  box-shadow: inset 0 0 0 5px #fff;
}
.about-info { flex: 1 1 260px; }
.about-info h3 { margin: 0 0 6px; font-size: 23px; font-weight: 900; color: var(--purple-dark); }
.about-info p { margin: 0 0 16px; color: var(--ink-soft); font-weight: 600; line-height: 1.6; }
.about-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------------- Combinações ---------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.stat-card {
  background: #fff;
  border: 3px solid #eee2fb;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-card .stat-value {
  font-size: 30px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.1;
}
.stat-card .stat-label {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
}
.stat-card.tint-purple .stat-value { color: var(--purple); }
.stat-card.tint-teal .stat-value { color: var(--teal); }

/* ---------------- Carrossel ---------------- */
.carousel { margin-top: 26px; }
.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: #d0bcf0 transparent;
}
.carousel-track::-webkit-scrollbar { height: 9px; }
.carousel-track::-webkit-scrollbar-thumb { background: #d0bcf0; border-radius: 999px; }
.car-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: min(240px, 68vw);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.car-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.car-btns { display: flex; justify-content: center; gap: 14px; margin-top: 6px; }
.car-btns button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--purple);
  color: #fff;
  font-size: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.15s ease;
}
.car-btns button:hover { background: var(--purple-dark); transform: translateY(-2px); }

@media (max-width: 640px) {
  .sobre-header .logo-img { height: 80px; }
  .story-card { padding: 22px 18px; }
  .about-card { justify-content: center; text-align: center; }
  .about-links { justify-content: center; }
}
