/* ==========================================================================
   sobre.css — Estilos específicos da página "Sobre"
   © @JottaCyber
   ========================================================================== */

.about-head { padding-block: clamp(48px, 8vw, 80px) 20px; }

/* topo do Sobre: texto + retrato */
.about-hero { display: flex; gap: clamp(24px, 5vw, 56px); align-items: center; flex-wrap: wrap; }
.about-hero-text { flex: 1 1 340px; max-width: 62ch; }
.about-hero-text .lead { margin-bottom: 0; }
.portrait { margin: 0; flex: 0 0 auto; width: clamp(220px, 34vw, 320px); }
.portrait img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow);
  outline: 3px solid color-mix(in srgb, var(--accent) 30%, transparent); outline-offset: 4px;
}
.portrait figcaption { font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-align: center; margin-top: 16px; }
@media (max-width: 640px) { .portrait { width: 100%; max-width: 300px; margin-inline: auto; order: -1; } }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }

/* ---- Timeline ---- */
.timeline { position: relative; margin: 0; padding: 0 0 0 26px; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding-bottom: 24px; }
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--bg);
}
.timeline .when { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: .03em; }
.timeline h3 { margin: 3px 0 4px; }
.timeline p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---- Áreas de estudo/atuação ---- */
.skills { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.skill { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: var(--surface-2); }
.skill .ch { display: flex; align-items: center; gap: 8px; font-weight: 600; margin-bottom: 6px; }
.skill ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13.5px; }
.skill li { margin-bottom: 3px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.tags .badge { background: var(--surface-2); color: var(--muted); border: 1px solid var(--line); }

/* ---- Manifesto / propósito ---- */
.manifesto {
  background: var(--card-back); color: var(--card-back-ink);
  border: 1px solid var(--card-back-line); border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.manifesto::before {
  content: "\201C"; position: absolute; top: -18px; left: 14px;
  font-family: Georgia, serif; font-size: 120px; color: var(--accent); opacity: .18; line-height: 1;
}
.manifesto .eyebrow { color: var(--accent); position: relative; }
.manifesto p { font-size: clamp(1.15rem, 2.6vw, 1.5rem); line-height: 1.5; font-weight: 500; margin: 6px 0 0; text-wrap: balance; position: relative; }
.manifesto p .hl { color: var(--accent); }

/* ---- Credenciais / certificações ---- */
.creds { display: grid; gap: 10px; }
.cred {
  display: flex; gap: 12px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: var(--surface);
}
.cred .mk {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--dominei) 18%, transparent); color: var(--dominei);
  font-weight: 700; font-size: 14px;
}
.cred.pend .mk { background: color-mix(in srgb, var(--dificuldade) 20%, transparent); color: var(--dificuldade); }
.cred .ct { font-weight: 600; }
.cred .cm { font-size: 13px; color: var(--muted); margin-top: 2px; }
.cred .when { font-family: var(--font-mono); font-size: 11px; color: var(--accent); margin-left: auto; white-space: nowrap; padding-left: 10px; }

/* ---- Objetivo de carreira ---- */
.goal { border-left: 3px solid var(--accent); background: var(--surface-2); border-radius: 0 12px 12px 0; padding: 18px 20px; }
.goal h3 { margin-top: 0; }
.goal p { margin-bottom: 0; color: var(--muted); }

/* espaçamento entre blocos empilhados */
.about-stack { display: grid; gap: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 7vw, 72px); }

