.info-personagem {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.foto-container {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--primary);
    background: #000;
}

.foto-personagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dados-basicos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.movimento-defesa {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.status {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.campo-trilha-estatico {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-main);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 10px 15px;
    min-height: 45px;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.campo-trilha-label {
    color: #888;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.campo-trilha-valor {
    color: var(--primary);
    font-size: 16px;
    font-weight: bold;
    flex: 1;
    letter-spacing: 0.5px;
    min-height: 20px;
}

.campo-trilha-valor:empty::before {
    content: 'Nenhuma trilha selecionada';
    color: #555;
    font-weight: normal;
    font-style: italic;
    font-size: 14px;
}