/* ============================================================================
 * GERADO por scripts/sync-css.mjs — NÃO EDITAR À MÃO.
 * Origem: knxsite/src/app/(frontend)/sobre/sobre.css
 * Para alterar, edite a origem no knxsite (só leitura durante a migração) ou
 * ajuste a transformação em scripts/sync-css.mjs.
 * ============================================================================ */

/* Sobre — estilos específicos da página */

/* Missing delay classes */
.hp-d220 { transition-delay: 220ms; }
.hp-d320 { transition-delay: 320ms; }

/* ---- Hero ---- */
.sb-hero {
  background: var(--color-gray-100);
  padding: 128px 0 96px;
  position: relative; overflow: hidden;
}
.sb-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.sb-hero .lede {
  font-size: 19px; line-height: 1.6; color: var(--fg-muted);
  max-width: 56ch; margin: 0 0 32px;
}
.sb-hero-art {
  position: relative;
  width: 100%; aspect-ratio: 1 / 1;
  max-width: 520px; justify-self: end;
}
.sb-hero-art .orb {
  position: absolute; top: -5%; right: -10%; width: 68%; aspect-ratio: 1;
  background: radial-gradient(circle at 40% 40%, rgba(245,134,52,0.18) 0%, transparent 65%);
  filter: blur(28px); z-index: 0; pointer-events: none;
}
.sb-hero-art .orb-teal {
  position: absolute; bottom: 5%; left: -6%; width: 48%; aspect-ratio: 1;
  background: radial-gradient(circle at 60% 60%, rgba(44,177,161,0.12) 0%, transparent 65%);
  filter: blur(24px); z-index: 0; pointer-events: none;
}
.sb-hero-art .woven-svg {
  position: absolute; inset: 4%; z-index: 1; pointer-events: none;
  width: 92%; height: 92%;
}
.sb-fl-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  z-index: 2; padding: 18px 22px;
}

@media (max-width: 960px) {
  .sb-hero-grid { grid-template-columns: 1fr; }
  .sb-hero-art  { display: none; }
}

/* ---- Conquistas (seção história) ---- */
.sb-conquest {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: flex; gap: 12px; align-items: flex-start;
}
.sb-conquest .c-icon { color: var(--color-orange-400); flex-shrink: 0; margin-top: 2px; }
.sb-conquest p { font-size: 14px; color: rgba(255,255,255,0.78); margin: 0; line-height: 1.55; }

/* ---- Valores cards ---- */
.sb-valores-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.sb-valores-grid .hp-reveal { height: 100%; display: flex; flex-direction: column; }
.sb-valor-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-2xl); overflow: hidden;
  display: flex; flex-direction: column;
  flex: 1; height: 100%; box-sizing: border-box;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-spring);
}
.sb-valor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.sb-valor-img {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative;
}
.sb-valor-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }
.sb-valor-card:hover .sb-valor-img img { transform: scale(1.04); }
.sb-valor-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.sb-valor-name {
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--color-orange-600);
}
.sb-valor-quote {
  font-size: 15px; line-height: 1.65; color: var(--fg);
  font-style: italic; flex: 1; text-align: justify;
}
.sb-valor-author {
  font-size: 13px; font-weight: 600; color: var(--fg-muted);
  padding-top: 10px; border-top: 1px solid var(--border);
}

/* ---- Crenças — editorial timeline ---- */
.sb-crencas-section { padding: 96px 0; background: white; }
.sb-crencas-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start;
}
.sb-timeline {
  display: flex; flex-direction: column; gap: 0; position: relative;
}
.sb-timeline::before {
  content: ''; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 2px;
  background: linear-gradient(180deg, var(--color-orange-300), var(--color-teal-300));
}
.sb-timeline-item {
  display: flex; gap: 20px; position: relative; padding-bottom: 32px;
}
.sb-timeline-item:last-child { padding-bottom: 0; }
.sb-tl-dot {
  width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0;
  background: white; border: 2px solid var(--color-orange-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--color-orange-600); position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.sb-tl-content h4 { font-size: 15px; font-weight: 700; color: var(--fg-strong); margin: 0 0 8px; line-height: 1.3; }
.sb-tl-content p { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.65; text-align: justify; }
.sb-tl-year {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--color-orange-700); background: var(--color-orange-50);
  border: 1px solid var(--color-orange-200); border-radius: 999px;
  padding: 2px 10px; margin-bottom: 6px;
}
.sb-crencas-text p { line-height: 1.80; color: var(--fg); margin: 0 0 20px; font-size: 16px; text-align: justify; }
.sb-crencas-text p:last-child { margin: 0; }
.sb-crencas-img {
  border-radius: var(--radius-2xl); overflow: hidden;
  aspect-ratio: 4/3; margin-top: 28px; box-shadow: var(--shadow-lg);
  position: relative;
}
.sb-crencas-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Lema ---- */
.sb-lema-body {
  font-size: 15px; color: var(--fg);
  line-height: 1.80; text-align: justify;
}
.sb-lema-body p { margin: 0 0 16px; }
.sb-lema-body p:last-child { margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .sb-valores-grid { grid-template-columns: 1fr 1fr; }
  .sb-crencas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sb-valores-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
