/* ===============================
   COLABORADORES – FECOD
   =============================== */

.collab-hero {
  max-width: 760px;
  margin: 0 auto;
}

.collab-title {
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.collab-subtitle {
  color: #94a3b8;
  margin-top: .75rem;
  font-size: 1rem;
}

/* ===== SECCIONES ===== */

.collab-section {
  margin-top: 3rem;
}

.collab-section-title {
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .95rem;
  margin-bottom: 1.75rem;
  border-left: 3px solid #2563eb;
  padding-left: .75rem;
}

/* ===== GRID ===== */

.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.collab-grid.small {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* ===== CARD ===== */

.collab-card {
  background:
    radial-gradient(circle at top, rgba(59,130,246,.12), transparent 60%),
    linear-gradient(180deg,#05070d,#020617);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}

.collab-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,.6);
}

/* ===== LOGOS ===== */

.collab-logo {
  height: 140px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-logo.small {
  height: 80px;
}

.collab-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== TEXTO ===== */

.collab-name {
  font-weight: 700;
  margin-bottom: .5rem;
}

/* ===== CTA ===== */

.collab-cta {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 3rem;
}

.collab-cta h2 {
  font-weight: 800;
}

.collab-cta p {
  color: #94a3b8;
}
