/* ===== CARD DESENVOLVEDOR ===== */
.card-desenvolvedor {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
}
.dev-header {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 13px;
    justify-content: center;
}
.dev-nome {
    font-size: 1.5em;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px; /* Espaço para a barra inferior não cobrir o texto */
}
.dev-nome::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #682CF000, #820101, #682CF000)
}
.dev-redes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.rede-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    background: color-mix(in srgb, var(--cor) 15%, transparent);
    color: var(--cor);
    border: 1px solid color-mix(in srgb, var(--cor) 30%, transparent);
    transition: all 0.2s;
}
.rede-badge:hover {
    background: color-mix(in srgb, var(--cor) 25%, transparent);
    transform: translateY(-1px);
}