/*==================================================
  TEAM STRIP SECTION
  Proyecto: QPERTINO
  Franja de fotos del equipo + frase destacada (Home)
==================================================*/

.team-strip-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.team-avatars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 50px;
}

.team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    padding: 4px;
    flex-shrink: 0;
    transition: var(--transition);
}

.team-avatar:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(200, 168, 107, .25);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 107, .12);
    color: var(--gold);
    font-size: 2.2rem;
}

.team-statement-box {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 34px 40px;
    border: 1px solid rgba(200, 168, 107, .35);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .02);
}

.team-statement-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.team-statement-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/*=====================================
RESPONSIVE
=====================================*/

@media (max-width: 992px) {
    .team-strip-section {
        padding: 70px 0;
    }

    .team-avatar {
        width: 105px;
        height: 105px;
    }

    .team-avatars {
        gap: 16px;
        margin-bottom: 36px;
    }
}

@media (max-width: 768px) {
    .team-strip-section {
        padding: 55px 0;
    }

    .team-avatar {
        width: 85px;
        height: 85px;
    }

    .team-statement-box {
        padding: 26px 22px;
    }

    .team-statement-title {
        font-size: 1.1rem;
    }

    .team-statement-subtitle {
        font-size: .9rem;
    }
}
