/* ===== SERVICES STRIP ===== */
.services-strip {
  background: var(--dark-2);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-item h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.service-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.service-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 14px;
}

/* ===== PROOF SECTION ===== */
.proof-section {
  background: var(--light);
  padding: 96px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-content .section-label { color: var(--text-muted); }

.proof-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.proof-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.metrics-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.4;
  max-width: 100px;
}

.proof-visual {
  aspect-ratio: 4/3;
  background: var(--light-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.proof-visual video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== BIO SECTION ===== */
.bio-section {
  background: var(--light-2);
  padding: 96px 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bio-visual {
  aspect-ratio: 1/1;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.bio-content .section-label { color: var(--text-muted); }

.bio-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.bio-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.bio-content p strong { color: var(--dark); font-weight: 600; }

.bio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 8px;
  transition: gap 0.2s;
}

.bio-link:hover { gap: 10px; }

/* ===== NUMBERS SECTION ===== */
.numbers-section {
  background: var(--light);
  padding: 72px 0;
  border-top: 1px solid var(--light-2);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.number-item .metric-value {
  font-size: 48px;
  color: var(--gold);
}

.number-item .metric-label {
  max-width: none;
  font-size: 13px;
  color: var(--text-mid);
}

/* ===== CASES SECTION ===== */
.cases-section {
  background: var(--light-2);
  padding: 96px 0;
}

.cases-header {
  margin-bottom: 48px;
}

.cases-header .section-label { color: var(--text-muted); }

.cases-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  max-width: 500px;
  margin-bottom: 12px;
}

.cases-header p {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 420px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.case-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.case-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.case-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}

.case-highlight {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.case-highlight-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ===== PARTICIPAÇÕES ===== */
.participacoes-section {
  background: var(--light);
  padding: 96px 0;
}

.participacoes-header {
  margin-bottom: 40px;
}

.participacoes-header .section-label { color: var(--text-muted); }

.participacoes-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--dark);
}

.participacao-list { list-style: none; }

.participacao-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-2);
  cursor: pointer;
  transition: opacity 0.2s;
}

.participacao-item:hover { opacity: 0.7; }

.participacao-main { flex: 1; }

.participacao-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.participacao-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.participacao-year {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===== CLIENTES STRIP ===== */
.clientes-strip {
  background: var(--dark-2);
  padding: 64px 0;
  text-align: center;
}

.clientes-strip-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.clientes-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.cliente-pill {
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.cliente-pill:hover {
  border-color: var(--gold);
  color: var(--white);
}

.clientes-nota {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ===== RESPONSIVE (index-specific) ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; gap: 32px; }
  .proof-grid, .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .metrics-row { gap: 24px; }
}

@media (max-width: 600px) {
  .proof-section,
  .bio-section,
  .cases-section,
  .participacoes-section { padding: 64px 0; }
}
