/* ReconoSERte — sección de equipo real (compartida entre páginas de servicio) */
.eq-section { padding: 88px 0; background: var(--paper, #FAF7F1); }
.eq-section .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.eq-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.eq-head .eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage-deep, #6f8f5a); margin-bottom: 12px;
}
.eq-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15; margin: 0 0 12px; color: var(--ink, #2a2a28); }
.eq-head h2 em { font-style: italic; color: var(--terra, #c47a52); }
.eq-head p { color: var(--ink-soft, #5c5c57); font-size: 1rem; line-height: 1.6; margin: 0; }

.eq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.eq-grid.cols-1 { grid-template-columns: minmax(0, 360px); justify-content: center; }
.eq-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; }

.eq-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 20px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 6px 20px -14px rgba(0,0,0,0.35); transition: transform .2s ease, box-shadow .2s ease;
}
.eq-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(0,0,0,0.3); }
.eq-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top center; background: #eee; display: block; }
.eq-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 6px; }
.eq-name { font-size: 1.05rem; font-weight: 700; color: var(--ink, #2a2a28); line-height: 1.25; }
.eq-role { font-size: 0.85rem; font-weight: 700; color: var(--sage-deep, #6f8f5a); }
.eq-spec { font-size: 0.86rem; color: var(--ink-soft, #5c5c57); }
.eq-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.eq-tags span {
  font-size: 0.72rem; font-weight: 600; color: #4a5a3c;
  background: rgba(157,187,101,0.16); border: 1px solid rgba(157,187,101,0.3);
  padding: 3px 9px; border-radius: 999px;
}
.eq-foot { text-align: center; margin-top: 40px; }
.eq-foot a {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.95rem;
  color: var(--ink, #2a2a28); text-decoration: none; border-bottom: 2px solid var(--terra, #c47a52);
  padding-bottom: 3px; transition: gap .2s ease;
}
.eq-foot a:hover { gap: 12px; }

@media (max-width: 640px) {
  .eq-section { padding: 60px 0; }
  .eq-grid.cols-2 { grid-template-columns: 1fr; }
}
