/* ═══════════════════════════════════════════
   CORE / SOBRE.CSS
   Estilos específicos da página Sobre (pt-br/sobre.html)
   ═══════════════════════════════════════════ */

/* ── HERO SOBRE ── */
.sobre-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #0a3055 100%);
  padding: 130px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.sobre-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 50%, rgba(47, 141, 228, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── FOTO ── */
.photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.photo-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--water), var(--accent));
  padding: 4px;
  box-shadow: 0 0 0 8px rgba(47, 141, 228, 0.12), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-badge {
  position: absolute;
  bottom: 8px;
  right: 40px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: .8rem;
  padding: .4rem .9rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
}

/* ── TEXTO DO HERO ── */
.sobre-hero-text {
  color: var(--white);
}

.sobre-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 1.1rem;
}

.sobre-hero-text h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .5rem;
}

.sobre-hero-text h1 em {
  font-style: italic;
  color: var(--water);
}

.sobre-subtitle {
  font-size: 1rem;
  color: rgba(248, 250, 252, 0.6);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(248, 250, 252, 0.85);
  padding: .3rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--card);
  padding: 0;
}

.stats-section .stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-section .stat-item {
  padding: 2.25rem 1rem;
}

/* ── BIO ── */
.bio-section {
  padding: 80px 2rem;
  background: var(--white);
}

.bio-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.bio-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.bio-text p:last-child {
  margin-bottom: 0;
}

.bio-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── CREDENCIAIS ── */
.credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cred-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  transition: border-color .2s, box-shadow .2s;
}

.cred-item:hover {
  border-color: rgba(26, 95, 168, 0.3);
  box-shadow: 0 4px 20px rgba(26, 95, 168, 0.07);
}

.cred-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-title {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: .2rem;
}

.cred-desc {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── EXPERTISE ── */
.expertise-section {
  padding: 80px 2rem;
  background: #f1f5f9;
}

.expertise-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.exp-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.exp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 29, 46, 0.09);
}

.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-card h4 {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.3;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 2rem;
  background: linear-gradient(135deg, var(--navy), #0a3055);
  text-align: center;
}

.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: .75rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVO ── */
@media (max-width: 900px) {
  .sobre-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-chips {
    justify-content: center;
  }

  .photo-wrap {
    justify-content: center;
  }

  .photo-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .bio-inner {
    grid-template-columns: 1fr;
  }

  .stats-section .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 500px) {
  .sobre-hero {
    padding: 100px 1.25rem 60px;
  }

  .bio-section,
  .expertise-section {
    padding: 60px 1.25rem;
  }

  .photo-ring {
    width: 220px;
    height: 220px;
  }
}
