/* ============================
   CONFIGURACIÓN GENERAL
============================ */

.founders-section {
  padding: 60px 0;
}

.founders-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  font-weight: 700;
}

/* ============================
   BLOQUES DE FUNDADORES
============================ */

.founder-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.founder-block.reverse {
  flex-direction: row-reverse;
}

/* ============================
   IMAGEN
============================ */

.founder-photo {
  flex: 1;
  max-width: 450px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.20);
}

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

.founder-info {
  flex: 1.5;
}

.founder-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.founder-info p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.founder-info a {
  color: #0d6efd;
  text-decoration: none;
}

.founder-info a:hover {
  text-decoration: underline;
}

/* ============================
   SOCIAL LINKS
============================ */

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  padding: 8px 14px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #444;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 900px) {
  .founder-block,
  .founder-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .founder-photo {
    max-width: 90%;
  }

  .founder-info {
    flex: unset;
  }
}
