* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
 
.h1-status-tech {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-top: 80px;
}
 
.team {
    display: flex;
    flex-wrap: wrap; /* TALVEZ REMOVER*/
    gap: 20px;
    justify-content: center;
    margin-bottom: 270px;
    padding: 20px;
    margin-top: 5%;
}
 
.team-member {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
 
.team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}
 
.team-member h2 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}
 
.team-member p {
    color: #666;
    font-size: 0.9rem;
}