#team {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    /*background-image: url('/src/images/hero.png')*/
    ;
    background-size: cover;
    /* cobre todo o banner */
    background-position: center;
    /* centraliza a imagem */
    background-repeat: no-repeat;
    width: 75%;
    margin-bottom: 70px;
}

.team-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border: 1px solid #353535;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    text-align: center;
    width: calc(20% - 30px)
}

.team-img {
    width: 240px;
    height: 240px;
    border-radius: 10%;
    border: 3px solid antiquewhite;
    object-fit: cover;
    object-position: top;
}

.team-h2 {
    color: antiquewhite;
    font-size: 20px;
    font-weight: 200;
    font-family: 'jost';
}

.team-p {
    color: #fff;
}

.team-social i {
    background: linear-gradient(90deg, rgba(255, 216, 162, 1) 0%, rgba(255, 171, 77, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Safari/Chrome */
    background-clip: text;
    text-transform: uppercase;
}

@media screen and (max-width:1170px) {
    .team-box {
        width: 100%;
    }
}