/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero .section-label { position: relative; }
.page-hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  position: relative;
}
.page-hero-title em { font-style: normal; color: var(--secondary); }
.page-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 580px;
  position: relative;
}

/* ─────────────────────────────────────────
   MISSÃO VISÃO VALORES
───────────────────────────────────────── */
.mvv {
  padding: 112px 0;
  background: var(--bg);
  border-bottom: 2px solid var(--border-light);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}
.mvv-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background var(--transition);
}
.mvv-card:hover { background: var(--surface); }
.mvv-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.mvv-card:hover .mvv-icon { background: var(--secondary); }
.mvv-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.mvv-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ─────────────────────────────────────────
   HISTÓRIA
───────────────────────────────────────── */
.story {
  padding: 112px 0;
  background: var(--surface);
  border-bottom: 2px solid var(--border-light);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-text:last-child { margin-bottom: 0; }
.story-visual { display: flex; justify-content: center; align-items: center; }
.story-logo-wrap {
  width: 280px;
  height: 280px;
  background: var(--bg);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.story-logo-wrap img { width: 100%; height: auto; object-fit: contain; }

/* ─────────────────────────────────────────
   EQUIPE
───────────────────────────────────────── */
.team {
  padding: 112px 0;
  background: var(--bg);
  border-bottom: 2px solid var(--border-light);
}

.team-list { display: flex; flex-direction: column; gap: 32px; }

.team-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--surface);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: var(--primary); }

.team-photo {
  width: 280px;
  min-width: 280px;
  overflow: hidden;
  background: var(--border-light);
  align-self: stretch;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-info {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}
.team-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.team-role::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.team-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.team-bio:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────
   NÚMEROS
───────────────────────────────────────── */
.numbers {
  padding: 96px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.number-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.number-item:last-child { border-right: none; }
.number-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin: 0 auto 20px;
}
.number-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.number-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   RESPONSIVO
───────────────────────────────────────── */
@media (max-width: 767px) {
  .page-hero { padding: 64px 0 56px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { aspect-ratio: 1; }
  .team-info { padding: 32px 24px; }
  .story-logo-wrap { width: 200px; height: 200px; padding: 32px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 40px; }
  .number-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
  .number-item:last-child { border-bottom: none; padding-bottom: 0; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .mvv-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 48px; }
  .numbers-grid { grid-template-columns: 1fr; gap: 40px; }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(3) { border-right: none; }
}
