/* ════════════════════════════════════════════════════════
   Wokaly — Sobre Page
   ════════════════════════════════════════════════════════ */

/* ── About Hero ── */
.hero--about .hero__grid { 
  display: grid; 
  grid-template-columns: 1fr auto; 
  gap: 48px; 
  align-items: center; 
  padding: 60px 0 40px; 
}
.hero--about .hero__title { max-width: 100%; }
.hero--about .hero__subtitle-main { font-size: 20px; color: var(--text-muted, #475569); }
.hero__about-icon { display: flex; align-items: center; }
.hero__people-icon { width: 180px; height: 180px; opacity: 0.6; }

/* ── About Sections ── */
.about-section { max-width: 960px; margin: 0 auto; padding: 20px 0; }
.about-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-primary, #3753f5);
  margin-bottom: 12px;
}
.about-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-main, #0f172a);
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-grid--reversed { direction: rtl; }
.about-grid--reversed > * { direction: ltr; }
.about-text p {
  font-size: 17px;
  color: var(--text-muted, #475569);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text--centered { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.about-text--centered p {
  font-size: 17px;
  color: var(--text-muted, #475569);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-text--centered code {
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  color: var(--brand-primary, #3753f5);
  font-size: 15px;
}
.about-lead {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main, #0f172a);
  text-align: center;
  margin-top: -24px;
  margin-bottom: 36px;
}

/* ── Chaos Visual ── */
.about-visual__card {
  background: var(--white, #ffffff);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.about-visual__card--chaos {
  border: 1px dashed #fca5a5;
  background: #fef2f2;
}
.chaos-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #991b1b;
  background: rgba(254, 242, 242, 0.6);
  border-radius: 10px;
  margin-bottom: 10px;
}
.chaos-item:last-child { margin-bottom: 0; }
.chaos-icon { font-size: 20px; }

/* ── Order Visual ── */
.about-visual__card--order {
  border: 1px solid #d1fae5;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}
.order-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.order-step:last-child { margin-bottom: 0; }
.order-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
}
.order-lbl { flex: 1; }

/* ── Identity Cards ── */
.identity-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.identity-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 16px;
  padding: 28px 24px;
  min-width: 220px;
  flex: 1;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.identity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.identity-card__handle {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-primary, #3753f5);
  margin-bottom: 8px;
}
.identity-card__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main, #0f172a);
  margin-bottom: 16px;
}
.identity-card__stats {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.identity-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted, #475569);
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--border-light, #e2e8f0);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}
.value-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main, #0f172a);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 15px;
  color: var(--text-muted, #475569);
  line-height: 1.6;
}

/* ── Final CTA Sub ── */
.final-cta__sub {
  margin-top: 16px;
  font-size: 15px;
  color: var(--text-muted, #475569);
}
.final-cta__sub a {
  color: var(--brand-primary, #3753f5);
  font-weight: 600;
  text-decoration: none;
}
.final-cta__sub a:hover { text-decoration: underline; }

/* ── Both Sides Visual ── */
.about-visual__card--both {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-align: center;
}
.both-side {
  padding: 16px;
  margin-bottom: 12px;
  background: var(--white, #ffffff);
  border-radius: 10px;
}
.both-side:last-of-type { margin-bottom: 0; }
.both-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-primary, #3753f5);
  margin-bottom: 8px;
}
.both-side p {
  font-size: 15px;
  color: var(--text-muted, #475569);
  line-height: 1.5;
  margin: 0;
}
.both-divider {
  font-size: 24px;
  font-weight: 900;
  color: #94a3b8;
  padding: 4px 0;
}
.both-result {
  font-size: 18px;
  font-weight: 900;
  color: #dc2626;
  padding: 12px;
  background: #fef2f2;
  border-radius: 10px;
  margin-top: 12px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero__grid--about { grid-template-columns: 1fr; }
  .hero__about-icon { display: none; }
  .about-title { font-size: 26px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-grid--reversed { direction: ltr; }
  .identity-cards { flex-direction: column; align-items: center; }
  .identity-card { min-width: auto; width: 100%; max-width: 320px; }
  .values-grid { grid-template-columns: 1fr; }
  .about-text p, .about-text--centered p { font-size: 16px; }
}
