/* ==========================================================================
   Página Sobre — Wagner Oliveira
   ========================================================================== */

.sobre-page {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 48px var(--container-padding);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.sobre-hero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.sobre-avatar-wrap { flex-shrink: 0; }
.sobre-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #E8C49A;
  display: block;
}
.sobre-avatar-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FAECE7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #B5541E;
  border: 3px solid #E8C49A;
  flex-shrink: 0;
}
.sobre-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B5541E;
  margin: 0 0 8px;
}
.sobre-name {
  font-size: 26px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 4px;
  text-transform: none;
}
.sobre-role {
  font-size: 14px;
  color: #5F5E5A;
  margin: 0 0 14px;
  font-style: italic;
}
.sobre-quote {
  font-size: 13px;
  color: #B5541E;
  background: #FAECE7;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid #B5541E;
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: italic;
}
.sobre-social { display: flex; gap: 8px; flex-wrap: wrap; }
.sobre-soc-btn {
  font-size: 12px;
  color: #5F5E5A;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  transition: all 0.15s;
}
.sobre-soc-btn:hover {
  border-color: #B5541E;
  color: #B5541E;
}

/* --------------------------------------------------------------------------
   Seções
   -------------------------------------------------------------------------- */
.sobre-section {
  margin-bottom: 44px;
}
.sobre-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.sobre-section-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.si-teal  { background: #FAECE7; }
.si-amber { background: #FAEEDA; }
.sobre-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #1A1A1A;
  text-transform: none;
  margin: 0;
}
.sobre-section-sub {
  font-size: 12px;
  color: #888780;
  margin: 1px 0 0;
}
.sobre-body-text {
  font-size: 14px;
  color: #5F5E5A;
  line-height: 1.75;
  margin: 0 0 16px;
}

/* --------------------------------------------------------------------------
   Cards de foco
   -------------------------------------------------------------------------- */
.foco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.foco-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.15s, transform 0.15s;
}
.foco-card:hover {
  border-color: #E8C49A;
  transform: translateY(-2px);
}
.foco-icon { margin-bottom: 10px; }
.foco-title {
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 6px;
  text-transform: none;
}
.foco-desc {
  font-size: 12px;
  color: #888780;
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Skills
   -------------------------------------------------------------------------- */
.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.skill-pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #5F5E5A;
  transition: all 0.15s;
}
.skill-pill:hover {
  border-color: #B5541E;
  color: #B5541E;
}
.skill-hot {
  background: #FAECE7;
  color: #B5541E;
  border-color: #D4956A;
}

/* --------------------------------------------------------------------------
   Métricas de ciclismo
   -------------------------------------------------------------------------- */
.bike-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.bike-stat {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.bs-num {
  font-size: 20px;
  font-weight: 700;
  color: #B5541E;
}
.bs-label {
  font-size: 11px;
  color: #888780;
}

/* --------------------------------------------------------------------------
   Quote final
   -------------------------------------------------------------------------- */
.sobre-quote-final {
  background: #B5541E;
  border-radius: 12px;
  padding: 28px 32px;
  text-align: center;
  margin-bottom: 32px;
}
.sqf-text {
  font-size: 15px;
  color: #FAECE7;
  line-height: 1.7;
  font-style: italic;
  margin: 0 0 10px;
}
.sqf-author {
  font-size: 12px;
  color: #E8C49A;
}

/* --------------------------------------------------------------------------
   CTAs
   -------------------------------------------------------------------------- */
.sobre-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Responsivo
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .sobre-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .sobre-social { justify-content: center; }
  .foco-grid { grid-template-columns: 1fr; }
  .bike-stats { flex-direction: column; }
  .sobre-ctas { flex-direction: column; }
  .sobre-ctas a { text-align: center; }
}
