.colaboraciones {
  padding: 4rem 1rem;
  background-color: #f8f9fa; /* Color claro */
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  font-size: medium;
}

h2 {
  font-size: 3rem;
  color: #003b6f;
  text-align: center;
  margin: 0px 0 30px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 180px;
  height: 4px;
  background-color: #0077b6;
  margin: 10px auto 0;

  border-radius: 2px;
}

.colaboraciones .intro {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding-left: 15px;
    color: #444;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center; /* centrado */
    background: none;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.colaboraciones h3 {
  color: #003b6f;
  margin-top: 2rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

/* Listas en dos columnas */
.colaboraciones ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-top: 1rem;
  line-height: 2;
}

.colaboraciones ul.two-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem 2rem;
}

/* NUEVO: colaboradores con fotos */
.colaboraciones .colaboradores-destacados {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.colaboraciones .colaborador {
  width: 280px;
  background-color: #fff;
  padding: 1rem;
  border-left: 4px solid #0a5275;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: transform 0.2s ease;
  text-align: center;
}

.colaboraciones .colaborador:hover {
  transform: translateY(-4px);
}

.colaboraciones .colaborador img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.colaboraciones .colaborador .info strong {
  display: block;
  font-size: 1.1rem;
  color: #0a5275;
  margin-bottom: 0.5rem;
}

.colaboraciones .colaborador .info p {
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

img, video {
  pointer-events: none;
  user-select: none;
}