/* ── SOBRE: EQUIPE ── */
.section-title{
  margin-bottom: 30px;
  margin-top: 20px;
}

.about-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 60px; 
  align-items: start;
}
.about-text p { color: var(--ink-mid); line-height: 1.8; margin-bottom: 20px; font-size: 16px; }
.about-images { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; 
}
.about-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.about-images img:hover {
  transform: translateY(-5px);
}
.about-images img:first-child {
  grid-column: span 2;
  height: 320px;
}
.about-img-placeholder {
  border-radius: 10px; 
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-pale), #cdeae4);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--teal); 
  font-size: 40px; 
  height: 180px;
}

.team-section { background: var(--cream); }

.team-category { margin-bottom: 36px; }

.team-cat-title {
  font-size: 11px; 
  font-weight: 500; 
  letter-spacing: 0.14em;
  text-transform: uppercase; 
  color: var(--teal);
  padding-bottom: 12px; 
  margin-bottom: 16px;
  border-bottom: 2px solid var(--teal-pale);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }

.team-card {
  background: var(--white); 
  border-radius: 14px;
  padding: 20px 24px; 
  border: 1px solid var(--border);
  display: flex; 
  align-items: center; 
  gap: 16px;
  box-shadow: 0 4px 12px rgba(13,140,120,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(13,140,120,0.1);
  border-color: var(--teal);
}

.team-avatar {
  width: 48px; 
  height: 48px; 
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-pale), #cdeae4);
  flex-shrink: 0; 
  display: flex; 
  align-items: center;
  justify-content: center; 
  font-size: 16px; 
  color: var(--teal);
  font-weight: 600;
  box-shadow: inset 0 2px 4px rgba(13,140,120,0.06);
}
.team-name  { font-size: 15px; font-weight: 600; color: var(--teal-dark); margin-bottom: 2px; }

.team-role  { font-size: 13px; color: var(--ink-soft); line-height: 1.3; }

.ranking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(420px, 1.18fr);
  gap: 44px;
  align-items: start;
  background: var(--white);
  color: var(--ink);
}

.ranking-section .section-tag {
  color: var(--teal);
}

.ranking-section .section-title {
  color: var(--ink);
  max-width: 480px;
}

.ranking-intro p {
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.ranking-intro small {
  display: block;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.55;
}

.ranking-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(13,140,120,0.05);
}

.ranking-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  color: var(--ink-mid);
}

.ranking-table th {
  padding: 14px 18px;
  text-align: left;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ranking-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

.ranking-table td:last-child,
.ranking-table th:last-child {
  text-align: right;
}

.ranking-table strong {
  color: var(--ink);
}

.ranking-table small {
  display: block;
  color: var(--ink-soft);
  margin-top: 3px;
}

.ranking-highlight {
  background: var(--teal-pale);
}

.ranking-highlight td:first-child span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
}

.ecosystem-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 64px;
  align-items: start;
  background: var(--white);
}

.ecosystem-copy .section-title {
  max-width: 420px;
}

.ecosystem-copy p {
  color: var(--ink-mid);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 28px;
}

.ecosystem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ecosystem-list li {
  color: var(--ink-mid);
  font-size: 14px;
}

.ecosystem-list li::before {
  content: "✓";
  color: var(--teal);
  margin-right: 10px;
  font-weight: 600;
}

.ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ecosystem-stat {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
}

.ecosystem-stat strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1;
  margin-bottom: 8px;
}

.ecosystem-stat span {
  display: block;
  color: var(--ink-mid);
  font-size: 13px;
}

.ecosystem-stats p {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .ecosystem-stats { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ranking-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .ecosystem-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ecosystem-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
