.description {
    margin-top: 50px;
    max-width: 800px;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.description h1 {
    margin-bottom: 20px;
    color: #ff5733;
}

.description p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: white;
}

/* Estilo dos perfis do GitHub */
.team-section {
    text-align: center;
    margin: 50px 0;
}

.team-section h2 {
    margin-bottom: 30px;
    color: #ff5733;
    font-size: 2em;
}

.profiles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.profile {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.profile:hover {
    transform: translateY(-10px);
    color: #fc0000;
}

.profile img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.profile h3 {
    margin: 10px 0;
    color: #ffffff;
}

.profile a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
}

.profile a:hover {
    color: #fc0000;
}

.profile a i {
    font-size: 1.5em;
    vertical-align: middle;
    margin-left: 5px;
}

/* Estilo dos ícones do GitHub do perfil da equipe */
.profile a i.bx.bxl-github {
    font-size: 1.5em;
    vertical-align: middle;
    margin-left: 5px;
    color: #ffffff;
}

.profile a:hover i.bx.bxl-github {
    color: #ffffff; /*cor do icone github*/
}

@media (max-width: 768px) {
    .description {
        margin-top: 30px;
        padding: 15px;
    }

    .profile img {
        width: 80px;
        height: 80px;
    }
}