/* ===== Sección de instituciones ===== */
.team-section-two {
    padding: 70px 0;
    background: #f9fafc;
}
.team-section-two .sec-title-two h2 {
    font-weight: 700;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
}
.team-section-two .sec-title-two h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #e67e22;
    position: absolute;
    bottom: -12px;
    left: 0;
}
.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.team-member img {
    max-width: 160px;
    margin: 0 auto 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member h5 {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.4;
    min-height: 40px;
}
.team-member:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.member-button.theme-btn {
    padding: 10px 20px;
    border-radius: 30px;
    background: #e67e22;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.member-button.theme-btn:hover {
    background: #cf711f;
    color: #fff;
}