/* ---------- Fundadoras ---------- */
.founders { margin-bottom: 96px; }
.founders-eyebrow { display: block; text-align: center; margin-bottom: 48px; }

.founders-list {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(240px, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.founder-media {
  position: relative;
}
.founder-media::before {
  content: '';
  position: absolute;
  inset: -6% -14% -6% 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(34,170,194,.16), rgba(34,170,194,0) 70%);
  z-index: 0;
}
.founder-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c1, #ccc), var(--c2, #999));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  box-shadow: 0 30px 60px -24px rgba(43,54,47,.4);
}
.founder-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.founder-badge {
  position: absolute;
  left: 20px;
  bottom: -18px;
  z-index: 2;
  background: var(--dark-2);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 16px 30px -14px rgba(0,0,0,.4);
}
.badge-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 2px;
}
.badge-value {
  display: block;
  font-size: .9rem;
  font-weight: 600;
}

.eyebrow--dash {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow--dash::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--accent-dark);
}

.founder-info h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  margin-bottom: 6px;
}
.founder-role {
  display: block;
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 4px;
}
.founder-subtitle {
  display: block;
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 18px;
}
.founder-info > p {
  margin: 0 0 22px;
  font-size: .98rem;
  max-width: 46ch;
}

.cred-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 10px;
}
.cred-list li {
  position: relative;
  padding-left: 20px;
  font-size: .92rem;
  color: var(--muted);
}
.cred-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
}

.founder-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-cta {
  background: var(--teal);
  color: #fff;
}
.btn-cta:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}
/* ---------- Equipo interdisciplinario ---------- */
.team > .eyebrow { display: block; text-align: center; margin-bottom: 40px; }
.team-department { margin-bottom: 48px; scroll-margin-top: 100px; }
.team-department:last-child { margin-bottom: 0; }
.department-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--teal);
  margin: 0 0 24px;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.team-card {
  flex: 1 1 380px;
  max-width: 480px;
  min-width: 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  text-align: left;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 40px -24px rgba(43,54,47,.25);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -20px rgba(43,54,47,.3);
}
.team-card .team-photo {
  flex: none;
  width: 120px;
  height: 120px;
  margin: 0;
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 7px var(--teal-light);
}
.team-info {
  min-width: 0;
}
.team-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
  overflow-wrap: break-word;
}
.team-role {
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
}
.team-bio {
  margin: 8px 0 0;
  font-size: .88rem;
}
.team-card--placeholder .team-photo {
  border: 2px dashed var(--border);
  box-shadow: none;
  opacity: .6;
}
.team-card--placeholder h4 {
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Responsive ---------- */
@media (max-width: 780px) {
  .founder-card { grid-template-columns: 1fr; }
  .founder-media { max-width: 320px; margin: 0 auto; }
  .founder-media::before { inset: 0; }
  .founders-list { gap: 64px; }
}

@media (max-width: 520px) {
  .team-card { flex-direction: column; text-align: center; }
  .founder-info { text-align: center; }
  .founder-info .eyebrow--dash,
  .founder-cta { justify-content: center; }
  .cred-list li { padding-left: 0; }
  .cred-list li::before { display: none; }
  .founder-info > p { margin-left: auto; margin-right: auto; }
}
